+2010-01-28 Christian Schmitt <chris@ilovelinux.de>
+
+ * util/ieee1275/grub-install.in: Fix nvsetenv arguments.
+
2010-01-28 BVK Chaitanya <bvk.groups@gmail.com>
* include/grub/script_sh.h (sourcecode): Add const qualifier.
debug=no
update_nvram=yes
-ofpathname=/usr/sbin/ofpathname
-nvsetenv=/sbin/nvsetenv
+ofpathname=`which ofpathname`
+nvsetenv=`which nvsetenv`
# Usage: usage
# Print the usage.
}
# Point boot-device at the new grub install
- boot_device="boot-device $ofpath:$partno,\\grub"
- "$nvsetenv" "$boot_device" || {
+ boot_device="$ofpath:$partno,\\grub"
+ "$nvsetenv" boot-device "$boot_device" || {
echo "$nvsetenv failed."
echo "You will have to set boot-device manually. At the Open Firmware prompt, type:"
- echo " setenv $boot_device"
+ echo " setenv boot-device $boot_device"
exit 1
}
fi