Compare commits

...

2 Commits

Author SHA1 Message Date
Jeremy Soller
e779848fdd
Adjust initfs removed binaries, copy bootloader to filesystem 2022-02-28 17:38:21 -07:00
Jeremy Soller
ca0792a390
Update cookbook and installer 2022-02-28 12:26:37 -07:00
4 changed files with 19 additions and 4 deletions

@ -1 +1 @@
Subproject commit 21f9808186a0abdeae9b0cbd5a2a372bbfb75f87
Subproject commit 60df5daaebf45e9a0c2d800902d4bf9f2e4659cc

@ -1 +1 @@
Subproject commit 84856f459dccbc86a6490904e571389de72bf4c4
Subproject commit 621a4dee2cd0478e7dd580b4b3f4dff3778f7e0d

View File

@ -1,4 +1,4 @@
build/filesystem.bin: filesystem.toml build/kernel prefix
build/filesystem.bin: filesystem.toml build/bootloader.bin build/kernel prefix
cargo build --manifest-path cookbook/Cargo.toml --release
cargo build --manifest-path installer/Cargo.toml --release
cargo build --manifest-path redoxfs/Cargo.toml --release
@ -11,6 +11,7 @@ build/filesystem.bin: filesystem.toml build/kernel prefix
sleep 2
pgrep redoxfs
cp $< build/filesystem/filesystem.toml
cp build/bootloader.bin build/filesystem/bootloader
cp build/kernel build/filesystem/kernel
cp -r $(ROOT)/$(PREFIX_INSTALL)/$(TARGET)/include build/filesystem/include
cp -r $(ROOT)/$(PREFIX_INSTALL)/$(TARGET)/lib build/filesystem/lib

View File

@ -1,4 +1,18 @@
INITFS_RM_BINS=alxd e1000d ihdad ixgbed pcspkrd redoxfs-ar redoxfs-mkfs rtl8168d usbctl
INITFS_RM_BINS=\
alxd \
bgad \
e1000d \
ihdad \
ixgbed \
pcspkrd \
redoxfs-ar \
redoxfs-mkfs \
rtl8168d \
usbctl \
usbhidd \
usbscsid \
vboxd \
xhcid
build/initfs.tag: initfs.toml prefix
cargo build --manifest-path cookbook/Cargo.toml --release