Skip to content

Commit

Permalink
Merge pull request #3 from archeYR/fix_bootcd_ini
Browse files Browse the repository at this point in the history
Correct bootcd options
  • Loading branch information
arnavbhatt288 committed Sep 19, 2022
2 parents bd2fd9e + 19d56c7 commit 911da11
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/data.h
Original file line number Diff line number Diff line change
Expand Up @@ -139,19 +139,19 @@ INI_DATA MainIniData[] =

INI_DATA BootCDIniData[] =
{
{"FREELOADER", "DefaultOS", "BootCD"},
{"FREELOADER", "DefaultOS", "BootCD_Debug"},
{"Operating Systems", "BootCD", "\"BootCD\""},
{"Operating Systems", "BootCD_Debug", "\"BootCD (Debug)\""},
{"Operating Systems", "BootCD_Screen", "\"BootCD (Screen)\""},
{"BootCD", "BootType", "ReactOSSetup"},
{"BootCD", "SystemPath", "ramdisk(0)\\"},
{"BootCD", "Options", "/MININT /RDPATH=bootcd.iso /RDEXPORTASCD"},
{"BootCD", "Options", "/NODEBUG /NOGUIBOOT /MININT /RDPATH=bootcd.iso /RDEXPORTASCD /SIFOPTIONSOVERRIDE"},
{"BootCD_Debug", "BootType", "ReactOSSetup"},
{"BootCD_Debug", "SystemPath", "ramdisk(0)\\"},
{"BootCD_Debug", "Options", "/DEBUG /DEBUGPORT=COM1 /BAUDRATE=115200 /SOS /MININT /RDPATH=bootcd.iso /RDEXPORTASCD"},
{"BootCD_Debug", "Options", "/DEBUG /DEBUGPORT=COM1 /BAUDRATE=115200 /NOGUIBOOT /MININT /RDPATH=bootcd.iso /RDEXPORTASCD /SIFOPTIONSOVERRIDE"},
{"BootCD_Screen", "BootType", "ReactOSSetup"},
{"BootCD_Screen", "SystemPath", "ramdisk(0)\\"},
{"BootCD_Screen", "Options", "/DEBUG /DEBUGPORT=SCREEN /SOS /MININT /RDPATH=bootcd.iso /RDEXPORTASCD"},
{"BootCD_Screen", "Options", "/DEBUG /DEBUGPORT=SCREEN /SOS /MININT /RDPATH=bootcd.iso /RDEXPORTASCD /SIFOPTIONSOVERRIDE"},
};

INI_DATA LiveCDIniData[] =
Expand Down

0 comments on commit 911da11

Please sign in to comment.