[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:
parent
3acf7006ed
commit
c4156b8745
@ -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',
|
||||
|
@ -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',
|
||||
|
@ -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
|
||||
|
||||
|
||||
|
||||
|
@ -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
|
||||
|
||||
|
||||
|
||||
|
@ -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
|
||||
|
||||
|
||||
|
||||
|
@ -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
|
||||
|
||||
|
||||
|
||||
|
@ -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 = [
|
||||
|
@ -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
|
||||
|
||||
|
||||
|
||||
|
@ -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
|
||||
|
||||
|
||||
|
||||
|
@ -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
|
||||
|
||||
|
||||
|
||||
|
@ -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
|
||||
|
||||
|
||||
|
||||
|
@ -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',
|
||||
|
||||
|
@ -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 = [
|
||||
|
@ -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)
|
||||
|
@ -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
|
||||
|
||||
|
||||
|
||||
|
@ -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 = [
|
||||
|
@ -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
|
||||
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user