1b61a795a1
OBS-URL: https://build.opensuse.org/request/show/667609 OBS-URL: https://build.opensuse.org/package/show/Base:System/dracut?expand=0&rev=360
45 lines
1.6 KiB
Diff
45 lines
1.6 KiB
Diff
From 43b774786cc4583e682c1f7f397643c7c1fccadf Mon Sep 17 00:00:00 2001
|
|
From: Daniel Molkentin <dmolkentin@suse.com>
|
|
Date: Sun, 20 Jan 2019 21:56:05 +0100
|
|
Subject: [PATCH] Fix a missing space in example configs
|
|
|
|
It has
|
|
|
|
omit_drivers+=" i2o_scsi"
|
|
|
|
which would break the next omit_drivers+="foo " if it's
|
|
missing a space at the beginning.
|
|
|
|
Reference: boo#1121251
|
|
---
|
|
dracut.conf.d/gentoo.conf.example | 2 +-
|
|
dracut.conf.d/suse.conf.example | 2 +-
|
|
2 files changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/dracut.conf.d/gentoo.conf.example b/dracut.conf.d/gentoo.conf.example
|
|
index 26e73147..df102e00 100644
|
|
--- a/dracut.conf.d/gentoo.conf.example
|
|
+++ b/dracut.conf.d/gentoo.conf.example
|
|
@@ -12,4 +12,4 @@ ro_mnt=yes
|
|
i18n_vars="/etc/conf.d/keymaps:keymap-KEYMAP,extended_keymaps-EXT_KEYMAPS /etc/conf.d/consolefont:consolefont-FONT,consoletranslation-FONT_MAP /etc/rc.conf:unicode-UNICODE"
|
|
i18n_default_font="LatArCyrHeb-16"
|
|
|
|
-omit_drivers+=" i2o_scsi"
|
|
+omit_drivers+=" i2o_scsi "
|
|
diff --git a/dracut.conf.d/suse.conf.example b/dracut.conf.d/suse.conf.example
|
|
index 37ffd72b..e1d800c8 100644
|
|
--- a/dracut.conf.d/suse.conf.example
|
|
+++ b/dracut.conf.d/suse.conf.example
|
|
@@ -10,7 +10,7 @@ hostonly_cmdline="yes"
|
|
compress="xz -0 --check=crc32 --memlimit-compress=50%"
|
|
|
|
i18n_vars="/etc/sysconfig/language:RC_LANG-LANG,RC_LC_ALL-LC_ALL /etc/sysconfig/console:CONSOLE_UNICODEMAP-FONT_UNIMAP,CONSOLE_FONT-FONT,CONSOLE_SCREENMAP-FONT_MAP /etc/sysconfig/keyboard:KEYTABLE-KEYMAP"
|
|
-omit_drivers+=" i2o_scsi"
|
|
+omit_drivers+=" i2o_scsi "
|
|
|
|
# Below adds additional tools to the initrd which are not urgently necessary to
|
|
# bring up the system, but help to debug problems.
|
|
--
|
|
2.16.4
|
|
|