1 # Helper library for grub-mkconfig
2 # Copyright (C) 2007,2008,2009,2010 Free Software Foundation, Inc.
4 # GRUB is free software: you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation, either version 3 of the License, or
7 # (at your option) any later version.
9 # GRUB is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
14 # You should have received a copy of the GNU General Public License
15 # along with GRUB. If not, see <http://www.gnu.org/licenses/>.
18 exec_prefix="@exec_prefix@"
19 datarootdir="@datarootdir@"
23 if [ "x$pkgdatadir" = x ]; then
24 pkgdatadir="${datadir}/@PACKAGE@"
27 if test "x$grub_probe" = x; then
28 grub_probe="${sbindir}/@grub_probe@"
30 if test "x$grub_file" = x; then
31 grub_file="${bindir}/@grub_file@"
33 if test "x$grub_mkrelpath" = x; then
34 grub_mkrelpath="${bindir}/@grub_mkrelpath@"
37 if which gettext >/dev/null 2>/dev/null; then
47 echo "$(gettext "Warning:")" "$@" >&2
50 make_system_path_relative_to_its_root ()
52 "${grub_mkrelpath}" "$1"
55 is_path_readable_by_grub ()
59 # abort if path doesn't exist
60 if test -e "$path" ; then : ;else
64 # abort if file is in a filesystem we can't read
65 if "${grub_probe}" -t fs "$path" > /dev/null 2>&1 ; then : ; else
69 # ... or if we can't figure out the abstraction module, for example if
70 # memberlist fails on an LVM volume group.
71 if abstractions="`"${grub_probe}" -t abstraction "$path"`" 2> /dev/null ; then
77 if [ x$GRUB_ENABLE_CRYPTODISK = xy ]; then
81 for abstraction in $abstractions; do
82 if [ "x$abstraction" = xcryptodisk ]; then
90 convert_system_path_to_grub_path ()
94 grub_warn "convert_system_path_to_grub_path() is deprecated. Use prepare_grub_to_access_device() instead."
96 # abort if GRUB can't access the path
97 if is_path_readable_by_grub "${path}" ; then : ; else
101 if drive="`"${grub_probe}" -t drive "$path"`" ; then : ; else
105 if relative_path="`make_system_path_relative_to_its_root "$path"`" ; then : ; else
109 echo "${drive}${relative_path}"
112 save_default_entry ()
114 if [ "x${GRUB_SAVEDEFAULT}" = "xtrue" ] ; then
121 prepare_grub_to_access_device ()
127 partmap="`"${grub_probe}" --device $@ --target=partmap`"
128 for module in ${partmap} ; do
131 echo "insmod part_bsd";;
133 echo "insmod part_${module}";;
138 # Abstraction modules aren't auto-loaded.
139 abstraction="`"${grub_probe}" --device $@ --target=abstraction`"
140 for module in ${abstraction} ; do
141 echo "insmod ${module}"
144 # fs="`"${grub_probe}" --device $@ --target=fs`"
145 # for module in ${fs} ; do
146 # echo "insmod ${module}"
149 if [ x$GRUB_ENABLE_CRYPTODISK = xy ]; then
150 for uuid in `"${grub_probe}" --device $@ --target=cryptodisk_uuid`; do
151 echo "cryptomount -u $uuid"
155 # If there's a filesystem UUID that GRUB is capable of identifying, use it;
156 # otherwise set root as per value in device.map.
157 fs_hint="`"${grub_probe}" --device $@ --target=compatibility_hint`"
158 if [ "x$fs_hint" != x ]; then
159 echo "set root='$fs_hint'"
161 if fs_uuid="`"${grub_probe}" --device $@ --target=fs_uuid 2> /dev/null`" ; then
162 hints="`"${grub_probe}" --device $@ --target=hints_string 2> /dev/null`" || hints=
163 echo "if [ x\$feature_platform_search_hint = xy ]; then"
164 echo " search --no-floppy --fs-uuid --set=root ${hints} ${fs_uuid}"
166 echo " search --no-floppy --fs-uuid --set=root ${fs_uuid}"
172 grub_get_device_id ()
178 if fs_uuid="`"${grub_probe}" --device ${device} --target=fs_uuid 2> /dev/null`" ; then
181 echo $device |sed 's, ,_,g'
186 grub_file_is_not_garbage ()
188 if test -f "$1" ; then
190 *.dpkg-*) return 1 ;; # debian dpkg
191 *.rpmsave|*.rpmnew) return 1 ;;
192 README*|*/README*) return 1 ;; # documentation
193 *.sig) return 1 ;; # signatures
203 case $version_sort_sort_has_v in
209 if sort -V </dev/null > /dev/null 2>&1; then
210 version_sort_sort_has_v=yes
213 version_sort_sort_has_v=no
219 version_test_numeric ()
221 version_test_numeric_a="$1"
222 version_test_numeric_cmp="$2"
223 version_test_numeric_b="$3"
224 if [ "$version_test_numeric_a" = "$version_test_numeric_b" ] ; then
225 case "$version_test_numeric_cmp" in
226 ge|eq|le) return 0 ;;
230 if [ "$version_test_numeric_cmp" = "lt" ] ; then
231 version_test_numeric_c="$version_test_numeric_a"
232 version_test_numeric_a="$version_test_numeric_b"
233 version_test_numeric_b="$version_test_numeric_c"
235 if (echo "$version_test_numeric_a" ; echo "$version_test_numeric_b") | version_sort | head -n 1 | grep -qx "$version_test_numeric_b" ; then
244 version_test_gt_a="`echo "$1" | sed -e "s/[^-]*-//"`"
245 version_test_gt_b="`echo "$2" | sed -e "s/[^-]*-//"`"
246 version_test_gt_cmp=gt
247 if [ "x$version_test_gt_b" = "x" ] ; then
250 case "$version_test_gt_a:$version_test_gt_b" in
252 *.old:*) version_test_gt_a="`echo "$version_test_gt_a" | sed -e 's/\.old$//'`" ; version_test_gt_cmp=gt ;;
253 *:*.old) version_test_gt_b="`echo "$version_test_gt_b" | sed -e 's/\.old$//'`" ; version_test_gt_cmp=ge ;;
255 version_test_numeric "$version_test_gt_a" "$version_test_gt_cmp" "$version_test_gt_b"
259 version_find_latest ()
261 version_find_latest_a=""
263 if version_test_gt "$i" "$version_find_latest_a" ; then
264 version_find_latest_a="$i"
267 echo "$version_find_latest_a"
270 # One layer of quotation is eaten by "" and the second by sed; so this turns
277 gettext "$@" | grub_quote
280 # Run the first argument through gettext, and then pass that and all
281 # remaining arguments to printf. This is a useful abbreviation and tends to
284 gettext_printf_format="$1"
286 printf "$(gettext "$gettext_printf_format")" "$@"
289 uses_abstraction () {
295 abstraction="`"${grub_probe}" --device ${device} --target=abstraction`"
296 for module in ${abstraction}; do
297 if test "x${module}" = "x$2"; then
306 print_option_help () {
307 if test x$print_option_help_wc = x; then
308 if wc -L </dev/null > /dev/null 2>&1; then
309 print_option_help_wc=-L
310 elif wc -m </dev/null > /dev/null 2>&1; then
311 print_option_help_wc=-m
313 print_option_help_wc=-b
316 if test x$grub_have_fmt = x; then
317 if fmt -w 40 </dev/null > /dev/null 2>&1; then
323 print_option_help_lead=" $1"
324 print_option_help_lspace="$(echo "$print_option_help_lead" | wc $print_option_help_wc)"
325 print_option_help_fill="$((26 - print_option_help_lspace))"
326 printf "%s" "$print_option_help_lead"
327 if test $print_option_help_fill -le 0; then
328 print_option_help_nl=y
331 print_option_help_i=0;
332 while test $print_option_help_i -lt $print_option_help_fill; do
334 print_option_help_i=$((print_option_help_i+1))
336 print_option_help_nl=n
338 if test x$grub_have_fmt = xy; then
339 print_option_help_split="$(echo "$2" | fmt -w 50)"
341 print_option_help_split="$2"
343 if test x$print_option_help_nl = xy; then
344 echo "$print_option_help_split" | awk \
347 echo "$print_option_help_split" | awk 'BEGIN { n = 0 }
348 { if (n == 1) print " " $0; else print $0; n = 1 ; }'
353 if test x$grub_have_fmt = x; then
354 if fmt -w 40 < /dev/null > /dev/null; then
361 if test x$grub_have_fmt = xy; then
371 sed -e "s/^/$grub_tab/"