diff options
author | des <des@FreeBSD.org> | 2005-02-08 20:43:04 +0000 |
---|---|---|
committer | des <des@FreeBSD.org> | 2005-02-08 20:43:04 +0000 |
commit | b87bf48d9ecd582e932f78d08da61a704d5ab081 (patch) | |
tree | 2385840265c42fe7c22c962904b1c06ee4721fbb /sys/boot/i386 | |
parent | af5ef3f262889299ffe39d2c97f6ef14b8a66b70 (diff) | |
download | FreeBSD-src-b87bf48d9ecd582e932f78d08da61a704d5ab081.zip FreeBSD-src-b87bf48d9ecd582e932f78d08da61a704d5ab081.tar.gz |
Remove type 0x4 (FAT12 <32MB) to make room for type 0x7 (NTFS).
Diffstat (limited to 'sys/boot/i386')
-rw-r--r-- | sys/boot/i386/boot0/boot0.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/boot/i386/boot0/boot0.S b/sys/boot/i386/boot0/boot0.S index 0f88a6b..4927d21 100644 --- a/sys/boot/i386/boot0/boot0.S +++ b/sys/boot/i386/boot0/boot0.S @@ -409,7 +409,7 @@ tables: /* * These values indicate bootable types we know the names of. */ - .byte 0x1, 0x4, 0x6, 0xb, 0xc, 0xe, 0x83 + .byte 0x1, 0x6, 0x7, 0xb, 0xc, 0xe, 0x83 .byte 0x9f, 0xa5, 0xa6, 0xa9 /* * These are offsets that match the known names above and point to the strings @@ -418,7 +418,7 @@ tables: */ .byte os_dos-. # DOS .byte os_dos-. # DOS - .byte os_dos-. # DOS + .byte os_dos-. # Windows .byte os_dos-. # Windows .byte os_dos-. # Windows .byte os_dos-. # Windows |