1
0
Fork 0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-06-10 16:56:25 +02:00

image.mk: call mkfs/prepare for the image builder

Signed-off-by: Felix Fietkau <nbd@openwrt.org>

SVN-Revision: 42874
This commit is contained in:
Felix Fietkau 2014-10-12 15:00:11 +00:00
parent 71617f21a5
commit 7cbdc57b40

View File

@ -263,10 +263,12 @@ define BuildImage
image_prepare: compile FORCE
$(call Image/Prepare)
$(call Image/mkfs/prepare)
endif
install: image_prepare install-targets FORCE
mkfs_prepare: image_prepare
$(call Image/mkfs/prepare)
install: mkfs_prepare install-targets FORCE
$(call Image/BuildKernel)
$(if $(CONFIG_TARGET_ROOTFS_INITRAMFS),$(call Image/BuildKernel/Initramfs))
$(call Image/InstallKernel)