10_kfreebsd.in 7.8 KB
Newer Older
1 2
#! /bin/sh
set -e
3 4

# grub-mkconfig helper script.
5
# Copyright (C) 2006,2007,2008,2009,2010,2011  Free Software Foundation, Inc.
6 7 8 9 10 11 12 13 14 15 16 17 18 19
#
# 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/>.

20 21 22
prefix="@prefix@"
exec_prefix="@exec_prefix@"
datarootdir="@datarootdir@"
23
. "$pkgdatadir/grub-mkconfig_lib"
24

25
export TEXTDOMAIN=@PACKAGE@
26
export TEXTDOMAINDIR="@localedir@"
27

28 29
CLASS="--class os"

30
case "${GRUB_DISTRIBUTOR}" in
31 32
  Debian)
	OS="${GRUB_DISTRIBUTOR} GNU/kFreeBSD"
33
	CLASS="--class $(echo ${GRUB_DISTRIBUTOR} | tr 'A-Z' 'a-z' | cut -d' ' -f1|LC_ALL=C sed 's,[^[:alnum:]_],_,g') --class gnu-kfreebsd --class gnu ${CLASS}"
34 35 36 37 38
  ;;
  *)
	OS="FreeBSD"
	CLASS="--class freebsd --class bsd ${CLASS}"
  ;;
39 40
esac

41 42 43 44 45
load_kfreebsd_module ()
{
  mod="$1"
  allow_fail="$2"

46
  if ! test -e "${module_dir}/${mod}.ko" ; then
47 48 49 50 51 52 53 54 55 56
    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
57
    prepare_module_dir_cache="$(prepare_grub_to_access_device $(${grub_probe} -t device "${module_dir}") | grub_add_tab)"
58 59 60 61 62 63 64 65
  fi

  printf '%s\n' "${prepare_module_dir_cache}"
  cat << EOF
	kfreebsd_module_elf	${module_dir_rel}/${mod}.ko
EOF
}

66 67
title_correction_code=

