!113 同步上游社区补丁
From: @hongjinghao Reviewed-by: @jiayi0118 Signed-off-by: @jiayi0118
This commit is contained in:
commit
989846cc07
@ -0,0 +1,31 @@
|
|||||||
|
From 5d2bda46f4e75e85445ee4d3bd3f68bf966287b9 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Ihno Krumreich <ihno@suse.com>
|
||||||
|
Date: Wed, 28 Feb 2024 08:24:35 +0100
|
||||||
|
Subject: [PATCH] fix(zfcp_rules): correct shellcheck regression when parsing
|
||||||
|
ccw args
|
||||||
|
|
||||||
|
Fixes 032ecd95c94b77f3f08237e0f765b355dacb9573
|
||||||
|
|
||||||
|
Conflict:NA
|
||||||
|
Reference:https://github.com/dracutdevs/dracut/commit/5d2bda46f4e75e85445ee4d3bd3f68bf966287b9
|
||||||
|
---
|
||||||
|
modules.d/95zfcp_rules/parse-zfcp.sh | 3 ++-
|
||||||
|
1 file changed, 2 insertions(+), 1 deletion(-)
|
||||||
|
|
||||||
|
diff --git a/modules.d/95zfcp_rules/parse-zfcp.sh b/modules.d/95zfcp_rules/parse-zfcp.sh
|
||||||
|
index 5e7d9095..a474b81b 100755
|
||||||
|
--- a/modules.d/95zfcp_rules/parse-zfcp.sh
|
||||||
|
+++ b/modules.d/95zfcp_rules/parse-zfcp.sh
|
||||||
|
@@ -63,7 +63,8 @@ for zfcp_arg in $(getargs root=) $(getargs resume=); do
|
||||||
|
if [ -n "$ccw_arg" ]; then
|
||||||
|
OLDIFS="$IFS"
|
||||||
|
IFS="-"
|
||||||
|
- set -- "$ccw_arg"
|
||||||
|
+ # shellcheck disable=SC2086
|
||||||
|
+ set -- $ccw_arg
|
||||||
|
IFS="$OLDIFS"
|
||||||
|
_wwpn=${4%:*}
|
||||||
|
_lun=${4#*:}
|
||||||
|
--
|
||||||
|
2.33.0
|
||||||
|
|
||||||
@ -9,7 +9,7 @@
|
|||||||
|
|
||||||
Name: dracut
|
Name: dracut
|
||||||
Version: 059
|
Version: 059
|
||||||
Release: 6
|
Release: 7
|
||||||
|
|
||||||
Summary: Initramfs generator using udev
|
Summary: Initramfs generator using udev
|
||||||
|
|
||||||
@ -39,6 +39,7 @@ Patch11: backport-fix-fs-lib-remove-quoting-form-the-first-argument-of.patch
|
|||||||
Patch12: backport-feat-systemd-install-systemd-executor.patch
|
Patch12: backport-feat-systemd-install-systemd-executor.patch
|
||||||
|
|
||||||
Patch6000: backport-fix-dracut.sh-remove-microcode-check-based-on-CONFIG.patch
|
Patch6000: backport-fix-dracut.sh-remove-microcode-check-based-on-CONFIG.patch
|
||||||
|
Patch6001: backport-fix-zfcp_rules-correct-shellcheck-regression-when-pa.patch
|
||||||
|
|
||||||
Source1: https://www.gnu.org/licenses/lgpl-2.1.txt
|
Source1: https://www.gnu.org/licenses/lgpl-2.1.txt
|
||||||
Source2: openEuler.conf.example
|
Source2: openEuler.conf.example
|
||||||
@ -527,6 +528,9 @@ rm -f 51-dracut-rescue-postinst.sh
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Jun 13 2024 hongjinghao <hongjinghao@huawei.com> - 059-7
|
||||||
|
- backport update stream
|
||||||
|
|
||||||
* Thu Apr 18 2024 wangyuhang <wangyuhang27@huawei.com> - 059-6
|
* Thu Apr 18 2024 wangyuhang <wangyuhang27@huawei.com> - 059-6
|
||||||
- Backport patches to remove microcode check based on CONFIG_MICROCODE_[AMD|INTEL]
|
- Backport patches to remove microcode check based on CONFIG_MICROCODE_[AMD|INTEL]
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user