2010-06-29 15:20:49 +00:00
|
|
|
#! /bin/sh
|
|
|
|
set -e
|
2007-05-04 07:11:44 +00:00
|
|
|
|
2009-08-08 17:59:19 +00:00
|
|
|
# grub-mkconfig helper script.
|
2010-01-18 15:38:13 +00:00
|
|
|
# Copyright (C) 2006,2007,2008,2009,2010 Free Software Foundation, Inc.
|
2007-05-04 07:11:44 +00:00
|
|
|
#
|
2007-07-21 23:32:33 +00:00
|
|
|
# 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
|
2007-05-04 07:11:44 +00:00
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
2007-07-21 23:32:33 +00:00
|
|
|
# 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.
|
2007-05-04 07:11:44 +00:00
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
2007-07-21 23:32:33 +00:00
|
|
|
# along with GRUB. If not, see <http://www.gnu.org/licenses/>.
|
2007-05-04 07:11:44 +00:00
|
|
|
|
2008-07-30 00:21:35 +00:00
|
|
|
prefix=@prefix@
|
|
|
|
exec_prefix=@exec_prefix@
|
|
|
|
libdir=@libdir@
|
2008-09-29 14:57:05 +00:00
|
|
|
. ${libdir}/grub/grub-mkconfig_lib
|
2008-07-30 00:21:35 +00:00
|
|
|
|
2010-01-07 18:20:11 +00:00
|
|
|
CLASS="--class gnu --class os"
|
|
|
|
|
2008-01-10 13:52:24 +00:00
|
|
|
if [ "x${GRUB_DISTRIBUTOR}" = "x" ] ; then
|
2007-05-04 07:11:44 +00:00
|
|
|
OS=GNU
|
|
|
|
else
|
|
|
|
OS="${GRUB_DISTRIBUTOR} GNU/Hurd"
|
2010-04-08 09:54:44 +00:00
|
|
|
CLASS="--class $(echo ${GRUB_DISTRIBUTOR} | tr '[A-Z]' '[a-z]' | cut -d' ' -f1) ${CLASS}"
|
2007-05-04 07:11:44 +00:00
|
|
|
fi
|
|
|
|
|
2007-05-13 19:28:54 +00:00
|
|
|
at_least_one=false
|
|
|
|
all_of_them=true
|
|
|
|
|
2007-05-04 07:11:44 +00:00
|
|
|
# FIXME: add l4 here?
|
|
|
|
kernel=
|
2010-05-18 18:10:37 +00:00
|
|
|
for i in /boot/gnumach* ; do
|
2007-05-04 07:11:44 +00:00
|
|
|
if test -e $i ; then
|
2007-05-13 19:28:54 +00:00
|
|
|
basename=`basename $i`
|
|
|
|
dirname=`dirname $i`
|
2008-05-30 11:04:08 +00:00
|
|
|
rel_dirname=`make_system_path_relative_to_its_root $dirname`
|
2007-05-13 19:28:54 +00:00
|
|
|
echo "Found GNU Mach: $i" >&2
|
2010-05-18 18:10:37 +00:00
|
|
|
kernels="${kernels} ${rel_dirname}/${basename}"
|
2007-05-13 19:28:54 +00:00
|
|
|
at_least_one=true
|
2007-05-04 07:11:44 +00:00
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
# FIXME: This works for ext2. For other filesystems we might need special-casing
|
|
|
|
case "${GRUB_FS}" in
|
|
|
|
*fs) hurd_fs="${GRUB_FS}" ;;
|
|
|
|
*) hurd_fs="${GRUB_FS}fs" ;;
|
|
|
|
esac
|
|
|
|
|
2007-05-13 19:28:54 +00:00
|
|
|
for i in /hurd/${hurd_fs}.static /hurd/exec ; do
|
2009-06-10 21:04:23 +00:00
|
|
|
if test -e "$i" ; then
|
2007-05-04 07:11:44 +00:00
|
|
|
echo "Found Hurd module: $i" >&2
|
|
|
|
at_least_one=true
|
|
|
|
else
|
|
|
|
all_of_them=false
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
if ${at_least_one} ; then : ; else
|
|
|
|
# no hurd here, aborting silently
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
|
|
|
if ${all_of_them} && test -e /lib/ld.so.1 ; then : ; else
|
|
|
|
echo "Some Hurd stuff found, but not enough to boot." >&2
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2010-05-18 18:10:37 +00:00
|
|
|
for kernel in ${kernels}
|
|
|
|
do
|
|
|
|
kernel_base="`basename "${kernel}"`"
|
|
|
|
KERNEL="using ${kernel_base}"
|
|
|
|
|
|
|
|
cat << EOF
|
|
|
|
menuentry "${OS} ${KERNEL}" ${CLASS} {
|
2008-08-01 12:56:56 +00:00
|
|
|
EOF
|
2010-05-18 18:10:37 +00:00
|
|
|
prepare_grub_to_access_device ${GRUB_DEVICE_BOOT} | sed -e "s/^/\t/"
|
|
|
|
cat << EOF
|
2010-04-13 12:57:56 +00:00
|
|
|
echo '$(gettext_quoted "Loading GNU Mach ...")'
|
2010-01-09 22:02:00 +00:00
|
|
|
multiboot ${kernel} root=device:${GRUB_DEVICE#/dev/}
|
2009-11-02 13:55:25 +00:00
|
|
|
EOF
|
2010-05-18 18:10:37 +00:00
|
|
|
save_default_entry | sed -e "s/^/\t/"
|
|
|
|
prepare_grub_to_access_device ${GRUB_DEVICE} | sed -e "s/^/\t/"
|
|
|
|
cat << EOF
|
2010-04-13 12:57:56 +00:00
|
|
|
echo '$(gettext_quoted "Loading the Hurd ...")'
|
2010-01-09 22:02:00 +00:00
|
|
|
module /hurd/${hurd_fs}.static ${hurd_fs} --readonly \\
|
2007-05-04 07:11:44 +00:00
|
|
|
--multiboot-command-line='\${kernel-command-line}' \\
|
|
|
|
--host-priv-port='\${host-port}' \\
|
|
|
|
--device-master-port='\${device-port}' \\
|
|
|
|
--exec-server-task='\${exec-task}' -T typed '\${root}' \\
|
|
|
|
'\$(task-create)' '\$(task-resume)'
|
2010-01-09 22:02:00 +00:00
|
|
|
module /lib/ld.so.1 exec /hurd/exec '\$(exec-task=task-create)'
|
2007-05-04 07:11:44 +00:00
|
|
|
}
|
|
|
|
EOF
|
2010-01-24 13:30:10 +00:00
|
|
|
|
2010-05-18 18:10:37 +00:00
|
|
|
cat << EOF
|
|
|
|
menuentry "${OS} ${KERNEL} (recovery mode)" ${CLASS} {
|
2010-01-24 13:30:10 +00:00
|
|
|
EOF
|
2010-05-18 18:10:37 +00:00
|
|
|
prepare_grub_to_access_device ${GRUB_DEVICE_BOOT} | sed -e "s/^/\t/"
|
|
|
|
cat << EOF
|
2010-04-13 12:57:56 +00:00
|
|
|
echo '$(gettext_quoted "Loading GNU Mach ...")'
|
2010-01-24 13:30:10 +00:00
|
|
|
multiboot ${kernel} root=device:${GRUB_DEVICE#/dev/} -s
|
|
|
|
EOF
|
2010-05-18 18:10:37 +00:00
|
|
|
prepare_grub_to_access_device ${GRUB_DEVICE} | sed -e "s/^/\t/"
|
|
|
|
cat << EOF
|
2010-04-13 12:57:56 +00:00
|
|
|
echo '$(gettext_quoted "Loading the Hurd ...")'
|
2010-01-24 13:30:10 +00:00
|
|
|
module /hurd/${hurd_fs}.static ${hurd_fs} \\
|
|
|
|
--multiboot-command-line='\${kernel-command-line}' \\
|
|
|
|
--host-priv-port='\${host-port}' \\
|
|
|
|
--device-master-port='\${device-port}' \\
|
|
|
|
--exec-server-task='\${exec-task}' -T typed '\${root}' \\
|
|
|
|
'\$(task-create)' '\$(task-resume)'
|
|
|
|
module /lib/ld.so.1 exec /hurd/exec '\$(exec-task=task-create)'
|
2007-05-04 07:11:44 +00:00
|
|
|
}
|
|
|
|
EOF
|
2010-05-18 18:10:37 +00:00
|
|
|
|
|
|
|
done
|