2024-01-05 17:47:00 +00:00
|
|
|
.PHONY: use-alpine use-arch use-ubuntu
|
2024-01-05 13:01:20 +00:00
|
|
|
|
|
|
|
|
2024-01-05 17:47:00 +00:00
|
|
|
use-arch: ../out/arch-rootfs.ext4
|
|
|
|
ln -s $< ../out/rootfs.ext4
|
|
|
|
|
|
|
|
use-alpine: ../out/alpine-rootf.ext4
|
|
|
|
ln -s $< ../out/rootfs.ext4
|
|
|
|
|
2024-01-05 17:49:45 +00:00
|
|
|
use-ubuntu: ../out/ubuntu-22.04.ext4 ../out/ubuntu-22.04.id_rsa
|
2024-01-05 17:47:00 +00:00
|
|
|
ln -s $< ../out/rootfs.ext4
|
|
|
|
|
2024-01-05 17:52:03 +00:00
|
|
|
kernel: ../out/vmlinux-5.10.204
|
|
|
|
|
|
|
|
|
|
|
|
../out/vmlinux-5.10.204:
|
|
|
|
wget -O $@ https://s3.amazonaws.com/spec.ccfc.min/firecracker-ci/v1.7/${ARCH}/vmlinux-5.10.204
|
2024-01-05 17:47:00 +00:00
|
|
|
|
|
|
|
../out/arch-rootfs.ext4:
|
|
|
|
bash ./arch-rootf.sh
|
|
|
|
|
|
|
|
../out/alpine-rootf.ext4:
|
|
|
|
bash ./alpine-rootf.sh
|
|
|
|
|
|
|
|
../out/ubuntu-22.04.ext4:
|
|
|
|
wget -O $@ https://s3.amazonaws.com/spec.ccfc.min/firecracker-ci/v1.7/$$(uname -m)/ubuntu-22.04.ext4
|
2024-01-05 17:49:45 +00:00
|
|
|
|
|
|
|
../out/ubuntu-22.04.id_rsa:
|
|
|
|
wget -O $@ https://s3.amazonaws.com/spec.ccfc.min/firecracker-ci/v1.7/$$(uname -m)/ubuntu-22.04.id_rsa
|
|
|
|
chmod 400 $@
|