We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 82d34ee commit dbffce3Copy full SHA for dbffce3
Makefile
@@ -267,14 +267,14 @@ ext4: | $(ROOTFS_DIR)
267
qemu-img convert -O $(ROOTFS_FORMAT) $(ROOTFS) $(ROOTFS).tmp
268
mv $(ROOTFS).tmp $(ROOTFS)
269
270
-.PHONY: cpio
271
-cpio: | $(INITRAMFS_DIR)
+.PHONY: cpio initramfs
+initramfs cpio: | $(INITRAMFS_DIR)
272
cd $(INITRAMFS_DIR) && find . -print0 \
273
| cpio --null --create --verbose --format=newc \
274
| gzip --best > $(CPIO_FILE)
275
276
.PHONY: rootfs
277
-rootfs: ext4
+rootfs: ext4 cpio
278
279
.PHONY: rootfs-mount
280
rootfs-mount:
0 commit comments