mirror of
				git://git.openwrt.org/openwrt/openwrt.git
				synced 2025-11-03 14:34:27 -05:00 
			
		
		
		
	This has been tested on two of my Unifi 6 LR v2s: ```bash $ fw_printenv # before Cannot parse config file '/etc/fw_env.config': No such file or directory $ cat /etc/fw_env.config /dev/mtd3 0x0000 0x1000 0x1000 1 $ fw_printenv arch=arm baudrate=115200 board=mt7622_evb board_name=mt7622_evb bootcmd=bootubnt bootdelay=3 bootfile=uImage cpu=armv7 device_model=U6-LR ethact=mtk_eth ethaddr=<redacted> ethcard=AQR112C ipaddr=<redacted> is_default=true loadaddr=0x5007FF28 macaddr=<redacted> serverip=<redacted> soc=mt7622 stderr=serial stdin=serial stdout=serial vendor=mediatek is_ble_stp=true ``` I had to reverse-engineer the working settings above to the UCI script. Signed-off-by: Joel Low <joel@joelsplace.sg> Link: https://github.com/openwrt/openwrt/pull/13897 Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
		
			
				
	
	
		
			72 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			72 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
#
 | 
						|
# Copyright (C) 2021 OpenWrt.org
 | 
						|
#
 | 
						|
 | 
						|
[ -e /etc/config/ubootenv ] && exit 0
 | 
						|
 | 
						|
touch /etc/config/ubootenv
 | 
						|
 | 
						|
. /lib/uboot-envtools.sh
 | 
						|
. /lib/functions.sh
 | 
						|
 | 
						|
ubootenv_add_mmc_default() {
 | 
						|
	local envdev="$(find_mmc_part "ubootenv" "${1:-mmcblk0}")"
 | 
						|
	ubootenv_add_uci_config "$envdev" "0x0" "0x80000" "0x80000" "1"
 | 
						|
	ubootenv_add_uci_config "$envdev" "0x80000" "0x80000" "0x80000" "1"
 | 
						|
}
 | 
						|
 | 
						|
ubootenv_add_ubi_default() {
 | 
						|
	. /lib/upgrade/nand.sh
 | 
						|
	local envubi=$(nand_find_ubi ubi)
 | 
						|
	local envdev=/dev/$(nand_find_volume $envubi ubootenv)
 | 
						|
	local envdev2=/dev/$(nand_find_volume $envubi ubootenv2)
 | 
						|
	ubootenv_add_uci_config "$envdev" "0x0" "0x1f000" "0x1f000" "1"
 | 
						|
	ubootenv_add_uci_config "$envdev2" "0x0" "0x1f000" "0x1f000" "1"
 | 
						|
}
 | 
						|
 | 
						|
board=$(board_name)
 | 
						|
 | 
						|
case "$board" in
 | 
						|
dlink,eagle-pro-ai-m32-a1|\
 | 
						|
dlink,eagle-pro-ai-r32-a1)
 | 
						|
	ubootenv_add_uci_config "/dev/mtd3" "0x0" "0x2000" "0x2000"
 | 
						|
	;;
 | 
						|
linksys,e8450-ubi)
 | 
						|
	ubootenv_add_ubi_default
 | 
						|
	;;
 | 
						|
bananapi,bpi-r64)
 | 
						|
	. /lib/upgrade/common.sh
 | 
						|
	bootdev="$(fitblk_get_bootdev)"
 | 
						|
	case "$bootdev" in
 | 
						|
	mmc*)
 | 
						|
		ubootenv_add_mmc_default "${bootdev%p[0-9]*}"
 | 
						|
		;;
 | 
						|
	ubi*)
 | 
						|
		ubootenv_add_ubi_default
 | 
						|
		;;
 | 
						|
	esac
 | 
						|
	;;
 | 
						|
buffalo,wsr-2533dhp2)
 | 
						|
	ubootenv_add_uci_config "/dev/mtd3" "0x0" "0x1000" "0x20000"
 | 
						|
	;;
 | 
						|
ruijie,rg-ew3200gx-pro)
 | 
						|
	ubootenv_add_uci_config "/dev/mtd3" "0x0" "0x20000" "0x20000"
 | 
						|
	;;
 | 
						|
ubnt,unifi-6-lr-v1-ubootmod|\
 | 
						|
ubnt,unifi-6-lr-v2-ubootmod|\
 | 
						|
ubnt,unifi-6-lr-v3-ubootmod)
 | 
						|
	ubootenv_add_uci_config "/dev/mtd$(find_mtd_index "u-boot-env")" "0x0" "0x4000" "0x1000"
 | 
						|
	;;
 | 
						|
ubnt,unifi-6-lr-v2)
 | 
						|
	ubootenv_add_uci_config "/dev/mtd3" "0x0" "0x1000" "0x1000" "1"
 | 
						|
	;;
 | 
						|
xiaomi,redmi-router-ax6s)
 | 
						|
	ubootenv_add_uci_config "/dev/mtd3" "0x0" "0x10000" "0x40000"
 | 
						|
	;;
 | 
						|
esac
 | 
						|
 | 
						|
config_load ubootenv
 | 
						|
config_foreach ubootenv_add_app_config ubootenv
 | 
						|
 | 
						|
exit 0
 |