---
mkisofs truncates names above 8 characters, turning bootstrap.tar into
bootstra.tar making the iso unable to find it. This removes that filename
length restriction, though I am unsure why no one else seems to be having this
issue.
mk/x86_64.mk | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/mk/x86_64.mk b/mk/x86_64.mk
index 802bd91..68c530b 100644
--- a/mk/x86_64.mk
+++ b/mk/x86_64.mk
@@ -28,7 +28,8 @@ boot.iso: $(BOOT) syslinux.cfg $(HELIOS)/helios sbin/sysinit bootstrap.tar
cp bootstrap.tar isodir/bootstrap.tar
mkisofs -o $@ -b isolinux.bin -c boot.cat \
- -no-emul-boot -boot-load-size 4 -boot-info-table isodir
+ -no-emul-boot -boot-load-size 4 -boot-info-table \
+ -iso-level 2 isodir
isohybrid $@
nographic: boot.iso
--
2.40.0