aboutsummaryrefslogtreecommitdiffstats
path: root/install.sh
diff options
context:
space:
mode:
authorkaf24@firebug.cl.cam.ac.uk <kaf24@firebug.cl.cam.ac.uk>2005-10-07 14:47:45 +0100
committerkaf24@firebug.cl.cam.ac.uk <kaf24@firebug.cl.cam.ac.uk>2005-10-07 14:47:45 +0100
commit726081b63b0bea2687b7c2330808fba2de9c2e61 (patch)
tree3a82297a6e829b1176177617430fdfb14fa56f7c /install.sh
parent7dc4ee7c765944dce1ccf2c596b4aa16a6ed3e1b (diff)
downloadxen-726081b63b0bea2687b7c2330808fba2de9c2e61.tar.gz
xen-726081b63b0bea2687b7c2330808fba2de9c2e61.tar.bz2
xen-726081b63b0bea2687b7c2330808fba2de9c2e61.zip
Add installation of the udev rules if appropriate. With a normal 'make
install', the udev rules will be installed if udev version is >= 059; otherwise, the hotplug rules get installed. When 'make dist' is done, we set a variable so that both hotplug and udev rules are installed into the dist tarball. install.sh then takes care of picking the proper rules. Also changes the hotplug check to look for a proper udev version Signed-off-by: Jeremy Katz <katzj@redhat.com>
Diffstat (limited to 'install.sh')
-rwxr-xr-xinstall.sh8
1 files changed, 7 insertions, 1 deletions
diff --git a/install.sh b/install.sh
index 295f084374..49e88a2556 100755
--- a/install.sh
+++ b/install.sh
@@ -23,10 +23,16 @@ if ! [ -d $dst ]; then
fi
echo "Installing Xen from '$src' to '$dst'..."
-(cd $src; tar -cf - --exclude etc/init.d * ) | tar -C $dst -xf -
+(cd $src; tar -cf - --exclude etc/init.d --exclude etc/hotplug --exclude etc/udev * ) | tar -C $dst -xf -
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
+ cp -f $src/etc/udev/rules.d/*.rules $dst/etc/udev/rules.d/
+else
+ cp -f $src/etc/hotplug/*.agent $dst/etc/hotplug/
+fi
+
echo "Checking to see whether prerequisite tools are installed..."
cd $src/../check
./chk install