From de2c2b0b71d6c61d6070c5594ac9a73d7c69dc8a Mon Sep 17 00:00:00 2001 From: lars Date: Fri, 5 Mar 2010 04:15:51 +0000 Subject: [xburst] Add subtarget for each device git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19986 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- target/linux/xburst/image/Makefile | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) (limited to 'target/linux/xburst/image/Makefile') diff --git a/target/linux/xburst/image/Makefile b/target/linux/xburst/image/Makefile index dcc97e765..0947db054 100644 --- a/target/linux/xburst/image/Makefile +++ b/target/linux/xburst/image/Makefile @@ -9,8 +9,23 @@ include $(INCLUDE_DIR)/image.mk JFFS2_BLOCKSIZE=256k 512k +ifneq ($(CONFIG_TARGET_QI_LB60),) UBIFS_OPTS = -m 4096 -e 516096 -c 4095 UBINIZE_OPTS = -m 4096 -p 512KiB +else +UBIFS_OPTS = -m 2048 -e 126KiB -c 4096 +UBINIZE_OPTS = -m 2048 -p 128KiB -s 512 +endif + +ifneq ($(CONFIG_XBURST_UBOOT),) + define Build/Clean + $(MAKE) -C u-boot clean + endef + + define Build/Compile + $(MAKE) -C u-boot compile + endef +endif define Image/BuildKernel cp $(KDIR)/linux-$(LINUX_VERSION)/arch/mips/boot/uImage $(BIN_DIR)/openwrt-$(BOARD)-uImage.bin @@ -21,8 +36,7 @@ define Image/Build/squashfs endef define Image/Build - $(call Image/Build/$(1)) - dd if=$(KDIR)/root.$(1) of=$(BIN_DIR)/openwrt-$(BOARD)-root.$(1) bs=128k conv=sync + dd if=$(KDIR)/root.$(1) of=$(BIN_DIR)/openwrt-$(BOARD)-$(SUBTARGET)-root.$(1) bs=128k conv=sync endef $(eval $(call BuildImage)) -- cgit v1.2.3