Re: [Freedos-user] put drivers in XMS

2008-07-03 Thread Alain M.
just fo fun, try using this, you will need tuntap and others :)
--
#? Habilita conexões
# echo 1  /proc/sys/net/ipv4/ip_forward

# Libera acesso ao tuntap
chmod 666 /dev/net/tun

# Cria um Bridge
brctl addbr br0
# Re-conecta eth0 no Bridge
ifconfig eth0 0.0.0.0 promisc up
brctl addif br0 eth0
# Agora quem tem o IP é o Bridge
ifconfig br0 $SYS_IP netmask 255.255.255.0 up
# cria 3 devices tap0 tap1 tap2
tunctl -u $DOS_USER -t tap0
tunctl -u $DOS_USER -t tap1
tunctl -u $DOS_USER -t tap2
# Ativa cada um
ifconfig tap0 0.0.0.0 promisc up
ifconfig tap1 0.0.0.0 promisc up
ifconfig tap2 0.0.0.0 promisc up
# conecta com Bridge
brctl addif br0 tap0
brctl addif br0 tap1
brctl addif br0 tap2

# dispositivo do VMware
brctl addif br0 vmnet1

# Recria Rota para o Gateway
route add -net 0.0.0.0 gw $SYS_GW

# mostra o Bridge e rotas (demora na primeira vez)
brctl show
route -n

exit


---

Larry escreveu:
 I'm trying, just for fun, to get arachne to run in Freedos in dosemu on my 
 Linux machine. No luck so far. 
 
 I'm trying to use the tap thing. Use the lunctl command to make a lun0 and 
 set it up with ifconfig.
 
 But when I try to run xdos, first I get a cannot allocate TAP device, and 
 arachne doesn't see a network.
 
 Any suggestions?
 
 
 --- On Wed, 7/2/08, Aitor Santamaría [EMAIL PROTECTED] wrote:
 
 From: Aitor Santamaría [EMAIL PROTECTED]
 Subject: Re: [Freedos-user] put drivers in XMS
 To: freedos-user@lists.sourceforge.net
 Date: Wednesday, July 2, 2008, 5:33 PM
 Hello,

 2008/6/3 Michael Reichenbach
 [EMAIL PROTECTED]:
 iw2evk schrieb:
 It's possible under freedos 1.0 put the
 drivers in XMS insted UMB?
 Can be used cloaking.exe , and in wich modality?

 many thanks in advance.

 Roberto iw2evk
 Hey!

 I had some time ago a similar suggestion. Loading into
 EMS/XMS would be
 a bad idea because more outdated applications use
 EMS/XMS.

 Well, in fact it gave me idea that EMS could actually be
 suitable for
 DISPLAY: you book a couple of contiguous pages, then upon
 call to
 int10h select those pages as available.

 Note (Eric) that these changes wouldn't change at all
 the DISPLAY
 core, but the particular EGA/VGA driver.

 Regards,
 Aitor

 -
 Sponsored by: SourceForge.net Community Choice Awards: VOTE
 NOW!
 Studies have shown that voting for your favorite open
 source project,
 along with a healthy diet, reduces your potential for
 chronic lameness
 and boredom. Vote Now at
 http://www.sourceforge.net/community/cca08
 ___
 Freedos-user mailing list
 Freedos-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/freedos-user
 
 
   
 
 
 -
 Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW!
 Studies have shown that voting for your favorite open source project,
 along with a healthy diet, reduces your potential for chronic lameness
 and boredom. Vote Now at http://www.sourceforge.net/community/cca08
 ___
 Freedos-user mailing list
 Freedos-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/freedos-user
 
 

-
Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW!
Studies have shown that voting for your favorite open source project,
along with a healthy diet, reduces your potential for chronic lameness
and boredom. Vote Now at http://www.sourceforge.net/community/cca08
___
Freedos-user mailing list
Freedos-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freedos-user


Re: [Freedos-user] put drivers in XMS

2008-07-02 Thread Aitor Santamaría
Hello,

