lantiq: introduce lantiq_is_vdsl_system
Move the code to check if the current system is a system with vdsl support to a dedicate function to make it reusable. Signed-off-by: Mathias Kresin <dev@kresin.me>
This commit is contained in:
		@@ -168,7 +168,7 @@ if [ -n "$(ls /lib/modules/`uname -r`/ltq_atm*)" ]; then
 | 
				
			|||||||
	ucidef_add_atm_bridge "$vpi" "$vci" "$encaps" "$payload"
 | 
						ucidef_add_atm_bridge "$vpi" "$vci" "$encaps" "$payload"
 | 
				
			||||||
fi
 | 
					fi
 | 
				
			||||||
 | 
					
 | 
				
			||||||
if grep -qE "system type.*: (VR9|xRX200)" /proc/cpuinfo; then
 | 
					if lantiq_is_vdsl_system; then
 | 
				
			||||||
	interface_wan="ptm0"
 | 
						interface_wan="ptm0"
 | 
				
			||||||
	ucidef_add_vdsl_modem "$annex" "av" "ptm"
 | 
						ucidef_add_vdsl_modem "$annex" "av" "ptm"
 | 
				
			||||||
else
 | 
					else
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -39,3 +39,7 @@ lantiq_get_dt_led() {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
	echo "$label"
 | 
						echo "$label"
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					lantiq_is_vdsl_system() {
 | 
				
			||||||
 | 
						grep -qE "system type.*: (VR9|xRX200)" /proc/cpuinfo
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user