From 67194f014834c99593cead03715139ee7cad9145 Mon Sep 17 00:00:00 2001 From: Benjamin Sherman Date: Sat, 29 Jun 2024 17:48:56 -0500 Subject: [PATCH] feat: set dracut zstd compression for initramfs regen With this change any regenerated initramfs, either at runtime when configured by a user, or at build time for downstreams like hwe, bazzite, bluefin/aurora, the resulting initramfs image will be compressed with zstd, saving a bit of space. --- sys_files/usr/lib/dracut/dracut.conf.d/10-compression.conf | 1 + 1 file changed, 1 insertion(+) create mode 100644 sys_files/usr/lib/dracut/dracut.conf.d/10-compression.conf diff --git a/sys_files/usr/lib/dracut/dracut.conf.d/10-compression.conf b/sys_files/usr/lib/dracut/dracut.conf.d/10-compression.conf new file mode 100644 index 00000000..af45d621 --- /dev/null +++ b/sys_files/usr/lib/dracut/dracut.conf.d/10-compression.conf @@ -0,0 +1 @@ +compress="zstd"