Author: wmb Date: 2010-01-27 06:41:54 +0100 (Wed, 27 Jan 2010) New Revision: 1712
Modified: cpu/x86/pc/biosints.fth Log: biosints.fth - changed "sd" devalias to "int" and "ext".
Modified: cpu/x86/pc/biosints.fth =================================================================== --- cpu/x86/pc/biosints.fth 2010-01-26 17:27:08 UTC (rev 1711) +++ cpu/x86/pc/biosints.fth 2010-01-27 05:41:54 UTC (rev 1712) @@ -1188,10 +1188,14 @@ to bios-ih bootable-cdrom? if bios-ih to bios-cdrom-ih - " sd:0" open-dev ?dup if + " int:0" open-dev ?dup if to bios-disk-ih else - ." Can't open SD device. Install from CD-ROM probably won't work." cr + " ext:0" open-dev ?dup if + to bios-disk-ih + else + ." Can't open SD device. Install from CD-ROM probably won't work." cr + then then h# 82 to bios-boot-dev# true exit @@ -1203,7 +1207,8 @@
" /usb/disk:0" mbr-bootable? if " /usb/disk:0" set-hd-boot true exit then
- " sd:0" mbr-bootable? if " sd:0" set-hd-boot true exit then + " int:0" mbr-bootable? if " int:0" set-hd-boot true exit then + " ext:0" mbr-bootable? if " ext:0" set-hd-boot true exit then
false ;