2008/6/3 Eric Auer [EMAIL PROTECTED]:

 Hi Robert,

 I remember some old driver in protected mode and cloaking
 related stuff from the old days but only few drivers did
 support it afair? So I would suggest that we just take our
 new open source drivers and turn those which really need
 a lot of RAM into JLM modules for JEMM386. The interface
 is a bit like DLL and DPMI, you can for example hook any
 DOS interrupt and let the handler reside outside the first
 megabyte :-). Typical candidates would be DOSLFN, SHSUCDX,
 SHARE, DISPLAY, but the latter is a bit tricky as it does
 have to show the font data in DOS-accessible RAM sometimes.

In most times: every time someone calls the video mode change function
at int 10h. You could actually hook the call, and before going into it
then: alloc somewhere 12Kb of memory (from DOS?), then use XMS
functions to recall data back, and finally do the usual DISPLAY
stuff... but looks like quite prone to failures to me.

Aitor

-
Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW!
Studies have shown that voting for your favorite open source project,
along with a healthy diet, reduces your potential for chronic lameness
and boredom. Vote Now at http://www.sourceforge.net/community/cca08
___
Freedos-user mailing list
Freedos-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freedos-user


Re: [Freedos-user] put drivers in XMS

2008-07-02 Thread Aitor Santamaría
Hello,

2008/6/3 Michael Reichenbach [EMAIL PROTECTED]:
 iw2evk schrieb:
 It's possible under freedos 1.0 put the drivers in XMS insted UMB?
 Can be used cloaking.exe , and in wich modality?

 many thanks in advance.

 Roberto iw2evk

 Hey!

 I had some time ago a similar suggestion. Loading into EMS/XMS would be
 a bad idea because more outdated applications use EMS/XMS.

Well, in fact it gave me idea that EMS could actually be suitable for
DISPLAY: you book a couple of contiguous pages, then upon call to
int10h select those pages as available.

Note (Eric) that these changes wouldn't change at all the DISPLAY
core, but the particular EGA/VGA driver.

Regards,
Aitor

-
Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW!
Studies have shown that voting for your favorite open source project,
along with a healthy diet, reduces your potential for chronic lameness
and boredom. Vote Now at http://www.sourceforge.net/community/cca08
___
Freedos-user mailing list
Freedos-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freedos-user


Re: [Freedos-user] put drivers in XMS

2008-07-02 Thread Larry
I'm trying, just for fun, to get arachne to run in Freedos in dosemu on my 
Linux machine. No luck so far. 

I'm trying to use the tap thing. Use the lunctl command to make a lun0 and set 
it up with ifconfig.

But when I try to run xdos, first I get a cannot allocate TAP device, and 
arachne doesn't see a network.

Any suggestions?


--- On Wed, 7/2/08, Aitor Santamaría [EMAIL PROTECTED] wrote:

 From: Aitor Santamaría [EMAIL PROTECTED]
 Subject: Re: [Freedos-user] put drivers in XMS
 To: freedos-user@lists.sourceforge.net
 Date: Wednesday, July 2, 2008, 5:33 PM
 Hello,
 
 2008/6/3 Michael Reichenbach
 [EMAIL PROTECTED]:
  iw2evk schrieb:
  It's possible under freedos 1.0 put the
 drivers in XMS insted UMB?
  Can be used cloaking.exe , and in wich modality?
 
  many thanks in advance.
 
  Roberto iw2evk
 
  Hey!
 
  I had some time ago a similar suggestion. Loading into
 EMS/XMS would be
  a bad idea because more outdated applications use
 EMS/XMS.
 
 Well, in fact it gave me idea that EMS could actually be
 suitable for
 DISPLAY: you book a couple of contiguous pages, then upon
 call to
 int10h select those pages as available.
 
 Note (Eric) that these changes wouldn't change at all
 the DISPLAY
 core, but the particular EGA/VGA driver.
 
 Regards,
 Aitor
 
 -
 Sponsored by: SourceForge.net Community Choice Awards: VOTE
 NOW!
 Studies have shown that voting for your favorite open
 source project,
 along with a healthy diet, reduces your potential for
 chronic lameness
 and boredom. Vote Now at
 http://www.sourceforge.net/community/cca08
 ___
 Freedos-user mailing list
 Freedos-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/freedos-user


  


