Skip to content

Commit d5e4173

Browse files
committed
build(Makefile): drop init/rsh deps from iso target
iso only needs the kernel binary and Limine files. init and rsh are userspace binaries copied to disk.img for local runs; they are not part of the bootable ISO and unavailable in CI (rsh lives in a separate repo). Removes the ../rsh/Cargo.toml not found CI failure.
1 parent b7c713c commit d5e4173

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ rsh:
4646
--release \
4747
--target x86_64-unknown-none
4848

49-
iso: init rsh $(ISO_ROOT)/boot/kernel $(ISO_ROOT)/boot/limine-bios.sys $(ISO_ROOT)/boot/limine-bios-cd.bin $(ISO_ROOT)/boot/limine-uefi-cd.bin $(ISO_ROOT)/limine.conf
49+
iso: $(ISO_ROOT)/boot/kernel $(ISO_ROOT)/boot/limine-bios.sys $(ISO_ROOT)/boot/limine-bios-cd.bin $(ISO_ROOT)/boot/limine-uefi-cd.bin $(ISO_ROOT)/limine.conf
5050
xorriso -as mkisofs -b boot/limine-bios-cd.bin \
5151
-no-emul-boot -boot-load-size 4 -boot-info-table \
5252
--efi-boot boot/limine-uefi-cd.bin \

0 commit comments

Comments
 (0)