* [PATCH] hook-functions: dep_add_modules_mount: kill unreadable eval
@ 2023-01-23 4:55 Masahiro Yamada
0 siblings, 0 replies; only message in thread
From: Masahiro Yamada @ 2023-01-23 4:55 UTC (permalink / raw)
To: initramfs-tools; +Cc: debian-kernel, initramfs, Ben Hutchings, Masahiro Yamada
The 'eval' is here because we evaluated the code returned by AWK.
Commit 9249db649ced ("MODULES=dep: awk free version for root dev search")
stopped using AWK, so 'eval' is unneeded.
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
---
hook-functions | 11 +++++++----
1 file changed, 7 insertions(+), 4 deletions(-)
diff --git a/hook-functions b/hook-functions
index 95bd584..fa49990 100644
--- a/hook-functions
+++ b/hook-functions
@@ -416,10 +416,13 @@ dep_add_modules_mount()
# find out block device + fstype
# shellcheck disable=SC2034
- eval "$(while read -r dev mp fs opts rest ; do \
- [ "$mp" = "$dir" ] && [ "$fs" != "rootfs" ] \
- && printf "dev_node=%s\\nFSTYPE=%s" "$dev" "$fs"\
- && break; done < /proc/mounts)"
+ while read -r dev mp fs opts rest; do \
+ if [ "$mp" = "$dir" ] && [ "$fs" != "rootfs" ]; then
+ dev_node=$dev
+ FSTYPE=$fs
+ break;
+ fi
+ done < /proc/mounts
# Only the root mountpoint has to exist; do nothing if any other
# directory is not a mountpoint.
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2023-01-23 4:55 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-01-23 4:55 [PATCH] hook-functions: dep_add_modules_mount: kill unreadable eval Masahiro Yamada
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox