2009-11-20 08:41:20 +00:00
|
|
|
#! /bin/sh
|
|
|
|
#
|
|
|
|
# Set a default boot entry for GRUB.
|
|
|
|
# Copyright (C) 2004,2009 Free Software Foundation, Inc.
|
|
|
|
#
|
|
|
|
# GRUB is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# GRUB is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with GRUB. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
# Initialize some variables.
|
|
|
|
transform="@program_transform_name@"
|
|
|
|
|
|
|
|
prefix=@prefix@
|
|
|
|
exec_prefix=@exec_prefix@
|
|
|
|
bindir=@bindir@
|
2010-06-08 10:52:42 +00:00
|
|
|
PACKAGE_NAME=@PACKAGE_NAME@
|
|
|
|
PACKAGE_VERSION=@PACKAGE_VERSION@
|
|
|
|
|
|
|
|
self=`basename $0`
|
2009-11-20 08:41:20 +00:00
|
|
|
|
|
|
|
grub_editenv=${bindir}/`echo grub-editenv | sed ${transform}`
|
|
|
|
rootdir=
|
|
|
|
|
|
|
|
# Usage: usage
|
|
|
|
# Print the usage.
|
|
|
|
usage () {
|
|
|
|
cat <<EOF
|
2010-06-08 10:52:42 +00:00
|
|
|
Usage: $self [OPTION] entry
|
2009-11-20 08:41:20 +00:00
|
|
|
Set the default boot entry for GRUB.
|
|
|
|
|
|
|
|
-h, --help print this message and exit
|
|
|
|
-v, --version print the version information and exit
|
|
|
|
--root-directory=DIR expect GRUB images under the directory DIR
|
|
|
|
instead of the root directory
|
|
|
|
|
|
|
|
ENTRY is a number or a menu item title.
|
|
|
|
|
|
|
|
Report bugs to <bug-grub@gnu.org>.
|
|
|
|
EOF
|
|
|
|
}
|
|
|
|
|
2010-04-12 16:03:03 +00:00
|
|
|
argument () {
|
|
|
|
opt=$1
|
|
|
|
shift
|
|
|
|
|
|
|
|
if test $# -eq 0; then
|
|
|
|
echo "$0: option requires an argument -- '$opt'" 1>&2
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
echo $1
|
|
|
|
}
|
|
|
|
|
2009-11-20 08:41:20 +00:00
|
|
|
# Check the arguments.
|
2010-02-07 05:01:04 +00:00
|
|
|
while test $# -gt 0
|
|
|
|
do
|
|
|
|
option=$1
|
|
|
|
shift
|
|
|
|
|
2009-11-20 08:41:20 +00:00
|
|
|
case "$option" in
|
|
|
|
-h | --help)
|
|
|
|
usage
|
|
|
|
exit 0 ;;
|
|
|
|
-v | --version)
|
2010-06-08 10:52:42 +00:00
|
|
|
echo "$self (${PACKAGE_NAME}) ${PACKAGE_VERSION}"
|
2009-11-20 08:41:20 +00:00
|
|
|
exit 0 ;;
|
2010-02-07 05:01:04 +00:00
|
|
|
|
|
|
|
--root-directory)
|
2010-04-12 16:03:03 +00:00
|
|
|
rootdir=`argument $option "$@"`; shift ;;
|
2009-11-20 08:41:20 +00:00
|
|
|
--root-directory=*)
|
|
|
|
rootdir=`echo "$option" | sed 's/--root-directory=//'` ;;
|
2010-02-07 05:01:04 +00:00
|
|
|
|
2009-11-20 08:41:20 +00:00
|
|
|
-*)
|
|
|
|
echo "Unrecognized option \`$option'" 1>&2
|
|
|
|
usage
|
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
if test "x$entry" != x; then
|
|
|
|
echo "More than one entry?" 1>&2
|
|
|
|
usage
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
entry="${option}" ;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
|
|
|
|
if test "x$entry" = x; then
|
|
|
|
echo "entry not specified." 1>&2
|
|
|
|
usage
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Initialize these directories here, since ROOTDIR was initialized.
|
|
|
|
case "$host_os" in
|
|
|
|
netbsd* | openbsd*)
|
|
|
|
# Because /boot is used for the boot block in NetBSD and OpenBSD, use /grub
|
|
|
|
# instead of /boot/grub.
|
|
|
|
grub_prefix=`echo /grub | sed ${transform}`
|
|
|
|
bootdir=${rootdir}
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
# Use /boot/grub by default.
|
|
|
|
bootdir=${rootdir}/boot
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
grubdir=${bootdir}/`echo grub | sed ${transform}`
|
|
|
|
|
|
|
|
$grub_editenv ${grubdir}/grubenv unset prev_saved_entry
|
|
|
|
$grub_editenv ${grubdir}/grubenv set saved_entry="$entry"
|
|
|
|
|
|
|
|
# Bye.
|
|
|
|
exit 0
|