summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDimitri Sokolyuk <demon@dim13.org>2003-06-08 11:07:02 +0000
committerDimitri Sokolyuk <demon@dim13.org>2003-06-08 11:07:02 +0000
commit7df3f7ba37fc5c351b5cfd9c6920644be9f01eaf (patch)
treed4ef21e07eb362c663c6831d9679f12748d797ba
parent4b1d510b9bfb088c142ee129d31764a73ceb1fd0 (diff)
disklabels update
-rw-r--r--Boot.asm28
-rw-r--r--Boot.binbin512 -> 512 bytes
2 files changed, 13 insertions, 15 deletions
diff --git a/Boot.asm b/Boot.asm
index 1f3465e..6ba8e5d 100644
--- a/Boot.asm
+++ b/Boot.asm
@@ -1,4 +1,4 @@
-; BOOTEASY, version 1.7.
+; BOOTEASY, version 1.7.1
; Developed from BOOTANY, with many improvements.
; The main idea was to simplify the installation
; procedure and to remove unnecessary partition type switching.
@@ -136,6 +136,8 @@ menuloop:
je next
cmp AL,5 ; extended DOS partition?
je next
+ cmp AL,0Fh ; extended DOS partition?
+ je next
inc DH ; increment partition count
lea SI,Base+FkeyMsg ; get msg addr
@@ -251,8 +253,9 @@ default db '?',' '+80h
nameTable db dos -namtab, 1
db dos -namtab, 4
db dos -namtab, 6
- db hpfs -namtab, 7
- db os2 -namtab, 0Ah
+ db win -namtab, 7
+ db win -namtab, 0Bh
+ db win -namtab, 0Ch
db unix -namtab, 63h
db novell -namtab, 64h
db novell -namtab, 65h
@@ -260,30 +263,25 @@ nameTable db dos -namtab, 1
db linux -namtab, 81h
db linux -namtab, 82h
db linux -namtab, 83h
- db amoeba -namtab, 93h
+ db win -namtab, 87h
db freebsd -namtab, 0A5h
+ db openbsd -namtab, 0A6h
+ db netbsd -namtab, 0A9h
db bsdi -namtab, 9fh
- db pcix -namtab, 75h
- db cpm -namtab, 52h
- db cpm -namtab, 0dbh
- db venix -namtab, 40h
db dossec -namtab, 0F2h
db noname -namtab, 0
namtab:
-dos db 'Do','s'+80h
-hpfs db 'Hpf','s'+80h
-os2 db 'Os','2'+80h
+dos db 'DO','S'+80h
+win db 'Window','s'+80h
unix db 'Uni','x'+80h
novell db 'Novel','l'+80h
minix db 'Mini','x'+80h
linux db 'Linu','x'+80h
-amoeba db 'Amoeb','a'+80h
freebsd db 'FreeBS','D'+80h
+openbsd db 'OpenBS','D'+80h
+netbsd db 'NetBS','D'+80h
bsdi db 'BSD','i'+80h
-pcix db 'Pci','x'+80h
-cpm db 'Cp','m'+80h
-venix db 'Veni','x'+80h
dossec db 'Dosse','c'+80h
noname db '?','?'+80h
diff --git a/Boot.bin b/Boot.bin
index ec56052..49569ec 100644
--- a/Boot.bin
+++ b/Boot.bin
Binary files differ