Skip to content

Commit

Permalink
Fix modules handling for SR conf.
Browse files Browse the repository at this point in the history
  • Loading branch information
artpol84 committed Oct 5, 2020
1 parent 29c41bc commit 6c7219c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/mkt_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ def prepare_rootfs_sr(qemu_args, path, image_path):
cmd = "/bin/rm -Rf " + path + "/" + d + "/*"
print (" -> " + cmd)
subprocess.run(cmd, shell=True, check=True)
cmd = "cp -Rfa /" + d + "/* " + path + "/" + d + "/"
cmd = "cp -RL /" + d + "/* " + path + "/" + d + "/"
print (" -> " + cmd)
subprocess.run(cmd, shell=True, check=True)
print(" -> Done")
Expand Down

0 comments on commit 6c7219c

Please sign in to comment.