boor disk hell....
ok so this is getting annoying...
i got a win95 bootdisk from the bootdisk project
added an empty config.sys
added autoexec.bat.
got the CD drive working
i wanted to add a menu system so i could make on bootdisk for use on my laptop and normal computers, the idea being that the laptop one would have PC card drivers, USB and NIC drivers. whereas the pc one would have CD and usb.
i used the bootdisk than win98 makes as a template.
i got the menu working, only problem is that mscdex loads everything when u dont need it (ie CD drivers when choosing laptop) in autoexec.bat
so i looked at the win98 autoexec.bat and it had a way of soing this so i copied it to use for my own. only problem now is that it dont work
addtionaly the items in the "common" section of config.sys do not load.
Anyone got any ideas? this is VERY annoying
BOD
i got a win95 bootdisk from the bootdisk project
added an empty config.sys
added autoexec.bat.
got the CD drive working
i wanted to add a menu system so i could make on bootdisk for use on my laptop and normal computers, the idea being that the laptop one would have PC card drivers, USB and NIC drivers. whereas the pc one would have CD and usb.
i used the bootdisk than win98 makes as a template.
i got the menu working, only problem is that mscdex loads everything when u dont need it (ie CD drivers when choosing laptop) in autoexec.bat
so i looked at the win98 autoexec.bat and it had a way of soing this so i copied it to use for my own. only problem now is that it dont work
config.sys wrote:[menu]
menuitem=LAPTOP, Laptop (USB & NIC with cardbus)
menuitem=PC, PC with USB and CD
menuitem=PC2, PC with CD only
menudefault=Laptop, 60
menucolor=7,0
[laptop]
DEVICE=USBASPI.SYS
[PC]
DEVICE=sscdrom.SYS
[PC2]
DEVICE=sscdrom.SYS
[common]
DEVICE=HIMEM.sys /testmem:off
autoexec.bat wrote:@echo off
IF "%config%"=="LAPTOP" goto Laptop
IF "%config%"=="PC" goto PC
IF "%config%"=="PC2" goto PC2
:LAPTOP
:PC
mscdex /d:12345678 /l:d
:PC2:
mscdex /d:12345678 /l:d
addtionaly the items in the "common" section of config.sys do not load.
Anyone got any ideas? this is VERY annoying
BOD
Comments
-Q