diff options
author | Lars-Peter Clausen <lars@metafoo.de> | 2010-03-05 04:15:51 +0000 |
---|---|---|
committer | Lars-Peter Clausen <lars@metafoo.de> | 2010-03-05 04:15:51 +0000 |
commit | f1afccc2d9b644d94efceb99a9f30f4ec4c5a7fb (patch) | |
tree | be581c236a7ea5479c968e5975c9bab519c27292 /target/linux/xburst/image | |
parent | d77662c7a36d68d45e0d6d362d2eb88d6db2e545 (diff) | |
download | upstream-f1afccc2d9b644d94efceb99a9f30f4ec4c5a7fb.tar.gz upstream-f1afccc2d9b644d94efceb99a9f30f4ec4c5a7fb.tar.bz2 upstream-f1afccc2d9b644d94efceb99a9f30f4ec4c5a7fb.zip |
Add subtarget for each device
SVN-Revision: 19986
Diffstat (limited to 'target/linux/xburst/image')
-rw-r--r-- | target/linux/xburst/image/Makefile | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/target/linux/xburst/image/Makefile b/target/linux/xburst/image/Makefile index dcc97e7657..0947db0549 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)) |