With the recent rework of the x86 image creation the f2fs/ext4 based overlays dissappeared as their are not copied by default.
This commit follows the implementation of malta and armvirt to copy the overlays as well. Signed-off-by: Paul Spooren <m...@aparcar.org> --- target/linux/x86/image/Makefile | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/target/linux/x86/image/Makefile b/target/linux/x86/image/Makefile index c2961e5b9c..81a8f73efc 100644 --- a/target/linux/x86/image/Makefile +++ b/target/linux/x86/image/Makefile @@ -118,6 +118,10 @@ define Device/Default endif endef +define Image/Build/gzip + gzip -f9n $(BIN_DIR)/$(IMG_ROOTFS)-$(1).img +endef + $(eval $(call Image/gzip-ext4-padded-squashfs)) ifeq ($(SUBTARGET),64) @@ -136,5 +140,11 @@ ifeq ($(SUBTARGET),legacy) include legacy.mk endif +define Image/Build + $(call Image/Build/$(1)) + $(CP) $(KDIR)/root.$(1) $(BIN_DIR)/$(IMG_ROOTFS)-$(1).img + $(call Image/Build/gzip/$(1)) +endef + $(eval $(call BuildImage)) -- 2.25.1 _______________________________________________ openwrt-devel mailing list openwrt-devel@lists.openwrt.org https://lists.openwrt.org/mailman/listinfo/openwrt-devel