[device/accton] Fix accton driver not been installed (#6327)

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

Signed-off-by: Brandon Chuang <brandon_chuang@edge-core.com>
This commit is contained in:
brandonchuang 2021-01-03 00:02:30 +08:00 committed by GitHub
parent 3acf7006ed
commit c4156b8745
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
17 changed files with 75 additions and 51 deletions

View File

@ -240,11 +240,12 @@ def log_os_system(cmd, show):
return status, output
def driver_inserted():
ret, lsmod = log_os_system("ls /sys/module/ | grep accton", 0)
ret, lsmod = log_os_system("ls /sys/module/*accton*", 0)
logging.info('mods:'+lsmod)
if not lsmod:
if ret :
return False
else :
return True
kos = [
'depmod -ae',

View File

@ -145,11 +145,12 @@ def log_os_system(cmd, show):
return status, output
def driver_check():
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:
return False
return True
if ret :
return False
else :
return True
kos = [
'modprobe i2c_dev',

View File

@ -240,10 +240,12 @@ def log_os_system(cmd, show):
return status, output
def driver_inserted():
ret, lsmod = log_os_system("ls /sys/module | 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

View File

@ -145,11 +145,12 @@ def log_os_system(cmd, show):
return status, output
def driver_check():
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:
return False
return True
if ret :
return False
else :
return True

View File

@ -145,11 +145,12 @@ def log_os_system(cmd, show):
return status, output
def driver_check():
ret, lsmod = log_os_system("ls /sys/module/ | 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
return True
else :
return True

View File

@ -249,10 +249,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

View File

@ -150,11 +150,12 @@ def log_os_system(cmd, show):
def driver_check():
(ret, lsmod) = log_os_system('ls /sys/module/ | grep accton', 0)
logging.info('mods:' + lsmod)
if not lsmod:
ret, lsmod = log_os_system("ls /sys/module/*accton*", 0)
logging.info('mods:'+lsmod)
if ret :
return False
return True
else :
return True
kos = [

View File

@ -145,11 +145,12 @@ def log_os_system(cmd, show):
return status, output
def driver_check():
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:
return False
return True
if ret :
return False
else :
return True

View File

@ -147,11 +147,12 @@ def log_os_system(cmd, show):
return status, output
def driver_check():
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:
return False
return True
if ret :
return False
else :
return True

View File

@ -178,11 +178,12 @@ def log_os_system(cmd, show):
return status, output
def driver_check():
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
return True
else :
return True

View File

@ -145,11 +145,12 @@ def log_os_system(cmd, show):
return status, output
def driver_check():
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:
return False
return True
if ret :
return False
else :
return True

View File

@ -267,10 +267,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',

View File

@ -240,10 +240,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
kos = [

View File

@ -248,10 +248,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
def cpld_reset_mac():
ret, lsmod = log_os_system("i2cset -y 0 0x77 0x1", 0)

View File

@ -167,11 +167,12 @@ def log_os_system(cmd, show):
return status, output
def driver_check():
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:
return False
return True
if ret :
return False
else :
return True

View File

@ -254,10 +254,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
kos = [

View File

@ -181,10 +181,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