From f0bfada399c2c3269de353be5af37224349839a0 Mon Sep 17 00:00:00 2001 From: Harald Hoyer Date: Thu, 30 Mar 2017 12:52:11 +0200 Subject: [PATCH] dracut.sh: strip NUL bytes in stream before push in string seems like bash-4.4 does not like NUL bytes in variables --- dracut.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dracut.sh b/dracut.sh index 788e52bf..ccfa31dc 100755 --- a/dracut.sh +++ b/dracut.sh @@ -1622,7 +1622,7 @@ if [[ $do_strip = yes ]] && ! [[ $DRACUT_FIPS_MODE ]]; then # strip kernel modules, but do not touch signed modules find "$initdir" -type f -path '*/lib/modules/*.ko' -print0 \ | while read -r -d $'\0' f || [ -n "$f" ]; do - SIG=$(tail -c 28 "$f") + SIG=$(tail -c 28 "$f" | tr -d '\000') [[ $SIG == '~Module signature appended~' ]] || { printf "%s\000" "$f"; } done | xargs -r -0 strip -g