From: Hauke Mehrtens Date: Sun, 6 Jul 2014 17:14:06 +0000 (+0000) Subject: brcm47xx: image: prepare for using mips74k subtarget X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=c3b3df1da810cdb361acf5e87b56413df81f4fe7;p=librecmc%2Flibrecmc.git brcm47xx: image: prepare for using mips74k subtarget Signed-off-by: Rafał Miłecki SVN-Revision: 41528 --- diff --git a/target/linux/brcm47xx/image/Makefile b/target/linux/brcm47xx/image/Makefile index 9f06e0f541..a5c7240c97 100644 --- a/target/linux/brcm47xx/image/Makefile +++ b/target/linux/brcm47xx/image/Makefile @@ -163,6 +163,26 @@ define Image/Build/generic/squashfs $(call Image/Build/generic/jffs2-128k,$(1)) endef +################################################# +# Subtarget mips74k +################################################# + +# $(1): filesystem type. +define Image/Build/mips74k/jffs2-64k + $(call Image/Build/mips74k/devices-with-64k-blocks,$(1)) +endef + +# $(1): filesystem type. +define Image/Build/mips74k/jffs2-128k + $(call Image/Build/mips74k/devices-with-128k-blocks,$(1)) +endef + +# $(1): filesystem type. +define Image/Build/mips74k/squashfs + $(call Image/Build/mips74k/devices-with-64k-blocks,$(1)) + $(call Image/Build/mips74k/devices-with-128k-blocks,$(1)) +endef + ################################################# # Shared BuildImage defines #################################################