diff options
Diffstat (limited to 'lua_scripts/pathmaps/maemo/00_default.lua')
-rw-r--r-- | lua_scripts/pathmaps/maemo/00_default.lua | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lua_scripts/pathmaps/maemo/00_default.lua b/lua_scripts/pathmaps/maemo/00_default.lua index 6560bb1..ad98f3f 100644 --- a/lua_scripts/pathmaps/maemo/00_default.lua +++ b/lua_scripts/pathmaps/maemo/00_default.lua @@ -304,6 +304,10 @@ simple_chain = { -- 95. Some virtual paths: {prefix = "/host_usr", map_to = target_root}, + -- unmodified view of the rootstrap, can be used as destination + -- directory when installing stuff to the rootstrap + {prefix = "/target_root", replace_by = target_root}, + -- ----------------------------------------------- -- 98. Scratchbox 1 emulation rules -- (some packages have hard-coded paths to the SB1 enviroment; @@ -371,6 +375,10 @@ qemu_chain = { {prefix = tools, use_orig_path = true}, + -- unmodified view of the rootstrap, can be used as destination + -- directory when installing stuff to the rootstrap + {prefix = "/target_root", replace_by = target_root}, + {path = "/", use_orig_path = true}, {prefix = "/", map_to = tools} } |