You need to sign in or sign up before continuing.
10_netbsd.in 6.26 KB
Newer Older
1 2
#! /bin/sh
set -e
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19

# grub-mkconfig helper script.
# Copyright (C) 2006,2007,2008,2009,2010  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/>.

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

if [ "x${GRUB_DISTRIBUTOR}" = "x" ] ; then
29
  OS="NetBSD"
30 31 32 33
else
  OS="${GRUB_DISTRIBUTOR} NetBSD"
fi

34 35 36 37 38
netbsd_load_fs_module ()
{
  loader="$1"	# "knetbsd" or "multiboot"
  kernel="$2"	# absolute path to the kernel file

39 40
  case $(zcat -f "${kernel}" | file -bL - | cut -d , -f 2 | tr -d ' ') in
    Intel80386)
41
      karch="i386"
42 43 44 45 46 47 48 49
      ;;
    x86-64)
      karch="amd64"
      ;;
    *)
      return
      ;;
  esac
50

51
  case $(${grub_probe} --target=fs -d ${GRUB_DEVICE}) in
52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
    ext2)
      kmod="ext2fs"
      ;;
    fat)
      kmod="msdosfs"
      ;;
    ntfs)
      kmod="ntfs"
      ;;
    ufs*)
      kmod="ffs"
      ;;
    *)
      return
      ;;
  esac

  kversion=$(zcat -f "${kernel}" | strings | sed -n -e '/^@(#)NetBSD/ { s/^@(#)NetBSD \([0-9\.]*\) .*$/\1/g ; p ; q ; }')
70
  kmodule="/stand/${karch}/${kversion}/modules/${kmod}/${kmod}.kmod"
71

72
  if test -z "$karch" || test -z "$kversion" || test ! -f "${kmodule}"; then
73 74 75 76
    return
  fi

  kmodule_rel=$(make_system_path_relative_to_its_root "$kmodule") || return
77
  prepare_grub_to_access_device $(${grub_probe} -t device "${kmodule}") | sed -e 's,^,	,' | sed "s/^/$submenu_indentation/"
78 79
  case "${loader}" in
    knetbsd)
80
      printf "${grub_tab}knetbsd_module_elf %s\n" "${kmodule_rel}" | sed "s/^/$submenu_indentation/"
81 82
      ;;
    multiboot)
83
      printf "${grub_tab}module %s\n" "${kmodule_rel}" | sed "s/^/$submenu_indentation/"
84 85 86 87
      ;;
  esac
}

88 89
title_correction_code=

90 91 92 93
netbsd_entry ()
{
  loader="$1"	# "knetbsd" or "multiboot"
  kernel="$2"	# absolute path to the kernel file
94
  type="$3"
95 96 97 98
  args="$4"	# extra arguments appended to loader command

  kroot_device="$(echo ${GRUB_DEVICE} | sed -e 's,^/dev/r,,')"

99 100 101
  if [ -z "$boot_device_id" ]; then
      boot_device_id="$(grub_get_device_id "${GRUB_DEVICE}")"
  fi
102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121

  if [ x$type != xsimple ] ; then
      if [ x$type = xrecovery ] ; then
	  title="$(gettext_printf "%s, with kernel %s (via %s, recovery mode)" "${OS}" "$(echo ${kernel} | sed -e 's,^.*/,,')" "${loader}")"
      else
	  title="$(gettext_printf "%s, with kernel %s (via %s)" "${OS}" "$(echo ${kernel} | sed -e 's,^.*/,,')" "${loader}")"
      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" "netbsd-advanced-$boot_device_id>netbsd-${loader}-$kernel-$type-$boot_device_id")"
      fi

      echo "menuentry '$(echo "$title" | grub_quote)' \$menuentry_id_option 'netbsd-${loader}-$kernel-$type-$boot_device_id' {"  | sed "s/^/$submenu_indentation/"
  else
      echo "menuentry '$(echo "$OS" | grub_quote)' \$menuentry_id_option 'netbsd-${loader}-simple-$boot_device_id' {"  | sed "s/^/$submenu_indentation/"
  fi

  printf "%s\n" "${prepare_boot_cache}" | sed "s/^/$submenu_indentation/"
122 123
  case "${loader}" in
    knetbsd)
124
      printf "${grub_tab}knetbsd %s -r %s %s\n" \
125
        "${kernel}" "${kroot_device}" "${GRUB_CMDLINE_NETBSD} ${args}" | sed "s/^/$submenu_indentation/"
126 127
      ;;
    multiboot)
128
      printf "${grub_tab}multiboot %s %s root=%s %s\n" \
129
        "${kernel}" "${kernel}" "${kroot_device}" "${GRUB_CMDLINE_NETBSD} ${args}" | sed "s/^/$submenu_indentation/"
130 131
      ;;
  esac
132 133 134

  netbsd_load_fs_module "${loader}" "${kernel}"

135
  printf "}\n" | sed "s/^/$submenu_indentation/"
136 137 138
}

prepare_boot_cache="$(prepare_grub_to_access_device ${GRUB_DEVICE} | sed -e 's,^,	,')"
139
boot_device_id=
140 141 142 143 144

# We look for NetBSD kernels in / but not in subdirectories.  We simply
# pick all statically linked ELF executable files (or links) in / with a
# name that starts with `netbsd'.
pattern="^ELF[^,]*executable.*statically linked"
145 146 147 148
# 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=""

149
is_top_level=true
150
for k in /netbsd $(ls -t /netbsd?* 2>/dev/null) ; do
151 152 153
  if ! grub_file_is_not_garbage "$k" ; then
    continue
  fi
154
  if ! (zcat -f "$k" | file -bL - | grep -q "${pattern}") 2>/dev/null ; then
155 156 157
    continue
  fi

158
  gettext_printf "Found NetBSD kernel: %s\n" "$k" >&2
159

160
  if [ "x$is_top_level" = xtrue ] && [ "x${GRUB_DISABLE_SUBMENU}" != xy ]; then
161
      netbsd_entry "knetbsd"   "$k" simple "${GRUB_CMDLINE_NETBSD_DEFAULT}"
162
    submenu_indentation="$grub_tab"
163 164 165 166 167 168
    
    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 'netbsd-advanced-$boot_device_id' {"
169
    is_top_level=false
170 171 172 173
  fi

  netbsd_entry "knetbsd"   "$k" advanced "${GRUB_CMDLINE_NETBSD_DEFAULT}"
  netbsd_entry "multiboot" "$k" advanced "${GRUB_CMDLINE_NETBSD_DEFAULT}"
174
  if [ "x${GRUB_DISABLE_RECOVERY}" != "xtrue" ]; then
175 176
    netbsd_entry "knetbsd"   "$k" recovery "-s"
    netbsd_entry "multiboot" "$k" recovery "-s"
177 178
  fi
done
179 180 181

# If at least one kernel was found, then we need to
# add a closing '}' for the submenu command.
182
if [ x"$is_top_level" != xtrue ]; then
183 184 185 186
  echo '}'
fi

echo "$title_correction_code"