diff options
author | H. Peter Anvin <hpa@zytor.com> | 2009-05-25 21:04:09 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2009-05-25 21:05:03 -0700 |
commit | 177b65b5924cdf47ad414c8f77a922ed75c23591 (patch) | |
tree | 9a1d04a147d5c045ea26969c4c63ed9bd1bd7476 /utils | |
parent | 07eb1663bd31bcaf7a194db9bfb6bfe14b47eaa0 (diff) | |
download | syslinux-177b65b5924cdf47ad414c8f77a922ed75c23591.tar.gz |
isohybrid: we are backwards compatible again, change the error msg
We are backwards compatible again, at least as long as -partok is not
used. However, there is no minor version number, so we can't check
for that at this time.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'utils')
-rw-r--r-- | utils/isohybrid.in | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/utils/isohybrid.in b/utils/isohybrid.in index cfb92ed6..a92b5726 100644 --- a/utils/isohybrid.in +++ b/utils/isohybrid.in @@ -166,9 +166,8 @@ if ($de_boot != 0x88 || $de_media != 0 || seek(FILE, $de_lba*2048+0x40, SEEK_SET) or die "$0: $file: $!\n"; read(FILE, $ibsig, 4); if ($ibsig ne "\xfb\xc0\x78\x70") { - die "$0: $file: bootloader is missing current (3.81+) isolinux.bin\n". - " hybrid signature; Note that isolinux-debug.bin does not\n". - " support hybrid booting.\n"; + die "$0: $file: bootloader does not have a isolinux.bin hybrid signature.". + "Note that isolinux-debug.bin does not support hybrid booting.\n"; } # Get the total size of the image |