~sircmpwn/helios-devel

This thread contains a patchset. You're looking at the original emails, but you may wish to use the patch review UI. Review patch
1

[PATCH mercury] fix mkisofs truncating filenames above 8 characters

Details
Message ID
<20230409205925.83678-1-dom@inik.dev>
DKIM signature
missing
Download raw message
Patch: +2 -1
---
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
Details
Message ID
<CRSJD7MJC070.21HAUS6SQ1V5Y@taiga>
In-Reply-To
<20230409205925.83678-1-dom@inik.dev> (view parent)
DKIM signature
missing
Download raw message
Thanks!

To git@git.sr.ht:~sircmpwn/mercury
   55769cd..08c0486  master -> master
Reply to thread Export thread (mbox)