We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d56a631 + 51fbb5b commit 97ad2d3Copy full SHA for 97ad2d3
src/rtems_proxy/copy.py
@@ -41,6 +41,11 @@ def copy_rtems():
41
dest = protocol_folder / proto_file.name
42
shutil.copy(proto_file, dest)
43
44
+ # make sure all files are writable - by default some products are read-only
45
+ for folder in [dest_ioc, dest_runtime]:
46
+ for file in folder.glob("**/*"):
47
+ file.chmod(0o666)
48
+
49
# copy all the files needed for runtime into the PVC that is being shared
50
# over nfs/tftp by the nfsv2-tftp service
51
for folder in ["bin", "dbd"]:
0 commit comments