From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stefan Schantl To: development@lists.ipfire.org Subject: [PATCH 17/17] installer: Adjust BTRFS layout Date: Fri, 15 Mar 2024 20:14:42 +0100 Message-ID: <20240315191442.3951-18-stefan.schantl@ipfire.org> In-Reply-To: <20240315191442.3951-1-stefan.schantl@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============2715738405442742453==" List-Id: --===============2715738405442742453== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit * Rename the fs root to @ to prevent name collision with home directory of user root. * Add @root which contains the home directory of the root user * Add @backup which will contains the created backups Fixes #13608 Signed-off-by: Stefan Schantl --- src/installer/hw.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/installer/hw.c b/src/installer/hw.c index 26c473e9c..4110deccf 100644 --- a/src/installer/hw.c +++ b/src/installer/hw.c @@ -47,10 +47,12 @@ // Array which contains the subvolumes which will be created when installing // IPFire on a BTRFS. const char* btrfs_subvolumes[8][2] = { - {"@root" ,"/"}, + {"@" ,"/"}, {"@snapshots", "/.snapshots"}, {"@home", "/home"}, + {"@root", "/root"}, {"@cache", "/var/cache"}, + {"@backup", "/var/ipfire/backup"}, {"@lib", "/var/lib"}, {"@logs", "/var/log"}, {"@mails", "/var/mail"}, -- 2.39.2 --===============2715738405442742453==--