68
kfreebsd_entry ()
69
{
70 71
  os="$1"
  version="$2"
72
  type="$3"
73
  args="$4"
74 75 76
  if [ -z "$boot_device_id" ]; then
      boot_device_id="$(grub_get_device_id "${GRUB_DEVICE}")"
  fi
77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
  if [ x$type != xsimple ] ; then
      if [ x$type = xrecovery ] ; then
	  title="$(gettext_printf "%s, with kFreeBSD %s (recovery mode)" "${os}" "${version}")"
      else
	  title="$(gettext_printf "%s, with kFreeBSD %s" "${os}" "${version}")"
      fi
      replacement_title="$(echo "Advanced options for ${OS}" | sed 's,>,>>,g')>$(echo "$title" | sed 's,>,>>,g')"
      if [ x"$title" = x"$GRUB_ACTUAL_DEFAULT" ]; then
	  quoted="$(echo "$GRUB_ACTUAL_DEFAULT" | grub_quote)"
	  title_correction_code="${title_correction_code}if [ \"x\$default\" = '$quoted' ]; then default='$(echo "$replacement_title" | grub_quote)'; fi;"
	  grub_warn "$(gettext_printf "Please don't use old title \`%s' for GRUB_DEFAULT, use \`%s' (for versions before 2.00) or \`%s' (for 2.00 or later)" "$GRUB_ACTUAL_DEFAULT" "$replacement_title" "kfreebsd-advanced-$boot_device_id>kfreebsd-$version-$type-$boot_device_id")"
      fi
      echo "menuentry '$(echo "$title" | grub_quote)' ${CLASS} \$menuentry_id_option 'kfreebsd-$version-$type-$boot_device_id' {" | sed "s/^/$submenu_indentation/"
  else
      echo "menuentry '$(echo "$OS" | grub_quote)' ${CLASS} \$menuentry_id_option 'kfreebsd-simple-$boot_device_id' {" | sed "s/^/$submenu_indentation/"
  fi
  if [ x$type != xrecovery ] ; then
94
      save_default_entry | grub_add_tab | sed "s/^/$submenu_indentation/"
95
  fi
96
  if [ -z "${prepare_boot_cache}" ]; then
97
    prepare_boot_cache="$(prepare_grub_to_access_device ${GRUB_DEVICE_BOOT} | grub_add_tab)"
98
  fi
99

100
  printf '%s\n' "${prepare_boot_cache}" | sed "s/^/$submenu_indentation/"
101
  message="$(gettext_printf "Loading kernel of FreeBSD %s ..." ${version})"
102
  sed "s/^/$submenu_indentation/" << EOF
103
	echo			'$(echo "$message" | grub_quote)'
104
	kfreebsd		${rel_dirname}/${basename} ${args}
105
EOF
106 107

  if test -n "${devices}" ; then
108
      sed "s/^/$submenu_indentation/" << EOF
109
	kfreebsd_loadenv	${devices_rel_dirname}/${devices_basename}
110 111 112
EOF
  fi

113
  load_kfreebsd_module acpi true
114

115
  for abstraction in dummy $(${grub_probe} -t abstraction --device ${GRUB_DEVICE}) ; do
116 117 118 119 120
    case $abstraction in
      lvm) load_kfreebsd_module geom_linux_lvm false ;;
    esac
  done

121 122
  case "${kfreebsd_fs}" in
    zfs)
123
      load_kfreebsd_module opensolaris false
124

125
      ls "/boot/zfs/zpool.cache" > /dev/null
126
      printf '%s\n' "${prepare_boot_cache}"
127
      sed "s/^/$submenu_indentation/" << EOF
128
	kfreebsd_module		$(make_system_path_relative_to_its_root /boot)/zfs/zpool.cache type=/boot/zfs/zpool.cache
129 130 131 132
EOF
    ;;
  esac

133
  if [ x${kfreebsd_fs} = xufs ]; then
134
	load_kfreebsd_module ${kfreebsd_fs} true | sed "s/^/$submenu_indentation/"
135
  else
136
	load_kfreebsd_module ${kfreebsd_fs} false | sed "s/^/$submenu_indentation/"
137
  fi
138

139
  sed "s/^/$submenu_indentation/" << EOF
140
	set kFreeBSD.vfs.root.mountfrom=${kfreebsd_fs}:${kfreebsd_device}
141
	set kFreeBSD.vfs.root.mountfrom.options=rw
142 143 144 145
}
EOF
}

146 147 148 149 150 151
list=
for i in /boot/kfreebsd-* /boot/kernel/kernel ; do
  if grub_file_is_not_garbage "$i" ; then
    list="$list $i"
  fi
done
152
prepare_boot_cache=
153
boot_device_id=
154 155 156 157 158 159
title_correction_code=

# Extra indentation to add to menu entries in a submenu. We're not in a submenu
# yet, so it's empty. In a submenu it will be equal to '\t' (one tab).
submenu_indentation=""

160
is_top_level=true
161 162

while [ "x$list" != "x" ] ; do
163
  kfreebsd=`version_find_latest $list`
164
  gettext_printf "Found kernel of FreeBSD: %s\n" "$kfreebsd" >&2
165 166
  basename=`basename $kfreebsd`
  dirname=`dirname $kfreebsd`
167
  rel_dirname=`make_system_path_relative_to_its_root $dirname`
168

169 170
  if [ -f /boot/device.hints ] ; then
    devices=/boot/device.hints
171 172 173 174 175 176
    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
177 178 179
    ufs1 | ufs2)	kfreebsd_fs=ufs ;;
    ext2)		kfreebsd_fs=ext2fs ;;
    *)			kfreebsd_fs=${GRUB_FS} ;;
180 181
  esac

182
  case ${GRUB_FS} in
183 184
    zfs)
			# zpool name
185
			kfreebsd_device=$(${grub_probe} -t fs_label --device ${GRUB_DEVICE})
186
			# filesystem name (empty string for the main filesystem)
187
			kfreebsd_device="${kfreebsd_device}$(${grub_mkrelpath} / | sed -e "s,/*@$,,")"
188
    ;;
189 190 191 192 193
    *)
	  kfreebsd_device=${kfreebsd_fs}id/${GRUB_DEVICE_UUID}
	  # Debian GNU/kFreeBSD can't remount root if it's supplied as UUID but
	  # as an UUID
	  if [ "x${GRUB_DISTRIBUTOR}" = "xDebian" ] \
194
	      && ! (cat /etc/fstab | awk '!/^[[:space:]]*#/ && $2=="/" { print $1; }' \
195 196 197 198
	      | grep "${kfreebsd_fs}id/${GRUB_DEVICE_UUID}" > /dev/null); then
	      kfreebsd_device=${GRUB_DEVICE} 
	  fi
	  ;;
199 200
  esac

201
  version=`echo $basename | sed -e "s,^[^0-9]*-,,g;s/\.gz$//g"`
202 203
  alt_version=`echo $version | sed -e "s,\.old$,,g"`

204
  module_dir=
205 206
  for i in "/lib/modules/${version}" "/lib/modules/${alt_version}" \
      "/boot/kernel"; do
207
    if test -e "$i" ; then
208
      module_dir="$i"
209 210 211
      break
    fi
  done
212
  if test -n "${module_dir}" ; then
213
    gettext_printf "Found kernel module directory: %s\n" "${module_dir}" >&2
214
    module_dir_rel=$(make_system_path_relative_to_its_root $module_dir)
215 216
  fi

217
  if [ "x$is_top_level" = xtrue ] && [ "x${GRUB_DISABLE_SUBMENU}" != xy ]; then
218
      kfreebsd_entry "${OS}" "${version}" simple
219
      submenu_indentation="$grub_tab"
220 221 222 223 224 225
    
      if [ -z "$boot_device_id" ]; then
	  boot_device_id="$(grub_get_device_id "${GRUB_DEVICE}")"
      fi
      # TRANSLATORS: %s is replaced with an OS name
      echo "submenu '$(gettext_printf "Advanced options for %s" "${OS}" | grub_quote)' \$menuentry_id_option 'kfreebsd-advanced-$boot_device_id' {"
226
      is_top_level=false
227 228 229
  fi

  kfreebsd_entry "${OS}" "${version}" advanced
230
  if [ "x${GRUB_DISABLE_RECOVERY}" != "xtrue" ]; then
231
    kfreebsd_entry "${OS}" "${version}" recovery "-s"
232
  fi
233

234
  list=`echo $list | tr ' ' '\n' | fgrep -vx "$kfreebsd" | tr '\n' ' '`
235
done
236 237 238

# If at least one kernel was found, then we need to
# add a closing '}' for the submenu command.
239
if [ x"$is_top_level" != xtrue ]; then
240 241 242 243 244
  echo '}'
fi

echo "$title_correction_code"