diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2012-08-17 17:56:07 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2012-08-17 17:56:07 +0000 |
commit | 67e6461ad70d367fbd182911abe384a0b6f68a9a (patch) | |
tree | 867fac867359476865424cf2dd81e44d5069b502 /target/linux/ramips/files/arch | |
parent | 89606b61b1feaf9e9ba5b7344883a6bae30f8485 (diff) | |
download | upstream-67e6461ad70d367fbd182911abe384a0b6f68a9a.tar.gz upstream-67e6461ad70d367fbd182911abe384a0b6f68a9a.tar.bz2 upstream-67e6461ad70d367fbd182911abe384a0b6f68a9a.zip |
ramips: add board alias for the ALL0239-3G
Generate image for the ALL0239-3G which can be flashed through the
chipset-vendor SDK based firmware's web-interface and bootloader.
The bootloader seems to ignore uImage checksum errors, but does complain about
them once the 0xDEADC0DE was replaced by an actual JFFS2 page.
I'm working on implementing fixtrx for uImage in the mtd package to solve this.
Signed-off-by: Daniel Golle <dgolle@allnet.de>
SVN-Revision: 33206
Diffstat (limited to 'target/linux/ramips/files/arch')
-rw-r--r-- | target/linux/ramips/files/arch/mips/include/asm/mach-ralink/machine.h | 1 | ||||
-rw-r--r-- | target/linux/ramips/files/arch/mips/ralink/rt305x/mach-hw550-3g.c | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/target/linux/ramips/files/arch/mips/include/asm/mach-ralink/machine.h b/target/linux/ramips/files/arch/mips/include/asm/mach-ralink/machine.h index d09bd4101d..89b437398e 100644 --- a/target/linux/ramips/files/arch/mips/include/asm/mach-ralink/machine.h +++ b/target/linux/ramips/files/arch/mips/include/asm/mach-ralink/machine.h @@ -35,6 +35,7 @@ enum ramips_mach_type { RAMIPS_MACH_WL_330N3G, /* Asus WL-330N3G */ /* RT3052 based machines */ + RAMIPS_MACH_ALL0239_3G, /* ALL0239-3G */ RAMIPS_MACH_ARGUS_ATP52B, /* Argus ATP-52B */ RAMIPS_MACH_BC2, /* NexAira BC2 */ RAMIPS_MACH_DAP_1350, /* D-Link DAP-1350 */ diff --git a/target/linux/ramips/files/arch/mips/ralink/rt305x/mach-hw550-3g.c b/target/linux/ramips/files/arch/mips/ralink/rt305x/mach-hw550-3g.c index 4ebcefd523..b274b917da 100644 --- a/target/linux/ramips/files/arch/mips/ralink/rt305x/mach-hw550-3g.c +++ b/target/linux/ramips/files/arch/mips/ralink/rt305x/mach-hw550-3g.c @@ -100,3 +100,6 @@ static void __init hw550_3g_init(void) MIPS_MACHINE(RAMIPS_MACH_HW550_3G, "HW550-3G", "Aztech HW550-3G", hw550_3g_init); + +MIPS_MACHINE(RAMIPS_MACH_ALL0239_3G, "ALL0239-3G", "Allnet ALL0239-3G", + hw550_3g_init); |