bin/install_megadrivers: rename a few variables to make things clearer

Originally the "each" variable was just a part of the "drivers"
variable. It's not anymore so it's a bit ambiguous.

Signed-off-by: Dylan Baker <dylan.c.baker@intel.com>
This commit is contained in:
Dylan Baker 2018-04-09 13:59:55 -07:00
parent ae3f45c11e
commit 10e4290524

View File

@ -46,23 +46,23 @@ def main():
os.makedirs(to)
shutil.copy(args.megadriver, master)
for each in args.drivers:
driver = os.path.join(to, each)
for driver in args.drivers:
abs_driver = os.path.join(to, driver)
if os.path.exists(driver):
os.unlink(driver)
print('installing {} to {}'.format(args.megadriver, driver))
os.link(master, driver)
if os.path.exists(abs_driver):
os.unlink(abs_driver)
print('installing {} to {}'.format(args.megadriver, abs_driver))
os.link(master, abs_driver)
try:
ret = os.getcwd()
os.chdir(to)
name, ext = os.path.splitext(each)
name, ext = os.path.splitext(driver)
while ext != '.so':
if os.path.exists(name):
os.unlink(name)
os.symlink(each, name)
os.symlink(driver, name)
name, ext = os.path.splitext(name)
finally:
os.chdir(ret)