diff options
author | H. Peter Anvin <hpa@zytor.com> | 2009-02-09 11:35:48 +0100 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2009-03-10 21:30:37 -0700 |
commit | db23ca0a8fcb023be7ba67b817d9f74c854921a7 (patch) | |
tree | 1a5e38baf2f5ea4bc241a9860c3c362e820da3fb /sample | |
parent | 0921ae9c9014dcf6f7319567f52e9a1923bba708 (diff) | |
download | syslinux-db23ca0a8fcb023be7ba67b817d9f74c854921a7.tar.gz |
mdiskchk: fix and update the boot loader name table
Fix and update the list of boot loaders in mdiskchk.
Diffstat (limited to 'sample')
-rw-r--r-- | sample/mdiskchk.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sample/mdiskchk.c b/sample/mdiskchk.c index 8d679f7e..e7ebcde3 100644 --- a/sample/mdiskchk.c +++ b/sample/mdiskchk.c @@ -102,8 +102,8 @@ const char *bootloadername(uint8_t id) const char *name; } *lp, list[] = { - { 0x10, 0xf0, "LILO" }, - { 0x20, 0xf0, "LOADLIN" }, + { 0x00, 0xf0, "LILO" }, + { 0x10, 0xf0, "LOADLIN" }, { 0x31, 0xff, "SYSLINUX" }, { 0x32, 0xff, "PXELINUX" }, { 0x33, 0xff, "ISOLINUX" }, @@ -113,6 +113,8 @@ const char *bootloadername(uint8_t id) { 0x50, 0xf0, "ELILO" }, { 0x70, 0xf0, "GrUB" }, { 0x80, 0xf0, "U-Boot" }, + { 0xA0, 0xf0, "Gujin" }, + { 0xB0, 0xf0, "Qemu" }, { 0x00, 0x00, "unknown" } }; |