summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xupdate_image.pl6
1 files changed, 5 insertions, 1 deletions
diff --git a/update_image.pl b/update_image.pl
index 07f4600..fffe2ea 100755
--- a/update_image.pl
+++ b/update_image.pl
@@ -104,6 +104,7 @@ while (@ARGV > 0){
shift;
}
elsif (/^-sbec_binary_filename/i){
+ #This filename is necessary if the file exists, but if it's not given, we add a blank partition
$sbec_binary_filename = $ARGV[1] or die "Bad command line arg given: expecting a config type.\n";
shift;
}
@@ -569,7 +570,10 @@ else
}
#Stage SBEC image
-run_command("cp $hb_binary_dir/$sbec_binary_filename $scratch_dir/");
+if(-e $memd_binary_filename)
+{
+ run_command("cp $hb_binary_dir/$sbec_binary_filename $scratch_dir/");
+}
#END MAIN
#-------------------------------------------------------------------------
OpenPOWER on IntegriCloud