Corrected filesystem.toml to correctly soft-link folders in /usr to folders in / so as to avoid infinite recursiong with 'ls -lR /' as per https://github.com/redox-os/redox/issues/1102
This commit is contained in:
parent
f9865f49d1
commit
7676faaf98
|
@ -175,6 +175,32 @@ Welcome to Redox OS!
|
||||||
"""
|
"""
|
||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
path = "/usr"
|
path = "/usr/bin"
|
||||||
data = "/"
|
data = "/bin"
|
||||||
symlink = true
|
symlink = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
path = "/usr/sbin"
|
||||||
|
data = "/sbin"
|
||||||
|
symlink = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
path = "/usr/var"
|
||||||
|
data = "/var"
|
||||||
|
symlink = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
path = "/usr/share"
|
||||||
|
data = "/share"
|
||||||
|
symlink = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
path = "/usr/include"
|
||||||
|
data = "/include"
|
||||||
|
symlink = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
path = "/usr/lib"
|
||||||
|
data = "/lib"
|
||||||
|
symlink = true
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue