public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
From: Michael Tremer <michael.tremer@ipfire.org>
To: development@lists.ipfire.org
Subject: [PATCH 3/5] dracut: Install an IPFire system configuration file
Date: Fri, 11 Mar 2022 14:43:39 +0000	[thread overview]
Message-ID: <20220311144341.2642786-3-michael.tremer@ipfire.org> (raw)
In-Reply-To: <20220311144341.2642786-1-michael.tremer@ipfire.org>

[-- Attachment #1: Type: text/plain, Size: 3594 bytes --]

This file contains our custom settings:

* Always load microcodes as early as possible

* We now compress the initrd using Zstandard which is substanstically
  faster than XZ, but offers better compression ratios

Signed-off-by: Michael Tremer <michael.tremer(a)ipfire.org>
---
 config/dracut/dracut.conf      | 57 ----------------------------------
 config/dracut/ipfire.conf      |  5 +++
 config/rootfiles/common/dracut |  1 +
 lfs/dracut                     |  3 +-
 4 files changed, 8 insertions(+), 58 deletions(-)
 delete mode 100644 config/dracut/dracut.conf
 create mode 100644 config/dracut/ipfire.conf

diff --git a/config/dracut/dracut.conf b/config/dracut/dracut.conf
deleted file mode 100644
index 74736352e..000000000
--- a/config/dracut/dracut.conf
+++ /dev/null
@@ -1,57 +0,0 @@
-# PUT YOUR CONFIG HERE OR IN separate files named *.conf
-# in /etc/dracut.conf.d
-# SEE man dracut.conf(5)
-
-# Sample dracut config file
-
-#logfile=/var/log/dracut.log
-#fileloglvl=6
-
-# Exact list of dracut modules to use.  Modules not listed here are not going
-# to be included.  If you only want to add some optional modules use
-# add_dracutmodules option instead.
-#dracutmodules+=""
-
-# dracut modules to omit
-#omit_dracutmodules+=""
-
-# dracut modules to add to the default
-#add_dracutmodules+=""
-
-# additional kernel modules to the default
-add_drivers+="xen_blkfront"
-
-# skip kernel modules (marvell sdio and compat from backports)
-omit_drivers+="libertas libertas_sdio mwifiex mwifiex_sdio compat"
-
-# list of kernel filesystem modules to be included in the generic initramfs
-filesystems+="reiserfs vfat xfs"
-
-# build initrd only to boot current hardware
-#hostonly="yes"
-#
-
-# Load microcode for the CPU early
-early_microcode=yes
-
-# install local /etc/mdadm.conf
-#mdadmconf="no"
-
-# install local /etc/lvm/lvm.conf
-#lvmconf="no"
-
-# A list of fsck tools to install. If it's not specified, module's hardcoded
-# default is used, currently: "umount mount /sbin/fsck* xfs_db xfs_check
-# xfs_repair e2fsck jfs_fsck reiserfsck btrfsck". The installation is
-# opportunistic, so non-existing tools are just ignored.
-#fscks=""
-
-# inhibit installation of any fsck tools
-#nofscks="yes"
-
-# mount / and /usr read-only by default
-#ro_mnt="no"
-
-# set the directory for temporary files
-# default: /var/tmp
-#tmpdir=/tmp
diff --git a/config/dracut/ipfire.conf b/config/dracut/ipfire.conf
new file mode 100644
index 000000000..bab5c8a2e
--- /dev/null
+++ b/config/dracut/ipfire.conf
@@ -0,0 +1,5 @@
+# Load microcode for the CPU early
+early_microcode="yes"
+
+# Compress using Zstandard
+compress="zstd"
diff --git a/config/rootfiles/common/dracut b/config/rootfiles/common/dracut
index 3143f49c3..d172898ee 100644
--- a/config/rootfiles/common/dracut
+++ b/config/rootfiles/common/dracut
@@ -13,6 +13,7 @@ usr/lib/dracut/dracut-logger.sh
 usr/lib/dracut/dracut-util
 usr/lib/dracut/dracut-version.sh
 usr/lib/dracut/dracut.conf.d
+usr/lib/dracut/dracut.conf.d/ipfire.conf
 #usr/lib/dracut/modules.d
 usr/lib/dracut/modules.d/00bash
 usr/lib/dracut/modules.d/00bash/module-setup.sh
diff --git a/lfs/dracut b/lfs/dracut
index 26c0c0cf6..426869d20 100644
--- a/lfs/dracut
+++ b/lfs/dracut
@@ -74,7 +74,8 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
 	cd $(DIR_APP) && make $(MAKETUNING)
 	cd $(DIR_APP) && make install sbindir=/sbin sysconfdir=/etc
 
-	cp -vf $(DIR_SRC)/config/dracut/dracut.conf /etc/dracut.conf
+	cp -vf $(DIR_SRC)/config/dracut/ipfire.conf \
+		/usr/lib/dracut/dracut.conf.d/ipfire.conf
 
 	@rm -rf $(DIR_APP)
 	@$(POSTBUILD)
-- 
2.30.2


  parent reply	other threads:[~2022-03-11 14:43 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-03-11 14:43 [PATCH 1/5] dracut: Update to 056 Michael Tremer
2022-03-11 14:43 ` [PATCH 2/5] make.sh: Build acl/attr earlier for coreutils to link against Michael Tremer
2022-03-11 14:43 ` Michael Tremer [this message]
2022-03-11 14:43 ` [PATCH 4/5] dracut: Remove hard-coded configuration from command line Michael Tremer
2022-03-11 14:43 ` [PATCH 5/5] rebuild-initrd: Drop unused script Michael Tremer
2022-03-11 15:48 ` [PATCH 1/5] dracut: Update to 056 Michael Tremer
2022-03-15 17:48 ` Peter Müller
2022-03-15 17:50   ` Michael Tremer
2022-03-15 17:59     ` Peter Müller
2022-03-15 18:01       ` Michael Tremer
2022-03-15 20:39         ` alf
2022-03-16 10:13           ` Michael Tremer

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20220311144341.2642786-3-michael.tremer@ipfire.org \
    --to=michael.tremer@ipfire.org \
    --cc=development@lists.ipfire.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox