diff options
| author | 2025-06-15 09:18:27 -0400 | |
|---|---|---|
| committer | 2025-06-23 10:49:27 +0000 | |
| commit | a400e6e5db97580b374e4f5eea97d6b1e6ff412a (patch) | |
| tree | 8e50bdfb55ea508fb656d7402fb9056f31eef099 | |
| parent | e4d801674c86b0675f0ff6fed8c8fee0e5e47546 (diff) | |
| download | kiwi-descriptions-a400e6e5db97580b374e4f5eea97d6b1e6ff412a.tar.gz kiwi-descriptions-a400e6e5db97580b374e4f5eea97d6b1e6ff412a.zip | |
components/liveinstall: Use -Efragments instead of all-fragments with inode dedupe
Per erofs upstream, this results in faster and more efficient build times
with improved runtime performance.
Signed-off-by: Neal Gompa <ngompa@fedoraproject.org>
| -rw-r--r-- | components/liveinstall.xml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/components/liveinstall.xml b/components/liveinstall.xml index f91283c..a98b1b8 100644 --- a/components/liveinstall.xml +++ b/components/liveinstall.xml @@ -10,7 +10,7 @@ publisher="Fedora Project" volid="Fedora_Linux" application_id="Fedora_Linux" primary="true" flags="dmsquash" filesystem="erofs" erofscompression="lzma,level=6" mediacheck="true" firmware="uefi" efiparttable="gpt" efifatimagesize="30" kernelcmdline="quiet rhgb" - fscreateoptions="-Eall-fragments,fragdedupe=inode -C 1048576" + fscreateoptions="-Efragments -C 1048576" > <bootloader name="grub2" grub_template="grub-x86.cfg.iso-template" console="console" timeout="10"/> </type> @@ -20,7 +20,7 @@ publisher="Fedora Project" volid="Fedora_Linux" application_id="Fedora_Linux" primary="true" flags="dmsquash" filesystem="erofs" erofscompression="lzma,level=6" mediacheck="true" firmware="uefi" efiparttable="gpt" efifatimagesize="30" kernelcmdline="quiet rhgb" - fscreateoptions="-Eall-fragments,fragdedupe=inode -C 1048576" + fscreateoptions="-Efragments -C 1048576" > <bootloader name="grub2" grub_template="grub-arm.cfg.iso-template" console="console" timeout="10"/> </type> @@ -30,7 +30,7 @@ publisher="Fedora Project" volid="Fedora_Linux" application_id="Fedora_Linux" primary="true" flags="dmsquash" filesystem="erofs" erofscompression="lzma,level=6" mediacheck="true" firmware="uefi" efiparttable="gpt" efifatimagesize="30" kernelcmdline="quiet rhgb" - fscreateoptions="-Eall-fragments,fragdedupe=inode -C 1048576" + fscreateoptions="-Efragments -C 1048576" > <bootloader name="grub2" grub_template="grub-riscv64.cfg.iso-template" console="console" timeout="10"/> </type> @@ -40,7 +40,7 @@ publisher="Fedora Project" volid="Fedora_Linux" application_id="Fedora_Linux" primary="true" flags="dmsquash" filesystem="erofs" erofscompression="lzma,level=6" mediacheck="true" firmware="ofw" kernelcmdline="quiet rhgb" - fscreateoptions="-Eall-fragments,fragdedupe=inode -C 1048576" + fscreateoptions="-Efragments -C 1048576" > <bootloader name="grub2" grub_template="grub-ppc.cfg.iso-template" console="console" timeout="10"/> </type> |