From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stefan Schantl To: development@lists.ipfire.org Subject: [PATCHv2 10/12] installer: Define common mount options for BTRFS volumes Date: Sat, 23 Mar 2024 11:56:27 +0100 Message-ID: <20240323105629.371511-10-stefan.schantl@ipfire.org> In-Reply-To: <20240323105629.371511-1-stefan.schantl@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============0609445291048781222==" List-Id: --===============0609445291048781222== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable As default we are using zstd for compression with level 1 Signed-off-by: Stefan Schantl --- src/installer/hw.c | 2 +- src/installer/hw.h | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/installer/hw.c b/src/installer/hw.c index 8ee6c5726..5665cb955 100644 --- a/src/installer/hw.c +++ b/src/installer/hw.c @@ -1053,7 +1053,7 @@ int hw_mount_btrfs_subvolumes(const char* source) { } =20 // Assign subvolume name. - r =3D snprintf(options, sizeof(options), "subvol=3D%s,", subvolume->name); + r =3D snprintf(options, sizeof(options), "subvol=3D%s,%s", subvolume->name= , BTRFS_MOUNT_OPTIONS); if (r < 0) { return r; } diff --git a/src/installer/hw.h b/src/installer/hw.h index 73a5233e2..7fbea86de 100644 --- a/src/installer/hw.h +++ b/src/installer/hw.h @@ -54,6 +54,8 @@ =20 #define SERIAL_BAUDRATE 115200 =20 +#define BTRFS_MOUNT_OPTIONS "compress=3Dzstd:1" + #define BYTES2MB(x) ((x) / 1024 / 1024) #define MB2BYTES(x) ((unsigned long long)(x) * 1024 * 1024) =20 --=20 2.39.2 --===============0609445291048781222==--