no reason to use sudo, just check for root

Signed-off-by: Robert Nelson <robertcnelson@gmail.com>
pull/8/head
Robert Nelson 13 years ago
parent f75662e03d
commit a538cce55d

@ -1260,35 +1260,40 @@ script_readme
cat > ${TEMPDIR}/update_boot_files.sh <<-__EOF__ cat > ${TEMPDIR}/update_boot_files.sh <<-__EOF__
#!/bin/sh #!/bin/sh
cd /boot/uboot if ! id | grep -q root; then
sudo mount -o remount,rw /boot/uboot echo "must be run as root"
exit
fi
if [ ! -f /boot/initrd.img-\$(uname -r) ] ; then cd /boot/uboot
sudo update-initramfs -c -k \$(uname -r) mount -o remount,rw /boot/uboot
else
sudo update-initramfs -u -k \$(uname -r)
fi
if [ -f /boot/initrd.img-\$(uname -r) ] ; then if [ ! -f /boot/initrd.img-\$(uname -r) ] ; then
sudo cp -v /boot/initrd.img-\$(uname -r) /boot/uboot/initrd.img update-initramfs -c -k \$(uname -r)
fi else
update-initramfs -u -k \$(uname -r)
fi
#legacy uImage support: if [ -f /boot/initrd.img-\$(uname -r) ] ; then
if [ -f /boot/uboot/uImage ] ; then cp -v /boot/initrd.img-\$(uname -r) /boot/uboot/initrd.img
if [ -f /boot/initrd.img-\$(uname -r) ] ; then fi
sudo mkimage -A arm -O linux -T ramdisk -C none -a 0 -e 0 -n initramfs -d /boot/initrd.img-\$(uname -r) /boot/uboot/uInitrd
fi #legacy uImage support:
if [ -f /boot/uboot/boot.cmd ] ; then if [ -f /boot/uboot/uImage ] ; then
sudo mkimage -A arm -O linux -T script -C none -a 0 -e 0 -n "Boot Script" -d /boot/uboot/boot.cmd /boot/uboot/boot.scr if [ -f /boot/initrd.img-\$(uname -r) ] ; then
sudo cp /boot/uboot/boot.scr /boot/uboot/boot.ini mkimage -A arm -O linux -T ramdisk -C none -a 0 -e 0 -n initramfs -d /boot/initrd.img-\$(uname -r) /boot/uboot/uInitrd
fi fi
if [ -f /boot/uboot/serial.cmd ] ; then if [ -f /boot/uboot/boot.cmd ] ; then
sudo mkimage -A arm -O linux -T script -C none -a 0 -e 0 -n "Boot Script" -d /boot/uboot/serial.cmd /boot/uboot/boot.scr mkimage -A arm -O linux -T script -C none -a 0 -e 0 -n "Boot Script" -d /boot/uboot/boot.cmd /boot/uboot/boot.scr
fi cp -v /boot/uboot/boot.scr /boot/uboot/boot.ini
if [ -f /boot/uboot/user.cmd ] ; then fi
sudo mkimage -A arm -O linux -T script -C none -a 0 -e 0 -n "Reset Nand" -d /boot/uboot/user.cmd /boot/uboot/user.scr if [ -f /boot/uboot/serial.cmd ] ; then
fi mkimage -A arm -O linux -T script -C none -a 0 -e 0 -n "Boot Script" -d /boot/uboot/serial.cmd /boot/uboot/boot.scr
fi fi
if [ -f /boot/uboot/user.cmd ] ; then
mkimage -A arm -O linux -T script -C none -a 0 -e 0 -n "Reset Nand" -d /boot/uboot/user.cmd /boot/uboot/user.scr
fi
fi
__EOF__ __EOF__

Loading…
Cancel
Save