Commit e4d3ab33 authored by Sebastian Romero's avatar Sebastian Romero Committed by Damien George

nrf/main: Add /flash and /flash/lib to sys.path.

This allows to follow good practice and have libraries live in the lib
folder which means they will be found by the runtime without adding this
path manually at runtime.
Signed-off-by: default avatarSebastian Romero <s.romero@arduino.cc>
parent d69e69ad
......@@ -191,6 +191,9 @@ soft_reset:
if (ret != 0) {
printf("MPY: can't mount flash\n");
} else {
mp_obj_list_append(mp_sys_path, MP_OBJ_NEW_QSTR(MP_QSTR__slash_flash));
mp_obj_list_append(mp_sys_path, MP_OBJ_NEW_QSTR(MP_QSTR__slash_flash_slash_lib));
}
#endif
......
......@@ -29,6 +29,7 @@
// Entries for sys.path
Q(/flash)
Q(/flash/lib)
// For os.sep
Q(/)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment