2
0
forked from Ivasoft/openwrt

add VG3503J support

this adds basic support. the bootloader on these units is locked down.

until we have a replacement we can do basic testing with these env variables in uboot.

set update_openwrt erase 0xb0020000 0xb073ffff \;tftp 0x81000000 openwrt-lantiq-xway-VG3503J-squashfs.image\;cp.b 0x81000000 0xb0020000 \$(filesize)
set bootcmd cp.b 0xb0020000 0x80002000 0x400000\; go 0x80002000

unfortunatley the bootloader ignores the bootcmd, so autobooting is not possible yet. you need to call "run bootcmd" by hand after each power cycle.

please note that the vdsl firmware is non redistributable. you can find it in the GPL drop that BT provides.

Signed-off-by: John Crispin <blogic@openwrt.org>

SVN-Revision: 36315
This commit is contained in:
John Crispin
2013-04-11 19:18:07 +00:00
parent fbc1e3732b
commit d5f87e193c
3 changed files with 217 additions and 0 deletions

View File

@@ -114,3 +114,11 @@ define Profile/ARV752DPW22
endef
$(eval $(call Profile,ARV752DPW22))
define Profile/VG3503J
NAME:=BT Openreach - ECI VDSL Modem
PACKAGES:=kmod-ltq-vdsl-vr9-mei kmod-ltq-vdsl-vr9 \
kmod-ltq-ptm-vr9 ltq-vdsl-app
endef
$(eval $(call Profile,VG3503J))