2018-08-18 02:47:48 +02:00
|
|
|
build/initfs.tag: initfs.toml prefix
|
2020-05-26 05:53:12 +02:00
|
|
|
cargo build --manifest-path cookbook/Cargo.toml --release
|
2020-05-23 03:56:04 +02:00
|
|
|
cargo build --manifest-path installer/Cargo.toml --release
|
2019-01-14 01:01:34 +01:00
|
|
|
rm -f build/libkernel.a
|
2017-07-21 04:04:34 +02:00
|
|
|
rm -rf build/initfs
|
2017-09-27 04:53:08 +02:00
|
|
|
mkdir -p build/initfs
|
2020-05-23 03:56:04 +02:00
|
|
|
$(INSTALLER) -c $< build/initfs/
|
2020-12-22 18:47:00 +01:00
|
|
|
#TODO: HACK FOR SMALLER INITFS, FIX IN PACKAGING
|
|
|
|
for bin in alxd e1000d ihdad ixgbed pcspkrd redoxfs-ar redoxfs-mkfs rtl8168d usbctl usbhidd usbscsid xhcid; do \
|
|
|
|
rm -f build/initfs/bin/$$bin; \
|
|
|
|
done
|
2017-05-11 05:39:05 +02:00
|
|
|
touch $@
|
2017-10-01 22:25:07 +02:00
|
|
|
|
2019-02-25 20:10:16 +01:00
|
|
|
build/initfs_coreboot.tag: initfs_coreboot.toml prefix
|
2020-05-26 05:53:12 +02:00
|
|
|
cargo build --manifest-path cookbook/Cargo.toml --release
|
2020-05-23 03:56:04 +02:00
|
|
|
cargo build --manifest-path installer/Cargo.toml --release
|
2019-02-25 20:10:16 +01:00
|
|
|
rm -f build/libkernel_coreboot.a
|
|
|
|
rm -rf build/initfs_coreboot
|
|
|
|
mkdir -p build/initfs_coreboot
|
2020-05-23 03:56:04 +02:00
|
|
|
$(INSTALLER) -c $< build/initfs_coreboot/
|
2019-02-25 20:10:16 +01:00
|
|
|
touch $@
|
|
|
|
|
2018-08-18 02:47:48 +02:00
|
|
|
build/initfs_live.tag: initfs_live.toml prefix
|
2020-05-26 05:53:12 +02:00
|
|
|
cargo build --manifest-path cookbook/Cargo.toml --release
|
2020-05-23 03:56:04 +02:00
|
|
|
cargo build --manifest-path installer/Cargo.toml --release
|
2019-01-14 01:01:34 +01:00
|
|
|
rm -f build/libkernel_live.a
|
2017-10-01 22:25:07 +02:00
|
|
|
rm -rf build/initfs_live
|
|
|
|
mkdir -p build/initfs_live
|
2020-05-23 03:56:04 +02:00
|
|
|
$(INSTALLER) -c $< build/initfs_live/
|
2017-10-01 22:25:07 +02:00
|
|
|
touch $@
|