diff options
| -rwxr-xr-x | target/linux/ar71xx/base-files/etc/diag.sh | 3 | ||||
| -rwxr-xr-x | target/linux/ar71xx/base-files/lib/ar71xx.sh | 17 | 
2 files changed, 16 insertions, 4 deletions
diff --git a/target/linux/ar71xx/base-files/etc/diag.sh b/target/linux/ar71xx/base-files/etc/diag.sh index 0b8d9a73c..0ded6f4bc 100755 --- a/target/linux/ar71xx/base-files/etc/diag.sh +++ b/target/linux/ar71xx/base-files/etc/diag.sh @@ -63,6 +63,9 @@ get_status_led() {  	pb44)  		status_led="pb44:amber:jump1"  		;; +	rb-411 | rb-411u | rb-433 | rb-433u | rb-450 | rb-450g | rb-493) +		status_led="rb4xx:yellow:user" +		;;  	routerstation | routerstation-pro)  		status_led="ubnt:green:rf"  		;; diff --git a/target/linux/ar71xx/base-files/lib/ar71xx.sh b/target/linux/ar71xx/base-files/lib/ar71xx.sh index 1816bf856..b4612dc63 100755 --- a/target/linux/ar71xx/base-files/lib/ar71xx.sh +++ b/target/linux/ar71xx/base-files/lib/ar71xx.sh @@ -46,16 +46,25 @@ ar71xx_board_name() {  	*PB44)  		name="pb44"  		;; -	*RB-411) +	*"RouterBOARD 411/A/AH")  		name="rb-411"  		;; -	*RB-433) +	*"RouterBOARD 411U") +		name="rb-411u" +		;; +	*"RouterBOARD 433/AH")  		name="rb-433"  		;; -	*RB-450) +	*"RouterBOARD 433UAH") +		name="rb-433u" +		;; +	*"RouterBOARD 450")  		name="rb-450"  		;; -	*RB-493) +	*"RouterBOARD 450G") +		name="rb-450g" +		;; +	*"RouterBOARD 493/AH")  		name="rb-493"  		;;  	*"Rocket M")  | 
