From: Imre Kaloz Date: Thu, 5 Feb 2015 11:25:21 +0000 (+0000) Subject: mvebu: add a subprofile for boards based on a small NOR X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=commitdiff_plain;h=3318dab2e13f8ea4e2d5dceeb6eb6b0b2e3f5a05 mvebu: add a subprofile for boards based on a small NOR Some boards only come with a small NOR on it, where UBI isn't a good solution because of its overhead. Add a new subprofile for such boards, that rely on the mtd split framework instead. Signed-off-by: Maxime Ripard Signed-off-by: Imre Kaloz SVN-Revision: 44263 --- diff --git a/target/linux/mvebu/image/Makefile b/target/linux/mvebu/image/Makefile index 7076e876e0..a8fc4de134 100644 --- a/target/linux/mvebu/image/Makefile +++ b/target/linux/mvebu/image/Makefile @@ -76,6 +76,31 @@ define UBINORProfile PROFILES_LIST += $(1) endef +# $(1): Profile Name +# $(2): DTB Name +# $(3): Erase Block Size +define NORProfile + define Image/BuildKernel/Profile/$(1) + $(call Image/Build/DTB,$(2)) + ifneq ($(CONFIG_TARGET_ROOTFS_INITRAMFS),) + $(call Image/Build/Profile,$(1)/Initramfs) + endif + endef + + define Image/Build/Profile/$(1)/Initramfs + $(call Image/Build/DTB,$(2),-initramfs) + endef + + define Image/Build/Profile/$(1)/squashfs + ( \ + dd if=$(KDIR)/uImage-$(2) bs=$(3) conv=sync; \ + dd if=$(KDIR)/root.squashfs bs=$(3) conv=sync; \ + ) > $$(BIN_DIR)/$$(IMG_PREFIX)-$(2)-squashfs-firmware.bin + endef + + PROFILES_LIST += $(1) +endef + # $(1): Profile Name # $(2): Sub Profiles list define MultiProfile