From 7676faaf98417792917c750d3bb215ff71a126b6 Mon Sep 17 00:00:00 2001 From: Gerald E Butler Date: Mon, 13 Nov 2017 17:52:08 -0500 Subject: [PATCH] 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 --- filesystem.toml | 30 ++++++++++++++++++++++++++++-- 1 file changed, 28 insertions(+), 2 deletions(-) diff --git a/filesystem.toml b/filesystem.toml index 0dda69f..671d0a6 100644 --- a/filesystem.toml +++ b/filesystem.toml @@ -175,6 +175,32 @@ Welcome to Redox OS! """ [[files]] -path = "/usr" -data = "/" +path = "/usr/bin" +data = "/bin" 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 +