Changeset 67 for trunk/bootcode/airboot.asm
- Timestamp:
- Oct 11, 2016, 10:42:09 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bootcode/airboot.asm
r66 r67 1182 1182 1183 1183 ; 1184 ; BOOKMARK: Check for eCSbeing installed1185 ; Here we check if eComStation v2.1+is being installed.1184 ; BOOKMARK: Check for OS/2 being installed 1185 ; Here we check if OS/2 is being installed. 1186 1186 ; If so, we forgo the menu and directly boot it. 1187 1187 ; … … 1189 1189 ; If the first byte of the name of the Install Volume is not 0 1190 1190 ; then we potentially have a phase1 boot. 1191 test byte ptr [ eCS_InstallVolume],0ffh1191 test byte ptr [OS2_InstallVolume],0ffh 1192 1192 ; Nope, so continue normally. 1193 1193 jz MBR_Main_ContinueBoot … … 1221 1221 1222 1222 1223 ; BOOKMARK: Scan for Partitions (Only if eCSinstall going on)1223 ; BOOKMARK: Scan for Partitions (Only if OS/2 install going on) 1224 1224 ; Because one or more partitions are possibly added, the 1225 1225 ; PartitionXref table is not 'in sync' and could cause the … … 1305 1305 ; Save configuration so phase1 boot-through is disabled 1306 1306 ; on next boot. 1307 mov byte ptr [ eCS_InstallVolume], 01307 mov byte ptr [OS2_InstallVolume], 0 1308 1308 call DriveIO_SaveConfiguration 1309 1309 … … 1440 1440 1441 1441 ; Preload the selected menu-entry 1442 ; However, this value will be wrong if eCSphase1 is1442 ; However, this value will be wrong if OS/2 phase1 is 1443 1443 ; active and the installation partition is newly created. 1444 1444 ; See below for the adjustment. … … 1912 1912 ; So future config changes will not break auto-install. 1913 1913 ; 1914 ; BOOKMARK: Name of eCSInstallation Volume1914 ; BOOKMARK: Name of OS/2 Installation Volume 1915 1915 ORIGIN 06D00h 1916 1916 1917 ; SET(A)BOOT stores the volume name of the eCSsystem being installed here.1917 ; SET(A)BOOT stores the volume name of the OS/2 system being installed here. 1918 1918 ; It is truncated to 11 chars because AiR-BOOT currently does not support 1919 1919 ; longer labelnames. The name is also capitalized. 1920 ; eCS_InstallVolume db 12 dup (0)1921 ; eCS_InstallVolume db 'HIGHLOG' ,01922 ; eCS_InstallVolume db 'ECS-MIDDLE',0,01923 ; eCS_InstallVolume db 'ECS-HIGH',0,0,0,01924 ; eCS_InstallVolume db 'ECS-HIGH',0,'NO',01925 ; eCS_InstallVolume db 'KANWEG2',01926 eCS_InstallVolume db 0,'NOPHASEONE' ,01920 ;OS2_InstallVolume db 12 dup (0) 1921 ;OS2_InstallVolume db 'HIGHLOG' ,0 1922 ;OS2_InstallVolume db 'ECS-MIDDLE',0,0 1923 ;OS2_InstallVolume db 'ECS-HIGH',0,0,0,0 1924 ;OS2_InstallVolume db 'ECS-HIGH',0,'NO',0 1925 ;OS2_InstallVolume db 'KANWEG2',0 1926 OS2_InstallVolume db 0,'NOPHASEONE' ,0 1927 1927 1928 1928 ;
Note:
See TracChangeset
for help on using the changeset viewer.