diff options
author | Ian Moffett <ian@osmora.org> | 2024-03-03 00:01:37 -0500 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2024-03-03 00:01:37 -0500 |
commit | 200eff28128fd6f85099cc28712b53b1330cefb2 (patch) | |
tree | 350ea4525d5afbdb62542c31dbcc77041c36f1cb /Makefile.in | |
parent | 078f945812435967b0eb19408856ca9caf2b1246 (diff) |
build: Use USTAR for initramfs
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index 61b11e3..df99dc0 100644 --- a/Makefile.in +++ b/Makefile.in @@ -94,7 +94,7 @@ base/boot/hyra-kernel: $(KERNEL_OBJECTS) $(KERNEL_ASMOBJECTS) $(CC) -c $(KERNEL_CFLAGS) $(KERNEL_DEFINES) sys/kern/ksyms.c -o sys/kern/ksyms.o $(LD) $(KERNEL_LDFLAGS) $(KERNEL_OBJECTS) $(KERNEL_ASMOBJECTS) \ sys/kern/ksyms.o -o base/boot/hyra-kernel - cd base/; tar cvf ../initramfs.tar * &> /dev/null + cd base/; tar -cvf ../initramfs.tar * --format=ustar &> /dev/null $(PROMPT) " RAMFS " $(shell pwd)/initramfs.tar # === Building ISO === mkdir -p iso_root/boot/ |