diff options
author | Rafał Miłecki <zajec5@gmail.com> | 2016-02-01 12:43:04 +0000 |
---|---|---|
committer | Rafał Miłecki <zajec5@gmail.com> | 2016-02-01 12:43:04 +0000 |
commit | 8095667532fb0c4acd183d3c39d1b9863cf0dc59 (patch) | |
tree | cf4c82a58f2667bc0e04174a8675af2ecf829fc5 | |
parent | 88deb4aec1d73c26ce948ad1995ed5791dd34689 (diff) | |
download | upstream-8095667532fb0c4acd183d3c39d1b9863cf0dc59.tar.gz upstream-8095667532fb0c4acd183d3c39d1b9863cf0dc59.tar.bz2 upstream-8095667532fb0c4acd183d3c39d1b9863cf0dc59.zip |
bcm53xx: build D-Link DIR-885L image
Signed-off-by: Rafał Miłecki <zajec5@gmail.com>
SVN-Revision: 48606
-rw-r--r-- | target/linux/bcm53xx/image/Makefile | 33 |
1 files changed, 32 insertions, 1 deletions
diff --git a/target/linux/bcm53xx/image/Makefile b/target/linux/bcm53xx/image/Makefile index d9d4a80fa1..4d5f082bdf 100644 --- a/target/linux/bcm53xx/image/Makefile +++ b/target/linux/bcm53xx/image/Makefile @@ -60,7 +60,24 @@ define Build/asus-trx mv $@.new $@ endef -DEVICE_VARS += DT PRODUCTID NETGEAR_BOARD_ID NETGEAR_REGION +define Build/seama-nand + # Seama entity + $(STAGING_DIR_HOST)/bin/oseama \ + entity $@.entity \ + -m "dev=/dev/mtdblock/7" \ + -m "type=firmware" \ + -f $(word 1,$^) \ + -b 0x400000 \ + -f $(KDIR)/root-block-0x20000-min-0x800.ubi \ + -f $(KDIR)/ubi_mark + # Seama container + $(STAGING_DIR_HOST)/bin/seama \ + -s $@ \ + -m "signature=$(SIGNATURE)" \ + -i $@.entity +endef + +DEVICE_VARS += DT PRODUCTID SIGNATURE NETGEAR_BOARD_ID NETGEAR_REGION define Device/Default # .dtb files are prefixed by SoC type, e.g. bcm4708- which is not included in device/image names @@ -100,6 +117,19 @@ define LinksysDevice TARGET_DEVICES += linksys-$(1) endef +define Device/dlink + IMAGES := bin + IMAGE/bin := seama-nand +endef + +define DLinkDevice + define Device/dlink-$(1) + $$(Device/dlink) + SIGNATURE := $(2) + endef + TARGET_DEVICES += dlink-$(1) +endef + define Device/netgear IMAGES := chk IMAGE/chk := trx-nand | netgear-chk @@ -144,6 +174,7 @@ $(eval $(call AsusDevice,rt-ac56u,RT-AC56U)) $(eval $(call AsusDevice,rt-ac68u,RT-AC68U)) $(eval $(call AsusDevice,rt-ac87u,RT-AC87U)) $(eval $(call AsusDevice,rt-n18u,RT-N18U)) +$(eval $(call DLinkDevice,dir-885l,wrgac42_dlink.2015_dir885l)) $(eval $(call LinksysDevice,ea6300-v1)) $(eval $(call NetgearDevice,r7000,U12H270T00_NETGEAR)) |