[openwrt/openwrt] uboot-envtools: add env settings for ubnt, unifi-6-lr-ubootmod
LEDE Commits
lede-commits at lists.infradead.org
Fri Apr 9 16:05:26 BST 2021
dangole pushed a commit to openwrt/openwrt.git, branch master:
https://git.openwrt.org/be41fd9489b6bf900b67d0eb8c9b9f95da35b75c
commit be41fd9489b6bf900b67d0eb8c9b9f95da35b75c
Author: Daniel Golle <daniel at makrotopia.org>
AuthorDate: Sun Apr 4 17:16:42 2021 +0100
uboot-envtools: add env settings for ubnt,unifi-6-lr-ubootmod
Add settings for fw_printenv/fw_setenv for the Ubiquiti UniFi 6 LR
when running OpenWrt's version of U-Boot. The settings should work
equally with the unmodified version, but that has not yet been
tested.
Signed-off-by: Daniel Golle <daniel at makrotopia.org>
---
package/boot/uboot-envtools/files/mediatek | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/package/boot/uboot-envtools/files/mediatek b/package/boot/uboot-envtools/files/mediatek
index 4db1c6ef4d..e206b7442b 100644
--- a/package/boot/uboot-envtools/files/mediatek
+++ b/package/boot/uboot-envtools/files/mediatek
@@ -13,11 +13,11 @@ touch /etc/config/ubootenv
board=$(board_name)
case "$board" in
-"linksys,e8450-ubi")
+linksys,e8450-ubi)
ubootenv_add_uci_config "/dev/ubi0_0" "0x0" "0x1f000" "0x1f000" "1"
ubootenv_add_uci_config "/dev/ubi0_1" "0x0" "0x1f000" "0x1f000" "1"
;;
-"bananapi,bpi-r64")
+bananapi,bpi-r64)
. /lib/upgrade/platform.sh
local rootdev=$(get_rootdev)
local envdev=/dev/$(get_partition $rootdev ubootenv)
@@ -27,6 +27,9 @@ case "$board" in
buffalo,wsr-2533dhp2)
ubootenv_add_uci_config "/dev/mtd3" "0x0" "0x1000" "0x20000"
;;
+ubnt,unifi-6-lr-ubootmod)
+ ubootenv_add_uci_config "/dev/mtd2" "0x0" "0x1000" "0x10000"
+ ;;
esac
config_load ubootenv
More information about the lede-commits
mailing list