Initial commit

This commit is contained in:
2022-03-07 08:53:58 -06:00
commit 2437e6e467
25 changed files with 498 additions and 0 deletions

17
Makefile Normal file
View File

@@ -0,0 +1,17 @@
SHELL ?= /bin/sh
.PHONY: rootfs
rootfs:
$(SHELL) mkrootfs.sh _build/rootfs
.PHONY: initramfs
initramfs: _build/rootfs/boot/initramfs.img
_build/rootfs/boot/initramfs.img: \
_build/rootfs/bin/dracut \
mkinitramfs.sh
$(SHELL) mkinitramfs.sh _build/rootfs
.PHONY: publish
publish:
$(SHELL) publish.sh _build/rootfs