Hi, there is config.txt in the kernel distribution .zip files, which will answer your questions. My fdconfig.sys looks like this:
MENU 1 Standard UMBPCI MENU 2 Standard EMS ... MENUDEFAULT=1,5 ; unit is seconds for the ,5 ... 12?SCREEN=0x12 ECHO 8x8 font (0x12) gives us 50 lines of text :-) rem The FreeDOS kernel allows ECHO in fdconfig.sys !break=on ; things with ! even happen when the user skipped the menu 12?DEVICE=C:\freedos\bin\FDXXMS.SYS BIOS NUMHANDLES=64 ; notice the "?" ... DEVICE?=e:\freedos\sysmem.sys ; things with ?= are causing the user to be asked, can be combined ; with 123?... syntax to: 1?device?=... And so on, I have only copied some example lines, not my whole fdconfig.sys :-). You cannot set variable=value in config.sys, this is where your problem with cdromdrv is. However, %CONFIG% is used, maybe you have a type somewhere: if x%CONFIG==x4 ? lh c:\freedos\bin\xkeybres or if x%CONFIG%==x1 goto loadmore are examples from my fdauto.bat ... Eric. PS: To have fdauto.bat instead of autoexec.bat: SHELL=c:\freedos\bin\command.com c:\freedos\bin /e:512 /p=c:\fdauto.bat To have fdconfig.sys instead of config.sys: FreeDOS automatically uses fdconfig.sys if it exists, even if a config.sys exists. ---------- list options/archives/etc.: http://www.topica.com/lists/fd-dev unsubscribe: send blank email to: [EMAIL PROTECTED] ==^================================================================ This email was sent to: [email protected] EASY UNSUBSCRIBE click here: http://topica.com/u/?bz8Rv5.bbRv4l.YXJjaGl2 Or send an email to: [EMAIL PROTECTED] T O P I C A -- Register now to manage your mail! http://www.topica.com/partner/tag02/register ==^================================================================
