diff options
author | Jonas Gorski <jogo@openwrt.org> | 2014-10-02 12:25:01 +0000 |
---|---|---|
committer | Jonas Gorski <jogo@openwrt.org> | 2014-10-02 12:25:01 +0000 |
commit | eaee4e3eb7b4a50d1f5691330cf812264b310970 (patch) | |
tree | dd31f0d775fcf356b827b310445504117e73fc11 /target | |
parent | 73d59ed6751d7979d8a72360782b45ce19ae1fbf (diff) | |
download | upstream-eaee4e3eb7b4a50d1f5691330cf812264b310970.tar.gz upstream-eaee4e3eb7b4a50d1f5691330cf812264b310970.tar.bz2 upstream-eaee4e3eb7b4a50d1f5691330cf812264b310970.zip |
brcm63xx: Add DT support for 96348GW-10
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
Signed-off-by: Jonas Gorski <jogo@openwrt.org>
SVN-Revision: 42730
Diffstat (limited to 'target')
-rw-r--r-- | target/linux/brcm63xx/dts/bcm96348GW-10.dts | 8 | ||||
-rwxr-xr-x | target/linux/brcm63xx/image/Makefile | 3 | ||||
-rw-r--r-- | target/linux/brcm63xx/profiles/01-generic.mk | 9 |
3 files changed, 19 insertions, 1 deletions
diff --git a/target/linux/brcm63xx/dts/bcm96348GW-10.dts b/target/linux/brcm63xx/dts/bcm96348GW-10.dts new file mode 100644 index 0000000000..172ee62e78 --- /dev/null +++ b/target/linux/brcm63xx/dts/bcm96348GW-10.dts @@ -0,0 +1,8 @@ +/dts-v1/; + +/include/ "bcm6348.dtsi" + +/ { + model = "Broadcom BCM96348GW-10 reference board"; + compatible = "brcm,bcm96348gw-10", "brcm,bcm6348"; +}; diff --git a/target/linux/brcm63xx/image/Makefile b/target/linux/brcm63xx/image/Makefile index 3e5e4c14f3..ddd24358ea 100755 --- a/target/linux/brcm63xx/image/Makefile +++ b/target/linux/brcm63xx/image/Makefile @@ -238,7 +238,6 @@ define Image/Build $(call Image/Build/CFE,$(1),6338GW,6338,6338GW-generic,,) $(call Image/Build/CFE,$(1),6338W,6338,6338W-generic,,) $(call Image/Build/CFE,$(1),96348GW-11,6348,96348GW-11-generic) - $(call Image/Build/CFE,$(1),96348GW-10,6348,96348GW-10-generic) $(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) @@ -343,6 +342,8 @@ $(eval $(call CfeImageDTB,96345GW2,bcm96345GW2,96345GW2,6345,96345GW2-bc221,,--l # Generic 96348GW $(eval $(call CfeImageDTB,96348GW,bcm96348GW,96348GW,6348,96348GW-generic)) $(eval $(call CfeImageDTB,96348GW,bcm96348GW,96348GW,6348,96348GW-bc221,,--layoutver 5)) +# Generic 96348GW-10 +$(eval $(call CfeImageDTB,96348GW_10,bcm96348GW-10,96348GW-10,6348,96348GW-10-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 481136e197..a8b3424eff 100644 --- a/target/linux/brcm63xx/profiles/01-generic.mk +++ b/target/linux/brcm63xx/profiles/01-generic.mk @@ -40,3 +40,12 @@ define Profile/96348GW/Description Package set optimized for 96348GW. endef $(eval $(call Profile,96348GW)) + +define Profile/96348GW_10 + NAME:=Generic 96348GW-10 + PACKAGES:= +endef +define Profile/96348GW_10/Description + Package set optimized for 96348GW-10. +endef +$(eval $(call Profile,96348GW_10)) |