2023-08-24 05:25:56 +02:00
|
|
|
--- a/util/grub.d/10_linux.in
|
|
|
|
+++ b/util/grub.d/10_linux.in
|
|
|
|
@@ -31,7 +31,7 @@
|
2010-10-14 00:54:11 +02:00
|
|
|
if [ "x${GRUB_DISTRIBUTOR}" = "x" ] ; then
|
|
|
|
OS=GNU/Linux
|
|
|
|
else
|
|
|
|
- OS="${GRUB_DISTRIBUTOR} GNU/Linux"
|
|
|
|
+ OS="${GRUB_DISTRIBUTOR}"
|
2014-01-06 04:50:43 +01:00
|
|
|
CLASS="--class $(echo ${GRUB_DISTRIBUTOR} | tr 'A-Z' 'a-z' | cut -d' ' -f1|LC_ALL=C sed 's,[^[:alnum:]_],_,g') ${CLASS}"
|
2010-10-14 00:54:11 +02:00
|
|
|
fi
|
|
|
|
|
2023-08-24 05:25:56 +02:00
|
|
|
@@ -143,7 +143,7 @@
|
2011-05-09 10:48:37 +02:00
|
|
|
message="$(gettext_printf "Loading Linux %s ..." ${version})"
|
2012-06-29 06:59:42 +02:00
|
|
|
sed "s/^/$submenu_indentation/" << EOF
|
2013-06-18 19:11:34 +02:00
|
|
|
echo '$(echo "$message" | grub_quote)'
|
2010-03-15 00:45:00 +01:00
|
|
|
- linux ${rel_dirname}/${basename} root=${linux_root_device_thisversion} ro ${args}
|
|
|
|
+ linux ${rel_dirname}/${basename} root=${linux_root_device_thisversion} ${args}
|
2010-02-18 15:10:48 +01:00
|
|
|
EOF
|
|
|
|
if test -n "${initrd}" ; then
|
2012-06-29 06:59:42 +02:00
|
|
|
# TRANSLATORS: ramdisk isn't identifier. Should be translated.
|
2023-08-24 05:25:56 +02:00
|
|
|
--- a/util/grub.d/20_linux_xen.in
|
|
|
|
+++ b/util/grub.d/20_linux_xen.in
|
|
|
|
@@ -31,7 +31,7 @@
|
2015-04-13 19:58:16 +02:00
|
|
|
if [ "x${GRUB_DISTRIBUTOR}" = "x" ] ; then
|
|
|
|
OS=GNU/Linux
|
|
|
|
else
|
|
|
|
- OS="${GRUB_DISTRIBUTOR} GNU/Linux"
|
|
|
|
+ OS="${GRUB_DISTRIBUTOR}"
|
|
|
|
CLASS="--class $(echo ${GRUB_DISTRIBUTOR} | tr 'A-Z' 'a-z' | cut -d' ' -f1|LC_ALL=C sed 's,[^[:alnum:]_],_,g') ${CLASS}"
|
|
|
|
fi
|
|
|
|
|
2023-08-24 05:25:56 +02:00
|
|
|
@@ -154,7 +154,7 @@
|
2015-04-13 19:58:16 +02:00
|
|
|
fi
|
2019-10-18 12:18:53 +02:00
|
|
|
${xen_loader} ${rel_xen_dirname}/${xen_basename} placeholder ${xen_args} \${xen_rm_opts}
|
2015-04-13 19:58:16 +02:00
|
|
|
echo '$(echo "$lmessage" | grub_quote)'
|
2019-10-18 12:18:53 +02:00
|
|
|
- ${module_loader} ${rel_dirname}/${basename} placeholder root=${linux_root_device_thisversion} ro ${args}
|
|
|
|
+ ${module_loader} ${rel_dirname}/${basename} placeholder root=${linux_root_device_thisversion} ${args}
|
2015-04-13 19:58:16 +02:00
|
|
|
EOF
|
|
|
|
if test -n "${initrd}" ; then
|
|
|
|
# TRANSLATORS: ramdisk isn't identifier. Should be translated.
|