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/>.
|
|
|
|
|
|
|
|
transform="@program_transform_name@"
|
|
|
|
|
|
|
|
prefix=@prefix@
|
|
|
|
exec_prefix=@exec_prefix@
|
|
|
|
datarootdir=@datarootdir@
|
|
|
|
datadir=@datadir@
|
2009-11-08 00:49:15 +00:00
|
|
|
bindir=@bindir@
|
2008-09-29 14:57:05 +00:00
|
|
|
sbindir=@sbindir@
|
|
|
|
pkgdatadir=${datadir}/`echo @PACKAGE_TARNAME@ | sed "${transform}"`
|
|
|
|
|
2009-12-09 16:20:17 +00:00
|
|
|
if test "x$grub_probe" = x; then
|
|
|
|
grub_probe=${sbindir}/`echo grub-probe | sed ${transform}`
|
|
|
|
fi
|
|
|
|
if test "x$grub_mkrelpath" = x; then
|
|
|
|
grub_mkrelpath=${bindir}/`echo grub-mkrelpath | sed ${transform}`
|
|
|
|
fi
|
2010-09-08 12:37:19 +00:00
|
|
|
if test "x$grub_fstest" = x; then
|
|
|
|
grub_fstest=${bindir}/`echo grub-fstest | sed ${transform}`
|
|
|
|
fi
|
2008-09-29 14:57:05 +00:00
|
|
|
|
2010-04-19 19:25:41 +00:00
|
|
|
if $(which gettext >/dev/null 2>/dev/null) ; then
|
|
|
|
gettext="gettext"
|
|
|
|
else
|
|
|
|
gettext="echo"
|
|
|
|
fi
|
|
|
|
|
2008-11-20 19:22:20 +00:00
|
|
|
grub_warn ()
|
|
|
|
{
|
|
|
|
echo "Warning: $@" >&2
|
|
|
|
}
|
|
|
|
|
2008-09-29 14:57:05 +00:00
|
|
|
make_system_path_relative_to_its_root ()
|
|
|
|
{
|
2010-05-01 19:39:32 +00:00
|
|
|
${grub_mkrelpath} $1
|
2008-09-29 14:57:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
is_path_readable_by_grub ()
|
|
|
|
{
|
|
|
|
path=$1
|
|
|
|
|
|
|
|
# abort if path doesn't exist
|
|
|
|
if test -e $path ; then : ;else
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
|
2010-09-08 12:37:19 +00:00
|
|
|
# abort if file read through GRUB doesn't match file read through system
|
|
|
|
# facilities
|
|
|
|
device=$(${grub_probe} --target=device $path)
|
|
|
|
relpath=$(${grub_mkrelpath} $path)
|
|
|
|
if ${grub_fstest} $device cmp $relpath $path > /dev/null 2>&1 ; then : ; else
|
2008-09-29 14:57:05 +00:00
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
convert_system_path_to_grub_path ()
|
|
|
|
{
|
|
|
|
path=$1
|
|
|
|
|
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
|
|
|
|
if is_path_readable_by_grub ${path} ; then : ; else
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
if drive=`${grub_probe} -t drive $path` ; then : ; else
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
if relative_path=`make_system_path_relative_to_its_root $path` ; then : ; else
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo ${drive}${relative_path}
|
|
|
|
}
|
|
|
|
|
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 ()
|
|
|
|
{
|
|
|
|
device=$1
|
|
|
|
|
|
|
|
# Abstraction modules aren't auto-loaded.
|
|
|
|
abstraction="`${grub_probe} --device ${device} --target=abstraction`"
|
2009-12-23 16:41:32 +00:00
|
|
|
for module in ${abstraction} ; do
|
2009-08-06 07:05:48 +00:00
|
|
|
echo "insmod ${module}"
|
|
|
|
done
|
2008-09-29 14:57:05 +00:00
|
|
|
|
2010-05-27 14:38:16 +00:00
|
|
|
partmap="`${grub_probe} --device ${device} --target=partmap`"
|
|
|
|
for module in ${partmap} ; do
|
2010-06-04 12:53:30 +00:00
|
|
|
echo "insmod part_${module}"
|
2010-05-27 14:38:16 +00:00
|
|
|
done
|
|
|
|
|
2009-08-23 15:27:07 +00:00
|
|
|
fs="`${grub_probe} --device ${device} --target=fs`"
|
|
|
|
for module in ${fs} ; do
|
|
|
|
echo "insmod ${module}"
|
|
|
|
done
|
|
|
|
|
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.
|
2010-02-14 13:47:50 +00:00
|
|
|
echo "set root='`${grub_probe} --device ${device} --target=drive`'"
|
2008-09-29 14:57:05 +00:00
|
|
|
if fs_uuid="`${grub_probe} --device ${device} --target=fs_uuid 2> /dev/null`" ; then
|
2009-06-04 11:37:44 +00:00
|
|
|
echo "search --no-floppy --fs-uuid --set ${fs_uuid}"
|
2008-09-29 14:57:05 +00:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
2010-07-02 09:50:04 +00:00
|
|
|
README*) return 1 ;; # documentation
|
2008-09-29 14:57:05 +00:00
|
|
|
esac
|
|
|
|
else
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
return 0
|
|
|
|
}
|
2009-08-07 12:05:06 +00:00
|
|
|
|
|
|
|
version_test_numeric ()
|
|
|
|
{
|
|
|
|
local a=$1
|
|
|
|
local cmp=$2
|
|
|
|
local b=$3
|
|
|
|
if [ "$a" = "$b" ] ; then
|
|
|
|
case $cmp in
|
|
|
|
ge|eq|le) return 0 ;;
|
|
|
|
gt|lt) return 1 ;;
|
|
|
|
esac
|
|
|
|
fi
|
|
|
|
if [ "$cmp" = "lt" ] ; then
|
|
|
|
c=$a
|
|
|
|
a=$b
|
|
|
|
b=$c
|
|
|
|
fi
|
|
|
|
if (echo $a ; echo $b) | sort -n | head -n 1 | grep -qx $b ; then
|
|
|
|
return 0
|
|
|
|
else
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
version_test_gt ()
|
|
|
|
{
|
2009-08-08 05:37:49 +00:00
|
|
|
local a=`echo $1 | sed -e "s/[^-]*-//"`
|
|
|
|
local b=`echo $2 | sed -e "s/[^-]*-//"`
|
2009-08-07 12:05:06 +00:00
|
|
|
local cmp=gt
|
|
|
|
if [ "x$b" = "x" ] ; then
|
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
case $a:$b in
|
|
|
|
*.old:*.old) ;;
|
2009-08-08 05:37:49 +00:00
|
|
|
*.old:*) a=`echo -n $a | sed -e s/\.old$//` ; cmp=gt ;;
|
|
|
|
*:*.old) b=`echo -n $b | sed -e s/\.old$//` ; cmp=ge ;;
|
2009-08-07 12:05:06 +00:00
|
|
|
esac
|
|
|
|
version_test_numeric $a $cmp $b
|
|
|
|
return $?
|
|
|
|
}
|
|
|
|
|
|
|
|
version_find_latest ()
|
|
|
|
{
|
|
|
|
local a=""
|
|
|
|
for i in $@ ; do
|
|
|
|
if version_test_gt "$i" "$a" ; then
|
|
|
|
a="$i"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
echo "$a"
|
|
|
|
}
|
2010-04-13 12:57:56 +00:00
|
|
|
|
|
|
|
gettext_quoted () {
|
2010-04-19 19:25:41 +00:00
|
|
|
$gettext "$@" | sed "s/'/'\\\\''/g"
|
2010-04-13 12:57:56 +00:00
|
|
|
}
|
2010-07-02 11:32:05 +00:00
|
|
|
|
|
|
|
uses_abstraction () {
|
|
|
|
device=$1
|
|
|
|
|
|
|
|
abstraction="`${grub_probe} --device ${device} --target=abstraction`"
|
|
|
|
for module in ${abstraction}; do
|
|
|
|
if test "x${module}" = "x$2"; then
|
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
return 1
|
|
|
|
}
|