diff options
author | Luka Perkov <luka@openwrt.org> | 2014-02-11 02:07:47 +0000 |
---|---|---|
committer | Luka Perkov <luka@openwrt.org> | 2014-02-11 02:07:47 +0000 |
commit | 6814fa6218483530f110058bce5071aef5f42142 (patch) | |
tree | 27c994ced67044081ea434576e2e5ab70ef938db /target/linux/mvebu/base-files/lib/mvebu.sh | |
parent | e2d912ff14cbd9d6eb7b78a39cbd402383629bb2 (diff) | |
download | upstream-6814fa6218483530f110058bce5071aef5f42142.tar.gz upstream-6814fa6218483530f110058bce5071aef5f42142.tar.bz2 upstream-6814fa6218483530f110058bce5071aef5f42142.zip |
mvebu: add support for the Armada XP GP board (DB-MV784MP-GP)
This Armada XP GP board from Marvell comes with:
* 2GB DDR3 DIMM
* 1GB NAND flash (8-bit interface)
* 16MB NOR flash (16-bot interrface)
* 16MB SPI flash
* SDIO module
* 3 PCIe
* 1 SATA link
* 2 USB EHCI
* 1 internal SSD
* 4 Ethernet Gigabit
* 1 RS232 port over USB
Signed-off-by: Seif Mazareeb <seif.mazareeb@gmail.com>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@39568 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/mvebu/base-files/lib/mvebu.sh')
-rw-r--r-- | target/linux/mvebu/base-files/lib/mvebu.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/target/linux/mvebu/base-files/lib/mvebu.sh b/target/linux/mvebu/base-files/lib/mvebu.sh index 727b6b586a..5bc35ef328 100644 --- a/target/linux/mvebu/base-files/lib/mvebu.sh +++ b/target/linux/mvebu/base-files/lib/mvebu.sh @@ -28,6 +28,9 @@ mvebu_board_detect() { *"PlatHome OpenBlocks AX3-4 board") name="openblocks-ax3-4" ;; + *"Marvell Armada XP GP Board") + name="armada-xp-gp" + ;; esac [ -z "$name" ] && name="unknown" |