summaryrefslogtreecommitdiff
path: root/target
diff options
context:
space:
mode:
authorJonas Gorski <jogo@openwrt.org>2014-08-11 11:36:59 +0000
committerJonas Gorski <jogo@openwrt.org>2014-08-11 11:36:59 +0000
commit79057c72551647fdb5ebaac28eccd6b21e28ddca (patch)
treea76aef5f8a86d7425b6a377d5a5fcf0c54241b73 /target
parentaa572fccb55a392323c8f708233ba1bb2f2181e3 (diff)
downloadmtk-20170518-79057c72551647fdb5ebaac28eccd6b21e28ddca.zip
mtk-20170518-79057c72551647fdb5ebaac28eccd6b21e28ddca.tar.gz
mtk-20170518-79057c72551647fdb5ebaac28eccd6b21e28ddca.tar.bz2
brcm63xx: add helpers for building cfe images with dtb
Add a helper for building images with dtb appended kernels. Signed-off-by: Jonas Gorski <jogo@openwrt.org> SVN-Revision: 42122
Diffstat (limited to 'target')
-rwxr-xr-xtarget/linux/brcm63xx/image/Makefile24
1 files changed, 24 insertions, 0 deletions
diff --git a/target/linux/brcm63xx/image/Makefile b/target/linux/brcm63xx/image/Makefile
index 705515c..eb53c8c 100755
--- a/target/linux/brcm63xx/image/Makefile
+++ b/target/linux/brcm63xx/image/Makefile
@@ -33,6 +33,8 @@ endef
TARGET_DTBS:=
+TARGET_IMAGES:=
+
define Image/Build/CFE
# Generate the tagged image
$(STAGING_DIR_HOST)/bin/imagetag -i $(KDIR)/vmlinux.lzma.cfe -f $(KDIR)/root.$(1) \
@@ -43,6 +45,16 @@ define Image/Build/CFE
$(6) $(7) $(8) $(9)
endef
+define Image/Build/CFEDTB
+ # Generate the tagged image
+ $(STAGING_DIR_HOST)/bin/imagetag -i $(KDIR)/vmlinux-$(2).lzma.cfe -f $(KDIR)/root.$(1) \
+ --output $(BIN_DIR)/openwrt-$(5)-$(1)-cfe.bin \
+ --boardid $(3) --chipid $(4) --entry $(KERNEL_ENTRY) \
+ --load-addr $(LOADADDR) --rsa-signature "$(6)" \
+ --info1 "-$(call Image/LimitName16,$(5))" --info2 $(1) \
+ $(7) $(8) $(9) $(10)
+endef
+
define Image/Build/CFEFIXUP
# Generate the tagged image
$(STAGING_DIR_HOST)/bin/imagetag -i $(KDIR)/vmlinux.lzma.cfe -f $(KDIR)/root.$(1) \
@@ -208,6 +220,15 @@ define Image/Build/Initramfs
$(call Image/Build/HCS,initramfs,cvg834g,a020,0001,0022,$(KDIR)/vmlinux-initramfs)
endef
+define CfeImageDTB
+ define Image/Build/$(4)
+ $$(call Image/Build/CFEDTB,$$(1),$(1),$(2),$(3),$(4),$(5),$(6))
+ endef
+
+ TARGET_DTBS += $(1)
+ TARGET_IMAGES += $(4)
+endef
+
define Image/Build
dd if=$(KDIR)/root.$(1) of=$(BIN_DIR)/$(IMG_PREFIX)-root.$(1) bs=128k conv=sync
# Various routers
@@ -359,6 +380,9 @@ define Image/Build
# Netgear CVG834G
$(call Image/Build/HCS,$(1),cvg834g,a020,0001,0022,$(KDIR)/vmlinux)
+ # build dtb image list
+ $(foreach image,$(TARGET_IMAGES),$(call Image/Build/$(image),$(1)))
+
ifeq ($(CONFIG_TARGET_ROOTFS_INITRAMFS),y)
$(call Image/Build/Initramfs)
endif