From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stefan Schantl To: development@lists.ipfire.org Subject: [PATCH 13/17] installer: Define common mount options for BTRFS volumes Date: Fri, 15 Mar 2024 20:14:38 +0100 Message-ID: <20240315191442.3951-14-stefan.schantl@ipfire.org> In-Reply-To: <20240315191442.3951-1-stefan.schantl@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============0034060026996672416==" List-Id: --===============0034060026996672416== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit As default we are using zstd for compression with level 1 Signed-off-by: Stefan Schantl --- src/installer/hw.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/installer/hw.h b/src/installer/hw.h index 2de73a3be..402e5cd0d 100644 --- a/src/installer/hw.h +++ b/src/installer/hw.h @@ -54,6 +54,8 @@ #define SERIAL_BAUDRATE 115200 +#define BTRFS_MOUNT_OPTIONS "compress=zstd:1" + #define BYTES2MB(x) ((x) / 1024 / 1024) #define MB2BYTES(x) ((unsigned long long)(x) * 1024 * 1024) -- 2.39.2 --===============0034060026996672416==--