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 | fed5f4f11f54f7ac6e60f676d10f17a339a7ee30 (patch) | |
tree | f1ccdfbea4d264b9dca114a732c683de17914216 /target/linux/xburst/image/Makefile | |
parent | 221422bfacf5b91ed1b00a1275bfaabbbd2139b3 (diff) | |
download | upstream-fed5f4f11f54f7ac6e60f676d10f17a339a7ee30.tar.gz upstream-fed5f4f11f54f7ac6e60f676d10f17a339a7ee30.tar.bz2 upstream-fed5f4f11f54f7ac6e60f676d10f17a339a7ee30.zip |
[xburst] Add subtarget for each device
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19986 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/xburst/image/Makefile')
-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)) |