2008-09-29 14:57:05 +00:00
|
|
|
# Helper library for grub-mkconfig
|
2010-05-01 19:39:32 +00:00
|
|
|
# Copyright (C) 2007,2008,2009,2010 Free Software Foundation, Inc.
|
2008-09-29 14:57:05 +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/>.
|
|
|
|
|
2011-04-10 13:30:45 +00:00
|
|
|
prefix="@prefix@"
|
|
|
|
exec_prefix="@exec_prefix@"
|
|
|
|
datarootdir="@datarootdir@"
|
|
|
|
datadir="@datadir@"
|
|
|
|
bindir="@bindir@"
|
|
|
|
sbindir="@sbindir@"
|
2013-09-18 18:26:16 +00:00
|
|
|
if [ "x$pkgdatadir" = x ]; then
|
|
|
|
pkgdatadir="${datadir}/@PACKAGE@"
|
|
|
|
fi
|
2008-09-29 14:57:05 +00:00
|
|
|
|
2009-12-09 16:20:17 +00:00
|
|
|
if test "x$grub_probe" = x; then
|
2012-12-28 06:57:17 +00:00
|
|
|
grub_probe="${sbindir}/@grub_probe@"
|
2009-12-09 16:20:17 +00:00
|
|
|
fi
|
2013-12-17 13:39:48 +00:00
|
|
|
if test "x$grub_file" = x; then
|
|
|
|
grub_file="${bindir}/@grub_file@"
|
|
|
|
fi
|
2009-12-09 16:20:17 +00:00
|
|
|
if test "x$grub_mkrelpath" = x; then
|
2012-12-28 06:57:17 +00:00
|
|
|
grub_mkrelpath="${bindir}/@grub_mkrelpath@"
|
2009-12-09 16:20:17 +00:00
|
|
|
fi
|
2008-09-29 14:57:05 +00:00
|
|
|
|
2012-02-08 18:26:01 +00:00
|
|
|
if which gettext >/dev/null 2>/dev/null; then
|
2012-02-03 10:42:22 +00:00
|
|
|
:
|
2010-04-19 19:25:41 +00:00
|
|
|
else
|
2012-02-03 10:42:22 +00:00
|
|
|
gettext () {
|
2012-06-27 09:22:43 +00:00
|
|
|
printf "%s" "$@"
|
2012-02-03 10:42:22 +00:00
|
|
|
}
|
2010-04-19 19:25:41 +00:00
|
|
|
fi
|
|
|
|
|
2008-11-20 19:22:20 +00:00
|
|
|
grub_warn ()
|
|
|
|
{
|
2012-02-03 10:42:22 +00:00
|
|
|
echo "$(gettext "Warning:")" "$@" >&2
|
2008-11-20 19:22:20 +00:00
|
|
|
}
|
|
|
|
|
2008-09-29 14:57:05 +00:00
|
|
|
make_system_path_relative_to_its_root ()
|
|
|
|
{
|
2011-04-10 13:30:45 +00:00
|
|
|
"${grub_mkrelpath}" "$1"
|
2008-09-29 14:57:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
is_path_readable_by_grub ()
|
|
|
|
{
|
2011-04-10 13:30:45 +00:00
|
|
|
path="$1"
|
2008-09-29 14:57:05 +00:00
|
|
|
|
|
|
|
# abort if path doesn't exist
|
2011-04-10 13:30:45 +00:00
|
|
|
if test -e "$path" ; then : ;else
|
2008-09-29 14:57:05 +00:00
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
|
2010-09-13 20:18:03 +00:00
|
|
|
# abort if file is in a filesystem we can't read
|
2011-04-10 13:30:45 +00:00
|
|
|
if "${grub_probe}" -t fs "$path" > /dev/null 2>&1 ; then : ; else
|
2008-09-29 14:57:05 +00:00
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
|
2011-01-22 01:26:49 +00:00
|
|
|
# ... or if we can't figure out the abstraction module, for example if
|
|
|
|
# memberlist fails on an LVM volume group.
|
2012-09-26 12:12:20 +00:00
|
|
|
if abstractions="`"${grub_probe}" -t abstraction "$path"`" 2> /dev/null ; then
|
2011-04-22 22:13:56 +00:00
|
|
|
:
|
|
|
|
else
|
2011-01-22 01:26:49 +00:00
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
|
2013-10-12 06:17:05 +00:00
|
|
|
if [ x$GRUB_ENABLE_CRYPTODISK = xy ]; then
|
2011-04-22 22:13:56 +00:00
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
|
|
|
|
for abstraction in $abstractions; do
|
2011-04-25 12:52:07 +00:00
|
|
|
if [ "x$abstraction" = xcryptodisk ]; then
|
2011-04-22 22:13:56 +00:00
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
2008-09-29 14:57:05 +00:00
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
convert_system_path_to_grub_path ()
|
|
|
|
{
|
2011-04-10 13:30:45 +00:00
|
|
|
path="$1"
|
2008-09-29 14:57:05 +00:00
|
|
|
|
2008-11-20 19:22:20 +00:00
|
|
|
grub_warn "convert_system_path_to_grub_path() is deprecated. Use prepare_grub_to_access_device() instead."
|
2008-09-29 14:57:05 +00:00
|
|
|
|
|
|
|
# abort if GRUB can't access the path
|
2011-04-10 13:30:45 +00:00
|
|
|
if is_path_readable_by_grub "${path}" ; then : ; else
|
2008-09-29 14:57:05 +00:00
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
|
2011-04-10 13:30:45 +00:00
|
|
|
if drive="`"${grub_probe}" -t drive "$path"`" ; then : ; else
|
2008-09-29 14:57:05 +00:00
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
|
2011-04-10 13:30:45 +00:00
|
|
|
if relative_path="`make_system_path_relative_to_its_root "$path"`" ; then : ; else
|
2008-09-29 14:57:05 +00:00
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
|
2011-04-10 13:30:45 +00:00
|
|
|
echo "${drive}${relative_path}"
|
2008-09-29 14:57:05 +00:00
|
|
|
}
|
|
|
|
|
2009-11-20 08:41:20 +00:00
|
|
|
save_default_entry ()
|
|
|
|
{
|
2010-02-25 13:30:50 +00:00
|
|
|
if [ "x${GRUB_SAVEDEFAULT}" = "xtrue" ] ; then
|
2010-01-05 10:30:14 +00:00
|
|
|
cat << EOF
|
2010-01-05 10:41:51 +00:00
|
|
|
savedefault
|
2010-01-05 10:30:14 +00:00
|
|
|
EOF
|
2009-11-20 08:41:20 +00:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2008-09-29 14:57:05 +00:00
|
|
|
prepare_grub_to_access_device ()
|
|
|
|
{
|
2013-10-14 16:27:29 +00:00
|
|
|
old_ifs="$IFS"
|
|
|
|
IFS='
|
|
|
|
'
|
|
|
|
partmap="`"${grub_probe}" --device $@ --target=partmap`"
|
2010-05-27 14:38:16 +00:00
|
|
|
for module in ${partmap} ; do
|
2011-01-09 22:23:25 +00:00
|
|
|
case "${module}" in
|
|
|
|
netbsd | openbsd)
|
|
|
|
echo "insmod part_bsd";;
|
|
|
|
*)
|
|
|
|
echo "insmod part_${module}";;
|
|
|
|
esac
|
2010-05-27 14:38:16 +00:00
|
|
|
done
|
|
|
|
|
2011-06-24 10:41:05 +00:00
|
|
|
# Abstraction modules aren't auto-loaded.
|
2013-10-14 16:27:29 +00:00
|
|
|
abstraction="`"${grub_probe}" --device $@ --target=abstraction`"
|
2011-06-24 10:41:05 +00:00
|
|
|
for module in ${abstraction} ; do
|
|
|
|
echo "insmod ${module}"
|
|
|
|
done
|
|
|
|
|
2013-10-14 16:27:29 +00:00
|
|
|
fs="`"${grub_probe}" --device $@ --target=fs`"
|
2009-08-23 15:27:07 +00:00
|
|
|
for module in ${fs} ; do
|
|
|
|
echo "insmod ${module}"
|
|
|
|
done
|
|
|
|
|
2013-10-12 06:17:05 +00:00
|
|
|
if [ x$GRUB_ENABLE_CRYPTODISK = xy ]; then
|
2015-03-28 19:13:35 +00:00
|
|
|
for uuid in `"${grub_probe}" --device $@ --target=cryptodisk_uuid`; do
|
2011-04-25 12:52:07 +00:00
|
|
|
echo "cryptomount -u $uuid"
|
2011-04-22 22:13:56 +00:00
|
|
|
done
|
|
|
|
fi
|
|
|
|
|
2008-09-29 14:57:05 +00:00
|
|
|
# If there's a filesystem UUID that GRUB is capable of identifying, use it;
|
|
|
|
# otherwise set root as per value in device.map.
|
2013-10-14 16:27:29 +00:00
|
|
|
fs_hint="`"${grub_probe}" --device $@ --target=compatibility_hint`"
|
2012-01-29 19:52:37 +00:00
|
|
|
if [ "x$fs_hint" != x ]; then
|
|
|
|
echo "set root='$fs_hint'"
|
|
|
|
fi
|
2013-10-14 16:27:29 +00:00
|
|
|
if fs_uuid="`"${grub_probe}" --device $@ --target=fs_uuid 2> /dev/null`" ; then
|
|
|
|
hints="`"${grub_probe}" --device $@ --target=hints_string 2> /dev/null`" || hints=
|
2011-12-23 18:25:24 +00:00
|
|
|
echo "if [ x\$feature_platform_search_hint = xy ]; then"
|
2011-12-23 17:19:16 +00:00
|
|
|
echo " search --no-floppy --fs-uuid --set=root ${hints} ${fs_uuid}"
|
|
|
|
echo "else"
|
|
|
|
echo " search --no-floppy --fs-uuid --set=root ${fs_uuid}"
|
|
|
|
echo "fi"
|
2008-09-29 14:57:05 +00:00
|
|
|
fi
|
2013-10-14 16:27:29 +00:00
|
|
|
IFS="$old_ifs"
|
2008-09-29 14:57:05 +00:00
|
|
|
}
|
|
|
|
|
2012-03-04 13:55:13 +00:00
|
|
|
grub_get_device_id ()
|
|
|
|
{
|
2013-10-14 16:27:29 +00:00
|
|
|
old_ifs="$IFS"
|
|
|
|
IFS='
|
|
|
|
'
|
2012-03-04 13:55:13 +00:00
|
|
|
device="$1"
|
2013-10-14 16:27:29 +00:00
|
|
|
if fs_uuid="`"${grub_probe}" --device ${device} --target=fs_uuid 2> /dev/null`" ; then
|
2012-03-04 13:55:13 +00:00
|
|
|
echo "$fs_uuid";
|
|
|
|
else
|
2013-10-14 16:27:29 +00:00
|
|
|
echo $device |sed 's, ,_,g'
|
2012-03-04 13:55:13 +00:00
|
|
|
fi
|
2013-10-14 16:27:29 +00:00
|
|
|
IFS="$old_ifs"
|
2012-03-04 13:55:13 +00:00
|
|
|
}
|
|
|
|
|
2008-09-29 14:57:05 +00:00
|
|
|
grub_file_is_not_garbage ()
|
|
|
|
{
|
|
|
|
if test -f "$1" ; then
|
|
|
|
case "$1" in
|
2009-09-23 09:46:08 +00:00
|
|
|
*.dpkg-*) return 1 ;; # debian dpkg
|
2012-04-18 21:31:26 +00:00
|
|
|
*.rpmsave|*.rpmnew) return 1 ;;
|
2011-09-05 12:58:33 +00:00
|
|
|
README*|*/README*) return 1 ;; # documentation
|
2017-11-29 13:35:37 +00:00
|
|
|
*.sig) return 1 ;; # signatures
|
2008-09-29 14:57:05 +00:00
|
|
|
esac
|
|
|
|
else
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
return 0
|
|
|
|
}
|
2009-08-07 12:05:06 +00:00
|
|
|
|
2012-03-04 22:13:16 +00:00
|
|
|
version_sort ()
|
|
|
|
{
|
|
|
|
case $version_sort_sort_has_v in
|
|
|
|
yes)
|
|
|
|
LC_ALL=C sort -V;;
|
|
|
|
no)
|
|
|
|
LC_ALL=C sort -n;;
|
|
|
|
*)
|
2012-03-19 15:27:59 +00:00
|
|
|
if sort -V </dev/null > /dev/null 2>&1; then
|
2012-03-04 22:13:16 +00:00
|
|
|
version_sort_sort_has_v=yes
|
|
|
|
LC_ALL=C sort -V
|
|
|
|
else
|
|
|
|
version_sort_sort_has_v=no
|
|
|
|
LC_ALL=C sort -n
|
|
|
|
fi;;
|
|
|
|
esac
|
|
|
|
}
|
|
|
|
|
2009-08-07 12:05:06 +00:00
|
|
|
version_test_numeric ()
|
|
|
|
{
|
2011-11-10 07:46:09 +00:00
|
|
|
version_test_numeric_a="$1"
|
|
|
|
version_test_numeric_cmp="$2"
|
|
|
|
version_test_numeric_b="$3"
|
|
|
|
if [ "$version_test_numeric_a" = "$version_test_numeric_b" ] ; then
|
|
|
|
case "$version_test_numeric_cmp" in
|
2009-08-07 12:05:06 +00:00
|
|
|
ge|eq|le) return 0 ;;
|
|
|
|
gt|lt) return 1 ;;
|
|
|
|
esac
|
|
|
|
fi
|
2011-11-10 07:46:09 +00:00
|
|
|
if [ "$version_test_numeric_cmp" = "lt" ] ; then
|
|
|
|
version_test_numeric_c="$version_test_numeric_a"
|
|
|
|
version_test_numeric_a="$version_test_numeric_b"
|
|
|
|
version_test_numeric_b="$version_test_numeric_c"
|
2009-08-07 12:05:06 +00:00
|
|
|
fi
|
2012-03-04 22:13:16 +00:00
|
|
|
if (echo "$version_test_numeric_a" ; echo "$version_test_numeric_b") | version_sort | head -n 1 | grep -qx "$version_test_numeric_b" ; then
|
2009-08-07 12:05:06 +00:00
|
|
|
return 0
|
|
|
|
else
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
version_test_gt ()
|
|
|
|
{
|
2011-11-10 07:46:09 +00:00
|
|
|
version_test_gt_a="`echo "$1" | sed -e "s/[^-]*-//"`"
|
|
|
|
version_test_gt_b="`echo "$2" | sed -e "s/[^-]*-//"`"
|
|
|
|
version_test_gt_cmp=gt
|
|
|
|
if [ "x$version_test_gt_b" = "x" ] ; then
|
2009-08-07 12:05:06 +00:00
|
|
|
return 0
|
|
|
|
fi
|
2011-11-10 07:46:09 +00:00
|
|
|
case "$version_test_gt_a:$version_test_gt_b" in
|
2009-08-07 12:05:06 +00:00
|
|
|
*.old:*.old) ;;
|
2014-12-07 11:56:17 +00:00
|
|
|
*.old:*) version_test_gt_a="`echo "$version_test_gt_a" | sed -e 's/\.old$//'`" ; version_test_gt_cmp=gt ;;
|
|
|
|
*:*.old) version_test_gt_b="`echo "$version_test_gt_b" | sed -e 's/\.old$//'`" ; version_test_gt_cmp=ge ;;
|
2009-08-07 12:05:06 +00:00
|
|
|
esac
|
2011-11-10 07:46:09 +00:00
|
|
|
version_test_numeric "$version_test_gt_a" "$version_test_gt_cmp" "$version_test_gt_b"
|
2011-04-10 13:30:45 +00:00
|
|
|
return "$?"
|
2009-08-07 12:05:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
version_find_latest ()
|
|
|
|
{
|
2011-11-10 07:46:09 +00:00
|
|
|
version_find_latest_a=""
|
2011-04-10 13:30:45 +00:00
|
|
|
for i in "$@" ; do
|
2011-11-10 07:46:09 +00:00
|
|
|
if version_test_gt "$i" "$version_find_latest_a" ; then
|
|
|
|
version_find_latest_a="$i"
|
2009-08-07 12:05:06 +00:00
|
|
|
fi
|
|
|
|
done
|
2011-11-10 07:46:09 +00:00
|
|
|
echo "$version_find_latest_a"
|
2009-08-07 12:05:06 +00:00
|
|
|
}
|
2010-04-13 12:57:56 +00:00
|
|
|
|
2012-09-17 15:58:50 +00:00
|
|
|
# One layer of quotation is eaten by "" and the second by sed; so this turns
|
|
|
|
# ' into \'.
|
2012-03-04 21:18:33 +00:00
|
|
|
grub_quote () {
|
2012-07-22 18:02:17 +00:00
|
|
|
sed "s/'/'\\\\''/g"
|
2012-03-04 21:18:33 +00:00
|
|
|
}
|
|
|
|
|
2010-04-13 12:57:56 +00:00
|
|
|
gettext_quoted () {
|
2012-07-22 18:02:17 +00:00
|
|
|
gettext "$@" | grub_quote
|
2010-12-21 12:49:29 +00:00
|
|
|
}
|
|
|
|
|
2012-07-22 18:02:17 +00:00
|
|
|
# Run the first argument through gettext, and then pass that and all
|
2010-12-21 12:49:29 +00:00
|
|
|
# remaining arguments to printf. This is a useful abbreviation and tends to
|
|
|
|
# be easier to type.
|
|
|
|
gettext_printf () {
|
2011-11-10 07:46:09 +00:00
|
|
|
gettext_printf_format="$1"
|
2010-12-21 12:49:29 +00:00
|
|
|
shift
|
2012-03-04 21:18:33 +00:00
|
|
|
printf "$(gettext "$gettext_printf_format")" "$@"
|
2010-04-13 12:57:56 +00:00
|
|
|
}
|
2010-07-02 11:32:05 +00:00
|
|
|
|
|
|
|
uses_abstraction () {
|
2011-04-10 13:30:45 +00:00
|
|
|
device="$1"
|
2013-10-14 16:27:29 +00:00
|
|
|
old_ifs="$IFS"
|
|
|
|
IFS='
|
|
|
|
'
|
2010-07-02 11:32:05 +00:00
|
|
|
|
2013-10-14 16:27:29 +00:00
|
|
|
abstraction="`"${grub_probe}" --device ${device} --target=abstraction`"
|
2010-07-02 11:32:05 +00:00
|
|
|
for module in ${abstraction}; do
|
|
|
|
if test "x${module}" = "x$2"; then
|
2013-10-14 16:27:29 +00:00
|
|
|
IFS="$old_ifs"
|
2010-07-02 11:32:05 +00:00
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
done
|
2013-10-14 16:27:29 +00:00
|
|
|
IFS="$old_ifs"
|
2010-07-02 11:32:05 +00:00
|
|
|
return 1
|
|
|
|
}
|
2012-04-07 17:49:25 +00:00
|
|
|
|
|
|
|
print_option_help () {
|
|
|
|
if test x$print_option_help_wc = x; then
|
2012-05-27 11:14:42 +00:00
|
|
|
if wc -L </dev/null > /dev/null 2>&1; then
|
2012-04-07 17:49:25 +00:00
|
|
|
print_option_help_wc=-L
|
2012-05-27 11:14:42 +00:00
|
|
|
elif wc -m </dev/null > /dev/null 2>&1; then
|
2012-04-07 17:49:25 +00:00
|
|
|
print_option_help_wc=-m
|
|
|
|
else
|
|
|
|
print_option_help_wc=-b
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
if test x$grub_have_fmt = x; then
|
2012-05-27 11:14:42 +00:00
|
|
|
if fmt -w 40 </dev/null > /dev/null 2>&1; then
|
2012-04-07 17:49:25 +00:00
|
|
|
grub_have_fmt=y;
|
|
|
|
else
|
|
|
|
grub_have_fmt=n;
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
print_option_help_lead=" $1"
|
|
|
|
print_option_help_lspace="$(echo "$print_option_help_lead" | wc $print_option_help_wc)"
|
|
|
|
print_option_help_fill="$((26 - print_option_help_lspace))"
|
2012-06-27 09:22:43 +00:00
|
|
|
printf "%s" "$print_option_help_lead"
|
2012-04-07 17:49:25 +00:00
|
|
|
if test $print_option_help_fill -le 0; then
|
|
|
|
print_option_help_nl=y
|
|
|
|
echo
|
|
|
|
else
|
|
|
|
print_option_help_i=0;
|
|
|
|
while test $print_option_help_i -lt $print_option_help_fill; do
|
2012-06-27 09:22:43 +00:00
|
|
|
printf " "
|
2012-04-07 17:49:25 +00:00
|
|
|
print_option_help_i=$((print_option_help_i+1))
|
|
|
|
done
|
|
|
|
print_option_help_nl=n
|
|
|
|
fi
|
|
|
|
if test x$grub_have_fmt = xy; then
|
|
|
|
print_option_help_split="$(echo "$2" | fmt -w 50)"
|
|
|
|
else
|
|
|
|
print_option_help_split="$2"
|
|
|
|
fi
|
|
|
|
if test x$print_option_help_nl = xy; then
|
|
|
|
echo "$print_option_help_split" | awk \
|
|
|
|
'{ print " " $0; }'
|
|
|
|
else
|
|
|
|
echo "$print_option_help_split" | awk 'BEGIN { n = 0 }
|
|
|
|
{ if (n == 1) print " " $0; else print $0; n = 1 ; }'
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
grub_fmt () {
|
|
|
|
if test x$grub_have_fmt = x; then
|
|
|
|
if fmt -w 40 < /dev/null > /dev/null; then
|
|
|
|
grub_have_fmt=y;
|
|
|
|
else
|
|
|
|
grub_have_fmt=n;
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
if test x$grub_have_fmt = xy; then
|
|
|
|
fmt
|
|
|
|
else
|
|
|
|
cat
|
|
|
|
fi
|
|
|
|
}
|
2012-09-18 11:04:06 +00:00
|
|
|
|
|
|
|
grub_tab=" "
|
|
|
|
|
|
|
|
grub_add_tab () {
|
|
|
|
sed -e "s/^/$grub_tab/"
|
|
|
|
}
|
|
|
|
|