* [PATCH] udev path failure can fail test incorrectly
@ 2005-11-14 6:11 Nivedita Singhvi
0 siblings, 0 replies; only message in thread
From: Nivedita Singhvi @ 2005-11-14 6:11 UTC (permalink / raw)
To: xen--devel
[-- Attachment #1: Type: text/plain, Size: 879 bytes --]
This cleans up an install issue for udev.
Signed-off-by: Nivedita Singhvi (niv@us.ibm.com)
# HG changeset patch
# User nivedita@phaedrus
# Node ID d46b43fb84846e15941a7a58c37ca1373918e464
# Parent 995e94c4802e5c0376b0483f3b2473a8f7d7808e
If /sbin/ isn't in path, install.sh will erroneously fail
and won't install udev rules in all the cases it should.
diff -r 995e94c4802e -r d46b43fb8484 install.sh
--- a/install.sh Fri Nov 11 18:11:13 2005
+++ b/install.sh Mon Nov 14 05:59:48 2005
@@ -27,7 +27,7 @@
cp -fdRL $src/etc/init.d/* $dst/etc/init.d/
echo "All done."
-if [ -x /sbin/udev ] && [ ! -z `udev -V` ] && [ `/sbin/udev -V` -ge 059]; then
+if [ -x /sbin/udev ] && [ ! -z `/sbin/udev -V` ] && [ `/sbin/udev -V` -ge 059 ]; then
cp -f $src/etc/udev/rules.d/*.rules $dst/etc/udev/rules.d/
else
cp -f $src/etc/hotplug/*.agent $dst/etc/hotplug/
[-- Attachment #2: udevpath.patch --]
[-- Type: text/plain, Size: 767 bytes --]
# HG changeset patch
# User nivedita@phaedrus
# Node ID d46b43fb84846e15941a7a58c37ca1373918e464
# Parent 995e94c4802e5c0376b0483f3b2473a8f7d7808e
If /sbin/ isn't in path, install.sh will erroneously fail
and won't install udev rules in all the cases it should.
diff -r 995e94c4802e -r d46b43fb8484 install.sh
--- a/install.sh Fri Nov 11 18:11:13 2005
+++ b/install.sh Mon Nov 14 05:59:48 2005
@@ -27,7 +27,7 @@
cp -fdRL $src/etc/init.d/* $dst/etc/init.d/
echo "All done."
-if [ -x /sbin/udev ] && [ ! -z `udev -V` ] && [ `/sbin/udev -V` -ge 059 ]; then
+if [ -x /sbin/udev ] && [ ! -z `/sbin/udev -V` ] && [ `/sbin/udev -V` -ge 059 ]; then
cp -f $src/etc/udev/rules.d/*.rules $dst/etc/udev/rules.d/
else
cp -f $src/etc/hotplug/*.agent $dst/etc/hotplug/
[-- Attachment #3: Type: text/plain, Size: 138 bytes --]
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2005-11-14 6:11 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-11-14 6:11 [PATCH] udev path failure can fail test incorrectly Nivedita Singhvi
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.