소스 검색

lantiq: fix warning if ltq_atm modules are missing

Fixes the following warning on first boot if the ltq_atm modules are
not included in the image:

  ls: /lib/modules/4.4.49/ltq_atm*: No such file or directory

Signed-off-by: Mathias Kresin <[email protected]>
Mathias Kresin 8 년 전
부모
커밋
bececcce86
1개의 변경된 파일1개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 2
      target/linux/lantiq/base-files/etc/board.d/02_network

+ 1 - 2
target/linux/lantiq/base-files/etc/board.d/02_network

@@ -164,9 +164,8 @@ WBMR300)
 
 esac
 
-if [ -n "$(ls /lib/modules/`uname -r`/ltq_atm*)" ]; then
+ls /lib/modules/$(uname -r)/ltq_atm* 1> /dev/null 2>&1 && \
 	ucidef_add_atm_bridge "$vpi" "$vci" "$encaps" "$payload"
-fi
 
 if lantiq_is_vdsl_system; then
 	interface_wan="ptm0"