mirror of https://github.com/hak5/openwrt-owl.git
ubifs: enable building modular images
Now it is possible to build ubi/ubifs images for only selected boards inside single target. Signed-off-by: Luka Perkov <luka@openwrt.org> SVN-Revision: 38375owl
parent
05625233ed
commit
c808a4a7ef
|
@ -35,7 +35,7 @@ ifeq ($(CONFIG_JFFS2_LZMA),y)
|
||||||
JFFS2OPTS += -X lzma --compression-mode=size
|
JFFS2OPTS += -X lzma --compression-mode=size
|
||||||
endif
|
endif
|
||||||
ifneq ($(CONFIG_JFFS2_RTIME),y)
|
ifneq ($(CONFIG_JFFS2_RTIME),y)
|
||||||
JFFS2OPTS += -x rtime
|
JFFS2OPTS += -x rtime
|
||||||
endif
|
endif
|
||||||
ifneq ($(CONFIG_JFFS2_ZLIB),y)
|
ifneq ($(CONFIG_JFFS2_ZLIB),y)
|
||||||
JFFS2OPTS += -x zlib
|
JFFS2OPTS += -x zlib
|
||||||
|
@ -115,7 +115,8 @@ endif
|
||||||
|
|
||||||
ifneq ($(CONFIG_TARGET_ROOTFS_UBIFS),)
|
ifneq ($(CONFIG_TARGET_ROOTFS_UBIFS),)
|
||||||
define Image/mkfs/ubifs
|
define Image/mkfs/ubifs
|
||||||
$(CP) ./ubinize.cfg $(KDIR)
|
|
||||||
|
ifdef UBIFS_OPTS
|
||||||
$(STAGING_DIR_HOST)/bin/mkfs.ubifs \
|
$(STAGING_DIR_HOST)/bin/mkfs.ubifs \
|
||||||
$(UBIFS_OPTS) \
|
$(UBIFS_OPTS) \
|
||||||
$(if $(CONFIG_TARGET_UBIFS_FREE_SPACE_FIXUP),--space-fixup) \
|
$(if $(CONFIG_TARGET_UBIFS_FREE_SPACE_FIXUP),--space-fixup) \
|
||||||
|
@ -125,10 +126,19 @@ ifneq ($(CONFIG_TARGET_ROOTFS_UBIFS),)
|
||||||
--jrn-size=$(CONFIG_TARGET_UBIFS_JOURNAL_SIZE) \
|
--jrn-size=$(CONFIG_TARGET_UBIFS_JOURNAL_SIZE) \
|
||||||
-o $(KDIR)/root.ubifs \
|
-o $(KDIR)/root.ubifs \
|
||||||
-d $(TARGET_DIR)
|
-d $(TARGET_DIR)
|
||||||
$(call Image/Build,ubifs)
|
endif
|
||||||
(cd $(KDIR); \
|
$(call Image/Build,ubifs)
|
||||||
$(STAGING_DIR_HOST)/bin/ubinize $(UBINIZE_OPTS) -o $(KDIR)/root.ubi ubinize.cfg)
|
|
||||||
$(call Image/Build,ubi)
|
ifdef UBI_OPTS
|
||||||
|
$(CP) ./ubinize.cfg $(KDIR)
|
||||||
|
( cd $(KDIR); \
|
||||||
|
$(STAGING_DIR_HOST)/bin/ubinize \
|
||||||
|
$(UBI_OPTS) \
|
||||||
|
-o $(KDIR)/root.ubi \
|
||||||
|
ubinize.cfg \
|
||||||
|
)
|
||||||
|
endif
|
||||||
|
$(call Image/Build,ubi)
|
||||||
endef
|
endef
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
|
@ -8,8 +8,6 @@ include $(TOPDIR)/rules.mk
|
||||||
include $(INCLUDE_DIR)/image.mk
|
include $(INCLUDE_DIR)/image.mk
|
||||||
|
|
||||||
NAND_BLOCKSIZE := 2048:128k
|
NAND_BLOCKSIZE := 2048:128k
|
||||||
UBIFS_OPTS := -m 2048 -e 126KiB -c 4096 -U
|
|
||||||
UBINIZE_OPTS := -m 2048 -p 128KiB -s 512
|
|
||||||
|
|
||||||
define Image/BuildKernel
|
define Image/BuildKernel
|
||||||
$(CP) $(KDIR)/uImage $(BIN_DIR)/$(IMG_PREFIX)-uImage
|
$(CP) $(KDIR)/uImage $(BIN_DIR)/$(IMG_PREFIX)-uImage
|
||||||
|
@ -60,4 +58,18 @@ define Image/Build/squashfs
|
||||||
) > $(BIN_DIR)/$(IMG_PREFIX)-$(1).img
|
) > $(BIN_DIR)/$(IMG_PREFIX)-$(1).img
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
define Image/Build/ubifs
|
||||||
|
|
||||||
|
ifdef UBIFS_OPTS
|
||||||
|
$(CP) $(KDIR)/root.$(1) $(BIN_DIR)/$(IMG_PREFIX)-$(1).img
|
||||||
|
endif
|
||||||
|
endef
|
||||||
|
|
||||||
|
define Image/Build/ubi
|
||||||
|
|
||||||
|
ifdef UBI_OPTS
|
||||||
|
$(call Image/Build/ubifs,$(1))
|
||||||
|
endif
|
||||||
|
endef
|
||||||
|
|
||||||
$(eval $(call BuildImage))
|
$(eval $(call BuildImage))
|
||||||
|
|
|
@ -10,11 +10,11 @@ include $(INCLUDE_DIR)/image.mk
|
||||||
JFFS2_BLOCKSIZE=256k 512k
|
JFFS2_BLOCKSIZE=256k 512k
|
||||||
|
|
||||||
ifneq ($(CONFIG_TARGET_xburst_qi_lb60),)
|
ifneq ($(CONFIG_TARGET_xburst_qi_lb60),)
|
||||||
|
UBI_OPTS = -m 4096 -p 512KiB
|
||||||
UBIFS_OPTS = -m 4096 -e 516096 -c 4095
|
UBIFS_OPTS = -m 4096 -e 516096 -c 4095
|
||||||
UBINIZE_OPTS = -m 4096 -p 512KiB
|
|
||||||
else
|
else
|
||||||
|
UBI_OPTS = -m 2048 -p 128KiB -s 512
|
||||||
UBIFS_OPTS = -m 2048 -e 126KiB -c 4096
|
UBIFS_OPTS = -m 2048 -e 126KiB -c 4096
|
||||||
UBINIZE_OPTS = -m 2048 -p 128KiB -s 512
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
UIMAGE:=$(BIN_DIR)/$(IMG_PREFIX)-uImage.bin
|
UIMAGE:=$(BIN_DIR)/$(IMG_PREFIX)-uImage.bin
|
||||||
|
|
Loading…
Reference in New Issue