finish: atleast error check

Signed-off-by: Robert Nelson <robertcnelson@gmail.com>
pull/37/head
Robert Nelson 10 years ago
parent 9b32ffb6be
commit 8a251ddd49

@ -183,12 +183,17 @@ if [ ! "x${optargs}" = "x" ] ; then
fi fi
fi fi
#Setup trampoline for old u-boot's or bootdrive =/= rootdrive...
if [ -f /boot/uboot/boot/trampoline.uboot ] ; then if [ -f /boot/uboot/boot/trampoline.uboot ] ; then
cp /boot/vmlinuz-`uname -r` /boot/uboot/boot/vmlinuz-current cp /boot/vmlinuz-`uname -r` /boot/uboot/boot/vmlinuz-current
cp /boot/initrd.img-`uname -r` /boot/uboot/boot/initrd.img-current cp /boot/initrd.img-`uname -r` /boot/uboot/boot/initrd.img-current
if [ ! "x${conf_smart_uboot}" = "xenable" ] ; then if [ ! "x${conf_smart_uboot}" = "xenable" ] ; then
cp /boot/uboot/uImage /boot/uboot/boot/uImage if [ -f /boot/uboot/uImage ] ; then
cp /boot/uboot/uInitrd /boot/uboot/boot/uInitrd cp /boot/uboot/uImage /boot/uboot/boot/uImage
fi
if [ -f /boot/uboot/uInitrd ] ; then
cp /boot/uboot/uInitrd /boot/uboot/boot/uInitrd
fi
fi fi
fi fi

@ -153,12 +153,17 @@ if [ ! "x${optargs}" = "x" ] ; then
fi fi
fi fi
#Setup trampoline for old u-boot's or bootdrive =/= rootdrive...
if [ -f /boot/uboot/boot/trampoline.uboot ] ; then if [ -f /boot/uboot/boot/trampoline.uboot ] ; then
cp /boot/vmlinuz-`uname -r` /boot/uboot/boot/vmlinuz-current cp /boot/vmlinuz-`uname -r` /boot/uboot/boot/vmlinuz-current
cp /boot/initrd.img-`uname -r` /boot/uboot/boot/initrd.img-current cp /boot/initrd.img-`uname -r` /boot/uboot/boot/initrd.img-current
if [ ! "x${conf_smart_uboot}" = "xenable" ] ; then if [ ! "x${conf_smart_uboot}" = "xenable" ] ; then
cp /boot/uboot/uImage /boot/uboot/boot/uImage if [ -f /boot/uboot/uImage ] ; then
cp /boot/uboot/uInitrd /boot/uboot/boot/uInitrd cp /boot/uboot/uImage /boot/uboot/boot/uImage
fi
if [ -f /boot/uboot/uInitrd ] ; then
cp /boot/uboot/uInitrd /boot/uboot/boot/uInitrd
fi
fi fi
fi fi

Loading…
Cancel
Save