[device/accton/as4630-54pe] Fix accton driver not been installed (#6321)

Accton util applies lsmod to check if drivers are installed.
But lsmod may return error on startup and skip module installation.

Signed-off-by: roy_lee <roy_lee@edge-core.com>
This commit is contained in:
Roy Lee 2021-02-07 05:56:16 +08:00 committed by GitHub
parent c6085c6e1b
commit b6a6c0c6b2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -214,10 +214,12 @@ def log_os_system(cmd, show):
return status, output
def driver_inserted():
ret, lsmod = log_os_system("lsmod| grep accton", 0)
ret, lsmod = log_os_system("ls /sys/module/*accton*", 0)
logging.info('mods:'+lsmod)
if len(lsmod) ==0:
if ret :
return False
else :
return True
#'modprobe cpr_4011_4mxx',