Skip to content

Commit

Permalink
adding a note on using chmod to make FVP_Corstone_SSE-300_Ethos-U55 a…
Browse files Browse the repository at this point in the history
…n executable
  • Loading branch information
mkatanbaf committed Aug 11, 2022
1 parent dd10c7f commit e237188
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions apps/microtvm/zephyr/template_project/microtvm_api_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -631,6 +631,8 @@ def build(self, options):
env = os.environ
if self._is_fvp(zephyr_board, emu_platform == "armfvp"):
env["ARMFVP_BIN_PATH"] = str((API_SERVER_DIR / "fvp-hack").resolve())
# Note: We need to explicitly modify the file permissions and make it an executable to pass CI tests.
# [To Do]: Move permission change to Build.groovy.j2
st = os.stat(env["ARMFVP_BIN_PATH"] + "/FVP_Corstone_SSE-300_Ethos-U55")
os.chmod(
env["ARMFVP_BIN_PATH"] + "/FVP_Corstone_SSE-300_Ethos-U55",
Expand Down

0 comments on commit e237188

Please sign in to comment.