mkinitrd unification across distributions
 help / color / mirror / Atom feed
* [PATCH] Fix full pathname condition in find_library
@ 2009-08-01  7:52 Sergey Fionov
  2009-08-05 14:22 ` Harald Hoyer
  0 siblings, 1 reply; 2+ messages in thread
From: Sergey Fionov @ 2009-08-01  7:52 UTC (permalink / raw)
  To: initramfs-u79uwXL29TY76Z2rM5mHXA

Hello,

Now a fact that the path is full is checked by
[[ -x $1 ]]

But if the working directory is /bin or a directory with a file named  
"mount",
this condition will be met for "inst mount", and "mount" will not be copied
into initrd at all.

diff --git a/dracut-functions b/dracut-functions
index d4caacf..1078bfd 100755
--- a/dracut-functions
+++ b/dracut-functions
@@ -83,7 +83,7 @@ inst_library() {
  # search in the usual places to find the binary.
  find_binary() {
      local binpath="/bin /sbin /usr/bin /usr/sbin" p
-    [[ -x $1 ]] && { echo $1; return 0; }
+    [[ -z ${1##/*} && -x $1 ]] && { echo $1; return 0; }
      for p in $binpath; do
         [[ -x $p/$1 ]] && { echo "$p/$1"; return 0; }
      done
--
To unsubscribe from this list: send the line "unsubscribe initramfs" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2009-08-05 14:22 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-08-01  7:52 [PATCH] Fix full pathname condition in find_library Sergey Fionov
2009-08-05 14:22 ` Harald Hoyer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox