Made SDIO Update optional
This commit is contained in:
parent
830eff27c3
commit
d0f4dd1f52
1 changed files with 6 additions and 1 deletions
|
|
@ -18,6 +18,10 @@ if __name__ == '__main__':
|
||||||
}}
|
}}
|
||||||
stay_awake()
|
stay_awake()
|
||||||
os.system('cls')
|
os.system('cls')
|
||||||
|
print_info('Starting {} Full Update\n'.format(KIT_NAME_FULL))
|
||||||
|
|
||||||
|
## Prep ##
|
||||||
|
update_sdio = ask('Update SDI Origin?')
|
||||||
|
|
||||||
## Download ##
|
## Download ##
|
||||||
print_success('Downloading tools')
|
print_success('Downloading tools')
|
||||||
|
|
@ -48,7 +52,8 @@ if __name__ == '__main__':
|
||||||
try_and_print(message='Intel RST...', function=update_intel_rst, other_results=other_results, width=40)
|
try_and_print(message='Intel RST...', function=update_intel_rst, other_results=other_results, width=40)
|
||||||
try_and_print(message='Intel SSD Toolbox...', function=update_intel_ssd_toolbox, other_results=other_results, width=40)
|
try_and_print(message='Intel SSD Toolbox...', function=update_intel_ssd_toolbox, other_results=other_results, width=40)
|
||||||
try_and_print(message='Samsing Magician...', function=update_samsung_magician, other_results=other_results, width=40)
|
try_and_print(message='Samsing Magician...', function=update_samsung_magician, other_results=other_results, width=40)
|
||||||
try_and_print(message='Snappy Driver Installer Origin...', function=update_sdi_origin, other_results=other_results, width=40)
|
if update_sdio:
|
||||||
|
try_and_print(message='Snappy Driver Installer Origin...', function=update_sdi_origin, other_results=other_results, width=40)
|
||||||
|
|
||||||
# Installers
|
# Installers
|
||||||
print_info(' Installers')
|
print_info(' Installers')
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue