mirror of
				git://git.openwrt.org/openwrt/openwrt.git
				synced 2025-11-04 06:54:27 -05:00 
			
		
		
		
	IPQ806x AP148 and DB149 boards didn't have the UCI ubootenv section initialized, so the usage of fw_printenv required manual configuration. With this change, the "fw_printenv" and "fw_setenv" command will automatically work on NOR and NAND based platforms. Signed-off-by: Ram Chandra Jangir <rjangir@codeaurora.org>
		
			
				
	
	
		
			49 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			49 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Bash
		
	
	
	
	
	
#!/bin/sh
 | 
						|
#
 | 
						|
# Copyright (C) 2016 LEDE
 | 
						|
#
 | 
						|
 | 
						|
[ -e /etc/config/ubootenv ] && exit 0
 | 
						|
 | 
						|
touch /etc/config/ubootenv
 | 
						|
 | 
						|
. /lib/uboot-envtools.sh
 | 
						|
. /lib/functions.sh
 | 
						|
 | 
						|
board=$(board_name)
 | 
						|
 | 
						|
ubootenv_mtdinfo () {
 | 
						|
	UBOOTENV_PART=$(cat /proc/mtd | grep APPSBLENV)
 | 
						|
	mtd_dev=$(echo $UBOOTENV_PART | awk '{print $1}' | sed 's/:$//')
 | 
						|
	mtd_size=$(echo $UBOOTENV_PART | awk '{print "0x"$2}')
 | 
						|
	mtd_erase=$(echo $UBOOTENV_PART | awk '{print "0x"$3}')
 | 
						|
	nor_flash=$(find /sys/bus/spi/devices/*/mtd -name ${mtd_dev})
 | 
						|
 | 
						|
	if [ -n "$nor_flash" ]; then
 | 
						|
		ubootenv_size=$mtd_size
 | 
						|
	else
 | 
						|
		# size is fixed to 0x40000 in u-boot
 | 
						|
		ubootenv_size=0x40000
 | 
						|
	fi
 | 
						|
 | 
						|
	sectors=$(( $ubootenv_size / $mtd_erase ))
 | 
						|
	echo /dev/$mtd_dev 0x0 $ubootenv_size $mtd_erase $sectors
 | 
						|
}
 | 
						|
 | 
						|
case "$board" in
 | 
						|
ap148 | db149)
 | 
						|
	ubootenv_add_uci_config $(ubootenv_mtdinfo)
 | 
						|
	;;
 | 
						|
ea8500)
 | 
						|
	ubootenv_add_uci_config "/dev/mtd10" "0x0" "0x20000" "0x20000"
 | 
						|
	;;
 | 
						|
nbg6817)
 | 
						|
	ubootenv_add_uci_config "/dev/mtdblock9" "0x0" "0x10000" "0x10000"
 | 
						|
	;;
 | 
						|
esac
 | 
						|
 | 
						|
config_load ubootenv
 | 
						|
config_foreach ubootenv_add_app_config ubootenv
 | 
						|
 | 
						|
exit 0
 |