Corrected the Path to backup image-u-boot-env
With Current Code: when "persist_network_settings" variable is set, This BMC update process via REST copied / backuped the "u-boot-env" image to a wrong location: /run/initramfsimage-u-boot-env
With the Fixed / Updated Cod: Uboot env image is copied (correct) location: /run/initramfs/image-u-boot-env
Signed-off-by: Adi Gangidi adi.gangidi@rackspace.com
diff --git a/bin/bmc_update.py b/bin/bmc_update.py
index 2c1329d..af1629c 100755
--- a/bin/bmc_update.py
+++ b/bin/bmc_update.py
@@ -108,7 +108,7 @@
os.unlink(UPDATE_PATH+"/whitelist")
if (self.Get(DBUS_NAME,"preserve_network_settings") == True):
print "Preserving network settings"
- shutil.copy2("/dev/mtd2",UPDATE_PATH+"image-u-boot-env")
+ shutil.copy2("/dev/mtd2",UPDATE_PATH+"/image-u-boot-env")
except Exception as e:
print e