2010-06-29 15:20:49 +00:00
|
|
|
#! /bin/sh
|
|
|
|
set -e
|
2009-10-26 00:41:54 +00:00
|
|
|
|
|
|
|
# grub-mkconfig helper script.
|
2010-01-07 18:20:11 +00:00
|
|
|
# Copyright (C) 2006,2007,2008,2009,2010 Free Software Foundation, Inc.
|
2009-10-26 00:41:54 +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
|
|
|
|
# (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/>.
|
|
|
|
|
|
|
|
prefix=@prefix@
|
|
|
|
exec_prefix=@exec_prefix@
|
2009-11-17 11:44:43 +00:00
|
|
|
bindir=@bindir@
|
2009-10-26 00:41:54 +00:00
|
|
|
libdir=@libdir@
|
|
|
|
. ${libdir}/grub/grub-mkconfig_lib
|
|
|
|
|
2009-11-17 11:44:43 +00:00
|
|
|
export TEXTDOMAIN=@PACKAGE@
|
2010-04-14 12:59:58 +00:00
|
|
|
export TEXTDOMAINDIR=@localedir@
|
2009-11-17 11:44:43 +00:00
|
|
|
|
2010-01-07 18:20:11 +00:00
|
|
|
CLASS="--class os"
|
|
|
|
|
2009-10-26 00:41:58 +00:00
|
|
|
case "${GRUB_DISTRIBUTOR}" in
|
2010-01-07 18:20:11 +00:00
|
|
|
Debian)
|
|
|
|
OS="${GRUB_DISTRIBUTOR} GNU/kFreeBSD"
|
2010-04-08 09:54:44 +00:00
|
|
|
CLASS="--class $(echo ${GRUB_DISTRIBUTOR} | tr '[A-Z]' '[a-z]' | cut -d' ' -f1) --class gnu-kfreebsd --class gnu ${CLASS}"
|
2010-01-07 18:20:11 +00:00
|
|
|
;;
|
|
|
|
*)
|
|
|
|
OS="FreeBSD"
|
|
|
|
CLASS="--class freebsd --class bsd ${CLASS}"
|
|
|
|
;;
|
2009-10-26 00:41:54 +00:00
|
|
|
esac
|
|
|
|
|
2010-08-20 14:36:07 +00:00
|
|
|
load_kfreebsd_module ()
|
|
|
|
{
|
|
|
|
mod="$1"
|
|
|
|
allow_fail="$2"
|
|
|
|
|
2010-09-13 20:18:03 +00:00
|
|
|
if ! test -e "${module_dir}/${mod}.ko" ; then
|
2010-08-20 14:36:07 +00:00
|
|
|
if [ "${allow_fail}" = "true" ] ; then
|
|
|
|
# Return silently
|
|
|
|
return
|
|
|
|
else
|
|
|
|
# Print an error and fail.
|
|
|
|
ls "${module_dir}/${mod}.ko" > /dev/null
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -z "${prepare_module_dir_cache}" ]; then
|
|
|
|
prepare_module_dir_cache="$(prepare_grub_to_access_device $(grub-probe -t device "${module_dir}") | sed -e "s/^/\t/")"
|
|
|
|
fi
|
|
|
|
|
|
|
|
printf '%s\n' "${prepare_module_dir_cache}"
|
|
|
|
cat << EOF
|
|
|
|
kfreebsd_module_elf ${module_dir_rel}/${mod}.ko
|
|
|
|
EOF
|
|
|
|
}
|
|
|
|
|
2009-10-26 00:41:58 +00:00
|
|
|
kfreebsd_entry ()
|
2009-10-26 00:41:54 +00:00
|
|
|
{
|
2009-11-17 11:44:43 +00:00
|
|
|
os="$1"
|
|
|
|
version="$2"
|
|
|
|
recovery="$3" # not used yet
|
|
|
|
args="$4" # not used yet
|
2010-04-13 12:57:56 +00:00
|
|
|
title="$(gettext_quoted "%s, with kFreeBSD %s")"
|
|
|
|
printf "menuentry '${title}' ${CLASS} {\n" "${os}" "${version}"
|
2009-11-20 08:41:20 +00:00
|
|
|
save_default_entry | sed -e "s/^/\t/"
|
2009-10-26 16:28:04 +00:00
|
|
|
if [ -z "${prepare_boot_cache}" ]; then
|
|
|
|
prepare_boot_cache="$(prepare_grub_to_access_device ${GRUB_DEVICE_BOOT} | sed -e "s/^/\t/")"
|
|
|
|
fi
|
2010-08-01 00:14:07 +00:00
|
|
|
|
2009-10-26 16:28:04 +00:00
|
|
|
printf '%s\n' "${prepare_boot_cache}"
|
2009-10-26 00:41:54 +00:00
|
|
|
cat << EOF
|
2010-04-13 12:57:56 +00:00
|
|
|
echo '$(printf "$(gettext_quoted "Loading kernel of FreeBSD %s ...")" ${version})'
|
2010-01-09 22:02:00 +00:00
|
|
|
kfreebsd ${rel_dirname}/${basename}
|
2009-10-26 00:41:54 +00:00
|
|
|
EOF
|
2009-10-26 00:41:58 +00:00
|
|
|
|
|
|
|
if test -n "${devices}" ; then
|
|
|
|
cat << EOF
|
2010-01-09 22:02:00 +00:00
|
|
|
kfreebsd_loadenv ${devices_rel_dirname}/${devices_basename}
|
2009-10-26 00:41:58 +00:00
|
|
|
EOF
|
|
|
|
fi
|
|
|
|
|
2010-08-20 14:36:07 +00:00
|
|
|
load_kfreebsd_module acpi true
|
2009-10-26 00:41:58 +00:00
|
|
|
|
2010-08-01 21:21:09 +00:00
|
|
|
case "${kfreebsd_fs}" in
|
|
|
|
zfs)
|
2010-08-20 14:36:07 +00:00
|
|
|
load_kfreebsd_module opensolaris false
|
2010-08-01 21:21:09 +00:00
|
|
|
|
2010-09-13 20:18:03 +00:00
|
|
|
ls "${dirname}/zfs/zpool.cache" > /dev/null
|
2010-08-01 21:21:09 +00:00
|
|
|
printf '%s\n' "${prepare_boot_cache}"
|
2009-10-26 00:41:54 +00:00
|
|
|
cat << EOF
|
2010-08-01 21:21:09 +00:00
|
|
|
kfreebsd_module ${rel_dirname}/zfs/zpool.cache type=/boot/zfs/zpool.cache
|
|
|
|
EOF
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2010-08-20 14:36:07 +00:00
|
|
|
load_kfreebsd_module ${kfreebsd_fs} false
|
|
|
|
|
2010-08-01 21:21:09 +00:00
|
|
|
cat << EOF
|
|
|
|
set kFreeBSD.vfs.root.mountfrom=${kfreebsd_fs}:${kfreebsd_device}
|
2009-10-26 00:41:58 +00:00
|
|
|
set kFreeBSD.vfs.root.mountfrom.options=rw
|
2009-10-26 00:41:54 +00:00
|
|
|
}
|
|
|
|
EOF
|
|
|
|
}
|
|
|
|
|
2009-10-26 00:41:58 +00:00
|
|
|
list=`for i in /boot/kfreebsd-* /boot/kernel/kernel ; do
|
2009-10-26 00:41:54 +00:00
|
|
|
if grub_file_is_not_garbage "$i" ; then echo -n "$i " ; fi
|
|
|
|
done`
|
2009-10-26 16:28:04 +00:00
|
|
|
prepare_boot_cache=
|
2009-10-26 00:41:54 +00:00
|
|
|
|
|
|
|
while [ "x$list" != "x" ] ; do
|
2009-10-26 00:41:58 +00:00
|
|
|
kfreebsd=`version_find_latest $list`
|
|
|
|
echo "Found kernel of FreeBSD: $kfreebsd" >&2
|
|
|
|
basename=`basename $kfreebsd`
|
|
|
|
dirname=`dirname $kfreebsd`
|
2009-10-26 00:41:54 +00:00
|
|
|
rel_dirname=`make_system_path_relative_to_its_root $dirname`
|
2009-10-26 00:41:58 +00:00
|
|
|
|
|
|
|
if [ -f /boot/device.hints ] ; then
|
|
|
|
devices=/boot/device.hints
|
|
|
|
devices_basename=`basename $devices`
|
|
|
|
devices_dirname=`dirname $devices`
|
|
|
|
devices_rel_dirname=`make_system_path_relative_to_its_root $devices_dirname`
|
|
|
|
fi
|
|
|
|
|
|
|
|
case ${GRUB_FS} in
|
2010-08-20 14:36:07 +00:00
|
|
|
ufs1 | ufs2) kfreebsd_fs=ufs ;;
|
|
|
|
ext2) kfreebsd_fs=ext2fs ;;
|
|
|
|
*) kfreebsd_fs=${GRUB_FS} ;;
|
2009-10-26 00:41:58 +00:00
|
|
|
esac
|
|
|
|
|
2010-08-01 21:21:09 +00:00
|
|
|
case ${GRUB_FS} in
|
2010-09-10 11:35:23 +00:00
|
|
|
zfs)
|
|
|
|
# zpool name
|
|
|
|
kfreebsd_device=$(grub-probe -t fs_label --device ${GRUB_DEVICE})
|
|
|
|
# filesystem name (empty string for the main filesystem)
|
|
|
|
kfreebsd_device="${kfreebsd_device}$(grub-mkrelpath / | sed -e "s,/*@$,,")"
|
|
|
|
;;
|
2010-08-01 21:21:09 +00:00
|
|
|
*) kfreebsd_device=${GRUB_DEVICE} ;;
|
|
|
|
esac
|
|
|
|
|
2009-10-26 00:41:58 +00:00
|
|
|
version=`echo $basename | sed -e "s,^[^0-9]*-,,g;s/\.gz$//g"`
|
2009-10-26 00:41:54 +00:00
|
|
|
alt_version=`echo $version | sed -e "s,\.old$,,g"`
|
|
|
|
|
2010-08-01 00:14:07 +00:00
|
|
|
module_dir=
|
|
|
|
for i in "/lib/modules/${version}" "/lib/modules/${alt_version}" \
|
|
|
|
"/boot/kernel"; do
|
2009-10-26 00:41:58 +00:00
|
|
|
if test -e "$i" ; then
|
2010-08-01 00:14:07 +00:00
|
|
|
module_dir="$i"
|
2009-10-26 00:41:54 +00:00
|
|
|
break
|
|
|
|
fi
|
|
|
|
done
|
2010-08-01 00:14:07 +00:00
|
|
|
if test -n "${module_dir}" ; then
|
|
|
|
echo "Found kernel module directory: ${module_dir}" >&2
|
|
|
|
module_dir_rel=$(make_system_path_relative_to_its_root $module_dir)
|
2009-10-26 00:41:54 +00:00
|
|
|
fi
|
|
|
|
|
2009-11-17 11:44:43 +00:00
|
|
|
kfreebsd_entry "${OS}" "${version}"
|
2009-10-26 00:41:54 +00:00
|
|
|
|
2009-10-26 00:41:58 +00:00
|
|
|
list=`echo $list | tr ' ' '\n' | grep -vx $kfreebsd | tr '\n' ' '`
|
2009-10-26 00:41:54 +00:00
|
|
|
done
|