diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2008-12-26 20:12:42 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2008-12-26 20:12:42 +0000 |
commit | 7abf10d6e6905af7c25f7dd23ed28dd2b7e574ff (patch) | |
tree | f3cde94b0684956e1faedb52a8f0c284b8cf3bb2 | |
parent | 76ec5d14cfb6ff4b7dca8ba2121b58016494f1a5 (diff) | |
download | upstream-7abf10d6e6905af7c25f7dd23ed28dd2b7e574ff.tar.gz upstream-7abf10d6e6905af7c25f7dd23ed28dd2b7e574ff.tar.bz2 upstream-7abf10d6e6905af7c25f7dd23ed28dd2b7e574ff.zip |
add Ubiquiti board detection
SVN-Revision: 13745
-rw-r--r-- | target/linux/ar71xx/files/arch/mips/ar71xx/prom.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/target/linux/ar71xx/files/arch/mips/ar71xx/prom.c b/target/linux/ar71xx/files/arch/mips/ar71xx/prom.c index 1b7b3a750a..005d84acf9 100644 --- a/target/linux/ar71xx/files/arch/mips/ar71xx/prom.c +++ b/target/linux/ar71xx/files/arch/mips/ar71xx/prom.c @@ -52,6 +52,12 @@ static struct board_rec boards[] __initdata = { }, { .name = "TEW-632BRP", .mach_type = AR71XX_MACH_TEW_632BRP, + }, { + .name = "UBNT-RS", + .mach_type = AR71XX_MACH_UBNT_RS, + }, { + .name = "UBNT-LSX", + .mach_type = AR71XX_MACH_UBNT_LSX, } }; |