* util/grub-mknetdir.in: Remove erroneous reference to install_device.
This commit is contained in:
parent
8b282ad222
commit
ad7b7b8527
2 changed files with 10 additions and 8 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
2012-02-25 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
|
* util/grub-mknetdir.in: Remove erroneous reference to install_device.
|
||||||
|
|
||||||
2012-02-25 Vladimir Serbinenko <phcoder@gmail.com>
|
2012-02-25 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
* grub-core/normal/charset.c (grub_utf8_to_ucs4_alloc): Fix return type
|
* grub-core/normal/charset.c (grub_utf8_to_ucs4_alloc): Fix return type
|
||||||
|
|
|
@ -41,7 +41,6 @@ rootdir=/srv/tftp
|
||||||
grub_prefix=`echo /boot/grub | sed ${transform}`
|
grub_prefix=`echo /boot/grub | sed ${transform}`
|
||||||
modules=
|
modules=
|
||||||
|
|
||||||
install_device=
|
|
||||||
no_floppy=
|
no_floppy=
|
||||||
recheck=no
|
recheck=no
|
||||||
debug=no
|
debug=no
|
||||||
|
@ -60,7 +59,7 @@ itanium_dir="${libdir}/$(echo ${PACKAGE_TARNAME} | sed ${transform})/ia64-efi"
|
||||||
# Usage: usage
|
# Usage: usage
|
||||||
# Print the usage.
|
# Print the usage.
|
||||||
usage () {
|
usage () {
|
||||||
gettext_printf "Usage: %s [OPTION] install_device\n" "$self"
|
gettext_printf "Usage: %s [OPTION]\n" "$self"
|
||||||
gettext; echo "Install GRUB on your drive."; echo
|
gettext; echo "Install GRUB on your drive."; echo
|
||||||
echo
|
echo
|
||||||
printf " -h, --help %s\n" "$(gettext "print this message and exit")"
|
printf " -h, --help %s\n" "$(gettext "print this message and exit")"
|
||||||
|
@ -147,12 +146,11 @@ do
|
||||||
exit 1
|
exit 1
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
if test "x$install_device" != x; then
|
gettext_printf "Unknown extra argument \`%s'." "$option" 1>&2
|
||||||
echo "More than one install_devices?" 1>&2
|
echo 1>&2
|
||||||
usage
|
usage
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
;;
|
||||||
install_device="${option}" ;;
|
|
||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue