diff options
Diffstat (limited to 'lua_scripts/pathmaps/simple')
-rw-r--r-- | lua_scripts/pathmaps/simple/00_default.lua | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lua_scripts/pathmaps/simple/00_default.lua b/lua_scripts/pathmaps/simple/00_default.lua index b8e3434..ad260f3 100644 --- a/lua_scripts/pathmaps/simple/00_default.lua +++ b/lua_scripts/pathmaps/simple/00_default.lua @@ -61,7 +61,8 @@ simple_chain = { {prefix = "/tmp", map_to = session_dir}, {prefix = "/dev", use_orig_path = true}, - {prefix = "/proc", custom_map_funct = sb2_procfs_mapper}, + {prefix = "/proc", custom_map_funct = sb2_procfs_mapper, + virtual_path = true}, {prefix = "/sys", use_orig_path = true}, {prefix = "/etc/resolv.conf", use_orig_path = true}, {prefix = "/etc/apt", map_to = target_root}, @@ -83,7 +84,8 @@ qemu_chain = { {prefix = "/tmp", map_to = session_dir}, {prefix = "/dev", use_orig_path = true}, - {dir = "/proc", custom_map_funct = sb2_procfs_mapper}, + {dir = "/proc", custom_map_funct = sb2_procfs_mapper, + virtual_path = true}, {prefix = "/sys", use_orig_path = true}, {prefix = "/etc/resolv.conf", use_orig_path = true}, {prefix = tools, use_orig_path = true}, |