diff options
author | Jonas Gorski <jogo@openwrt.org> | 2014-10-02 12:25:36 +0000 |
---|---|---|
committer | Jonas Gorski <jogo@openwrt.org> | 2014-10-02 12:25:36 +0000 |
commit | df73d94e0d393ad25bd06b6d4f9e7b2762611c03 (patch) | |
tree | 91ba17db65ba2858ad7e47a3e6fda6a36b3c2a7b | |
parent | ef4c63343cd7d8ca59a2b1a509c6bec87199504f (diff) | |
download | upstream-df73d94e0d393ad25bd06b6d4f9e7b2762611c03.tar.gz upstream-df73d94e0d393ad25bd06b6d4f9e7b2762611c03.tar.bz2 upstream-df73d94e0d393ad25bd06b6d4f9e7b2762611c03.zip |
brcm63xx: Add DT support for 96358VW
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
Signed-off-by: Jonas Gorski <jogo@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@42735 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r-- | target/linux/brcm63xx/dts/bcm96358VW.dts | 8 | ||||
-rwxr-xr-x | target/linux/brcm63xx/image/Makefile | 3 | ||||
-rw-r--r-- | target/linux/brcm63xx/profiles/01-generic.mk | 10 |
3 files changed, 20 insertions, 1 deletions
diff --git a/target/linux/brcm63xx/dts/bcm96358VW.dts b/target/linux/brcm63xx/dts/bcm96358VW.dts new file mode 100644 index 0000000000..a978d41392 --- /dev/null +++ b/target/linux/brcm63xx/dts/bcm96358VW.dts @@ -0,0 +1,8 @@ +/dts-v1/; + +/include/ "bcm6358.dtsi" + +/ { + model = "Broadcom BCM96358VW reference board"; + compatible = "brcm,bcm96358vw", "brcm,bcm6358"; +}; diff --git a/target/linux/brcm63xx/image/Makefile b/target/linux/brcm63xx/image/Makefile index 957ea9b326..ea3c4e6973 100755 --- a/target/linux/brcm63xx/image/Makefile +++ b/target/linux/brcm63xx/image/Makefile @@ -234,7 +234,6 @@ endef define Image/Build dd if=$(KDIR)/root.$(1) of=$(BIN_DIR)/$(IMG_PREFIX)-root.$(1) bs=128k conv=sync # Various routers - $(call Image/Build/CFE,$(1),96358VW,6358,96358VW-generic) $(call Image/Build/CFE,$(1),96358VW2,6358,96358VW2-generic) $(call Image/Build/CFE,$(1),96368MVNgr,6368,96368MVNgr-generic) $(call Image/Build/CFE,$(1),96368MVWG,6368,96368MVWG-generic) @@ -348,6 +347,8 @@ $(eval $(call CfeImageDTB,96348GW_10,bcm96348GW-10,96348GW-10,6348,96348GW-10-ge $(eval $(call CfeImageDTB,96348GW_11,bcm96348GW-11,96348GW-11,6348,96348GW-11-generic)) # Generic 96348R $(eval $(call CfeImageDTB,96348R,bcm96348R,96348R,6348,96348R-generic)) +# Generic 96358VW +$(eval $(call CfeImageDTB,96358VW,bcm96358VW,96358VW,6358,96358VW-generic)) # ADB P.DG A4001N $(eval $(call CfeImageDTB,A4001N,a4001n,96328dg2x2,6328,A4001N,,--pad 8)) diff --git a/target/linux/brcm63xx/profiles/01-generic.mk b/target/linux/brcm63xx/profiles/01-generic.mk index eb17f95f83..bfd4d64222 100644 --- a/target/linux/brcm63xx/profiles/01-generic.mk +++ b/target/linux/brcm63xx/profiles/01-generic.mk @@ -85,3 +85,13 @@ define Profile/96348R/Description Package set optimized for 96348R. endef $(eval $(call Profile,96348R)) + +define Profile/96358VW + NAME:=Generic 96358VW + PACKAGES:= +endef +define Profile/96358VW/Description + Package set optimized for 96358VW. +endef +$(eval $(call Profile,96358VW)) + |