ee37ba8aaf
- 95multipath: Pickup multipath files in /etc/multipath/conf.d (boo#1048551) * adds 0568-95multipath-Pickup-files-in-etc-multipath-conf.d.patch - 10i18n: Load all keymaps for a given locale (boo#1065058) * adds 0569-10i18n-Load-all-keymaps-for-a-given-locale.patch * adds 0570-10i18n-Fix-possible-infinite-recursion.patch OBS-URL: https://build.opensuse.org/request/show/616849 OBS-URL: https://build.opensuse.org/package/show/Base:System/dracut?expand=0&rev=351
26 lines
889 B
Diff
26 lines
889 B
Diff
From a4e11a0e4d6fbed25244cc0f01732f81841bd642 Mon Sep 17 00:00:00 2001
|
|
From: Daniel Molkentin <dmolkentin@suse.com>
|
|
Date: Fri, 27 Apr 2018 16:59:47 +0200
|
|
Subject: [PATCH 2/2] 10i18n: Fix possible infinite recursion
|
|
|
|
---
|
|
modules.d/10i18n/module-setup.sh | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/modules.d/10i18n/module-setup.sh b/modules.d/10i18n/module-setup.sh
|
|
index be4ada54..9083e98f 100755
|
|
--- a/modules.d/10i18n/module-setup.sh
|
|
+++ b/modules.d/10i18n/module-setup.sh
|
|
@@ -46,7 +46,7 @@ install() {
|
|
|
|
for INCL in $($cmd "^include " $map | while read a a b || [ -n "$a" ]; do echo ${a//\"/}; done); do
|
|
for FN in $(find ${kbddir}/keymaps -type f -name $INCL\*); do
|
|
- findkeymap $FN
|
|
+ strstr "$KEYMAPS" "$FN" || findkeymap $FN
|
|
done
|
|
done
|
|
done
|
|
--
|
|
2.16.3
|
|
|