diff options
author | John Crispin <blogic@openwrt.org> | 2014-07-13 07:17:54 +0000 |
---|---|---|
committer | John Crispin <blogic@openwrt.org> | 2014-07-13 07:17:54 +0000 |
commit | 4cb2ca86abed9e265560f97b15b8b6f49db89a18 (patch) | |
tree | 8d487e85fcec4d097812f4931a5365b3eb7930f2 | |
parent | dab35cf38589cd3f5a14b4bdc6ba4716d29e6986 (diff) | |
download | master-187ad058-4cb2ca86abed9e265560f97b15b8b6f49db89a18.tar.gz master-187ad058-4cb2ca86abed9e265560f97b15b8b6f49db89a18.tar.bz2 master-187ad058-4cb2ca86abed9e265560f97b15b8b6f49db89a18.zip |
lantiq: configure uboot-envtools on BTHOMEHUBV2B and make it work correctly on other lantiq boards
Generate the configuration file for uboot-envtools
on BTHOMEHUBV2B. Adds the specific parameters for the
BTHOMEHUBV2B and also fixes an incorrect path which
would have affected other lantiq boards as well
(currently only the GIGASX76X).
Signed-off-by: Ben Mulvihill <ben.mulvihill@gmail.com>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@41597 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r-- | package/boot/uboot-envtools/files/lantiq | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/package/boot/uboot-envtools/files/lantiq b/package/boot/uboot-envtools/files/lantiq index 40befc3680..69b375d685 100644 --- a/package/boot/uboot-envtools/files/lantiq +++ b/package/boot/uboot-envtools/files/lantiq @@ -7,7 +7,7 @@ touch /etc/config/ubootenv -. /lib/lantiq.sh +. /lib/functions/lantiq.sh . /lib/uboot-envtools.sh . /lib/functions.sh @@ -17,6 +17,9 @@ case "$board" in GIGASX76X) ubootenv_add_uci_config "/dev/mtd1" "0x0" "0x10000" "0x10000" "1" ;; +BTHOMEHUBV2B) + ubootenv_add_uci_config "/dev/mtd1" "0x0" "0x10000" "0x10000" "1" + ;; esac config_load ubootenv |