 201d3d1a82
			
		
	
	201d3d1a82
	
	
	
		
			
			- Former "mir3g" board name becomes "xiaomi,mir3g". - Reorder some entries to maintain alphabetical order. - Change DTS so status LEDs (yellow/red/blue) mimic Xiaomi stock firmware: (Section Indicator) <http://files.xiaomi-mi.co.uk/files/router_pro/router%20PRO%20EN.pdf> <http://files.xiaomi-mi.co.uk/files/Mi_WiFi_router_3/MiWiFi_router3_EN.pdf> |Yellow: Update (LED flickering), the launch of the system (steady light); |Blue: during normal operation (steady light); |Red: Safe mode (display flicker), system failure (steady light); Signed-off-by: Ozgur Can Leonard <ozgurcan@gmail.com> [Added link to similar Router 3 model] Signed-off-by: Christian Lamparter <chunkeey@gmail.com>
		
			
				
	
	
		
			44 lines
		
	
	
		
			759 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			44 lines
		
	
	
		
			759 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| #!/bin/sh
 | |
| #
 | |
| # Copyright (C) 2011-2012 OpenWrt.org
 | |
| #
 | |
| 
 | |
| [ -e /etc/config/ubootenv ] && exit 0
 | |
| 
 | |
| touch /etc/config/ubootenv
 | |
| 
 | |
| . /lib/uboot-envtools.sh
 | |
| . /lib/functions.sh
 | |
| 
 | |
| board=$(board_name)
 | |
| 
 | |
| case "$board" in
 | |
| alfa-network,ac1200rm|\
 | |
| alfa-network,awusfree1|\
 | |
| alfa-network,tube-e4g)
 | |
| 	ubootenv_add_uci_config "/dev/mtd1" "0x0" "0x1000" "0x1000"
 | |
| 	;;
 | |
| all0256n-4M|\
 | |
| all0256n-8M|\
 | |
| all5002)
 | |
| 	ubootenv_add_uci_config "/dev/mtd1" "0x0" "0x10000" "0x10000"
 | |
| 	;;
 | |
| linkits7688|\
 | |
| miwifi-nano|\
 | |
| sk-wb8|\
 | |
| wsr-1166|\
 | |
| wsr-600|\
 | |
| zbt-wg2626)
 | |
| 	ubootenv_add_uci_config "/dev/mtd1" "0x0" "0x1000" "0x10000"
 | |
| 	;;
 | |
| xiaomi,mir3p|\
 | |
| xiaomi,mir3g)
 | |
| 	ubootenv_add_uci_config "/dev/mtd1" "0x0" "0x1000" "0x20000"
 | |
| 	;;
 | |
| esac
 | |
| 
 | |
| config_load ubootenv
 | |
| config_foreach ubootenv_add_app_config ubootenv
 | |
| 
 | |
| exit 0
 |