-
Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW!
Studies have shown that voting for your favorite open source project,
along with a healthy diet, reduces your potential for chronic lameness
and boredom. Vote Now at http://www.sourceforge.net/community/cca08
___
Freedos-user mailing list
Freedos-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freedos-user


[Freedos-user] put drivers in XMS

2008-06-03 Thread iw2evk

It's possible under freedos 1.0 put the drivers in XMS insted UMB?
Can be used cloaking.exe , and in wich modality?

many thanks in advance.

Roberto iw2evk
-- 
View this message in context: 
http://www.nabble.com/put-drivers-in-XMS-tp17621306p17621306.html
Sent from the FreeDOS - User mailing list archive at Nabble.com.


-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
Freedos-user mailing list
Freedos-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freedos-user


Re: [Freedos-user] put drivers in XMS

2008-06-03 Thread Robert Riebisch
iw2evk wrote:

 It's possible under freedos 1.0 put the drivers in XMS insted UMB?
 Can be used cloaking.exe , and in wich modality?

FloX has a short note about cloaking on FreeDOS at
http://www.unet.univie.ac.at/~a0503736/php/drdoswiki/index.php?n=Main.DPMS.

Robert Riebisch
-- 
BTTR Software
http://www.bttr-software.de/

-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
Freedos-user mailing list
Freedos-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freedos-user


Re: [Freedos-user] put drivers in XMS

2008-06-03 Thread Eric Auer

Hi Robert,

I remember some old driver in protected mode and cloaking
related stuff from the old days but only few drivers did
support it afair? So I would suggest that we just take our
new open source drivers and turn those which really need
a lot of RAM into JLM modules for JEMM386. The interface
is a bit like DLL and DPMI, you can for example hook any
DOS interrupt and let the handler reside outside the first
megabyte :-). Typical candidates would be DOSLFN, SHSUCDX,
SHARE, DISPLAY, but the latter is a bit tricky as it does
have to show the font data in DOS-accessible RAM sometimes.


DOS memory usage now: biggest cdrom and harddisk caches up to
29+17 kB, DOSLFN 13 kB, DISPLAY 12 kB, SHARE 9 kB, SHSUCDX 6 kB

Note that you typically have much smaller caches than the max
possible size and that you can use Jack's UIDE driver with UDMA
and SATA harddisk and cdrom support and some caching functions
which probably uses somewhat less DOS RAM.


  It's possible under freedos 1.0 put the drivers in XMS insted UMB?
  Can be used cloaking.exe , and in wich modality?

 FloX has a short note about cloaking on FreeDOS at
 www.unet.univie.ac.at/~a0503736/php/drdoswiki/index.php?n=Main.DPMS

Eric



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
Freedos-user mailing list
Freedos-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freedos-user


Re: [Freedos-user] put drivers in XMS

2008-06-03 Thread Michael Reichenbach
iw2evk schrieb:
 It's possible under freedos 1.0 put the drivers in XMS insted UMB?
 Can be used cloaking.exe , and in wich modality?
 
 many thanks in advance.
 
 Roberto iw2evk

Hey!

I had some time ago a similar suggestion. Loading into EMS/XMS would be 
a bad idea because more outdated applications use EMS/XMS.

But the idea to load drivers into high memory in general is great.

It`s possible for a very rare collection of drivers already. Such 
drivers are called Jemm Loadable Modules, see
http://www.unet.univie.ac.at/~a0503736/php/drdoswiki/index.php?n=Main.MemoryManagers

Unfortunately it`s not possible to load just any existing driver into 
high memory. No one has the knowledge and the motivation to write such 
an converter.

Many old drivers are closed source, abandoned or have less motivated 
developers. Otherwise them would have been converted into Jemm Loadable 
Modules already.

-mr

-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
Freedos-user mailing list
Freedos-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freedos-user


Re: [Freedos-user] put drivers in XMS

2008-06-03 Thread Alain M.

Eric Auer escreveu:
 
 [...] and that you can use Jack's UIDE driver with UDMA
 and SATA harddisk and cdrom support and [...]

Does this mean anything about fast SATA drivers?

Alain

-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
Freedos-user mailing list
Freedos-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freedos-user