aboutsummaryrefslogtreecommitdiffstats
path: root/install.sh
diff options
context:
space:
mode:
authorcl349@firebug.cl.cam.ac.uk <cl349@firebug.cl.cam.ac.uk>2005-05-13 22:53:08 +0000
committercl349@firebug.cl.cam.ac.uk <cl349@firebug.cl.cam.ac.uk>2005-05-13 22:53:08 +0000
commitd334aaae9578651d7187ecc8597b5339eda71921 (patch)
tree7fb9059be452abe85efdf1f8ed8fffbb744cb7c5 /install.sh
parentcde1a953f76d1b3131362a62bb3ecd062d3487e5 (diff)
downloadxen-d334aaae9578651d7187ecc8597b5339eda71921.tar.gz
xen-d334aaae9578651d7187ecc8597b5339eda71921.tar.bz2
xen-d334aaae9578651d7187ecc8597b5339eda71921.zip
bitkeeper revision 1.1159.258.123 (42852fd48Nr7wIoriw8GV3ZAjVOw8Q)
Many files: Create vmlinuz-$(VERSION).$(PATCHLEVEL)-$(XENGUEST) and vmlinuz-$(VERSION).$(PATCHLEVEL).$(SUBLEVEL)-$(XENGUEST) symlinks in dist/install/boot from kernel build target. install.sh: No need to create vmlinuz symlinks in dist/install/boot from install.sh anymore. Signed-off-by: Christian Limpach <Christian.Limpach@cl.cam.ac.uk>
Diffstat (limited to 'install.sh')
-rwxr-xr-xinstall.sh9
1 files changed, 0 insertions, 9 deletions
diff --git a/install.sh b/install.sh
index a8ab96134c..7da84dafad 100755
--- a/install.sh
+++ b/install.sh
@@ -23,15 +23,6 @@ if ! [ -d $dst ]; then
fi
echo "Installing Xen from '$src' to '$dst'..."
-cd $src/boot
-(echo '2.6.*' -2.6; echo '2.4.*' -2.4; echo '2.*.*' '') | while read m v
-do
- l=$(eval ls -t vmlinuz-$m-xen0 2>/dev/null | head -n 1)
- [ -e "$l" ] && ln -fs "$l" vmlinuz${v}-xen0
- l=$(eval ls -t vmlinuz-$m-xenU 2>/dev/null | head -n 1)
- [ -e "$l" ] && ln -fs "$l" vmlinuz${v}-xenU
-done
-cd -
cp -fdRL $src/* $dst
echo "All done."