Marcus Meissner
d695f6da8a
- Print stored dracut commandline during initramfs build * Add: 0101-Print-stored-dracut-commandline-during-initramfs-bui.patch - Align dev_unit_name() with systemd's function * Add: 0102-Align-dev_unit_name-with-systemd-s-function.patch - Fixup missing separators in rootfs-block cmdline * Add: 0103-Fixup-missing-separators-in-rootfs-block-cmdline.patch - Generate fallback mount unit for root filesystem (bnc#855258) * Add: 0104-Generate-fallback-mount-unit-for-root-filesystem.patch - 95iscsi: parse output from iscsiadm correctly (bnc#886199) * Add: 0105-95iscsi-parse-output-from-iscsiadm-correctly.patch OBS-URL: https://build.opensuse.org/request/show/239877 OBS-URL: https://build.opensuse.org/package/show/Base:System/dracut?expand=0&rev=169
35 lines
912 B
Diff
35 lines
912 B
Diff
From 390474e70238c6585976bab3d37b0f82e5f1a417 Mon Sep 17 00:00:00 2001
|
|
From: Hannes Reinecke <hare@suse.de>
|
|
Date: Fri, 4 Jul 2014 12:31:24 +0200
|
|
Subject: Print stored dracut commandline during initramfs build
|
|
|
|
When generating the initramfs we should be printing out the
|
|
generated dracut commandline used for booting.
|
|
This will simplify debugging.
|
|
|
|
Signed-off-by: Hannes Reinecke <hare@suse.de>
|
|
---
|
|
dracut.sh | 6 ++++++
|
|
1 file changed, 6 insertions(+)
|
|
|
|
diff --git a/dracut.sh b/dracut.sh
|
|
index 40006e7..a166cb6 100755
|
|
--- a/dracut.sh
|
|
+++ b/dracut.sh
|
|
@@ -1479,6 +1479,12 @@ if ! ( echo $PARMS_TO_STORE > $initdir/lib/dracut/build-parameter.txt ); then
|
|
exit 1
|
|
fi
|
|
|
|
+if [[ $hostonly_cmdline ]] ; then
|
|
+ dinfo "Stored kernel commandline:"
|
|
+ for conf in $initdir/etc/cmdline.d/*.conf ; do
|
|
+ dinfo "$(< $conf)"
|
|
+ done
|
|
+fi
|
|
rm -f -- "$outfile"
|
|
dinfo "*** Creating image file ***"
|
|
|
|
--
|
|
1.8.4.5
|
|
|