]> git.proxmox.com Git - grub2.git/commitdiff
Remove GNU/Linux from default distributor string for Ubuntu
authorMario Limonciello <Mario_Limonciello@dell.com>
Mon, 13 Jan 2014 12:13:14 +0000 (12:13 +0000)
committerColin Watson <cjwatson@debian.org>
Fri, 24 Sep 2021 22:29:41 +0000 (23:29 +0100)
Ubuntu is called "Ubuntu", not "Ubuntu GNU/Linux".

Author: Colin Watson <cjwatson@debian.org>
Author: Harald Sitter <apachelogger@kubuntu.org>
Forwarded: not-needed
Last-Update: 2013-12-25

Patch-Name: mkconfig-ubuntu-distributor.patch

util/grub.d/10_linux.in

index f215e321381550c1d842826e8662d2fb10ccece4..1603a75a786c4c2528e5a81db224c1fb0bfd0aaf 100644 (file)
@@ -32,7 +32,14 @@ CLASS="--class gnu-linux --class gnu --class os"
 if [ "x${GRUB_DISTRIBUTOR}" = "x" ] ; then
   OS=GNU/Linux
 else
-  OS="${GRUB_DISTRIBUTOR} GNU/Linux"
+  case ${GRUB_DISTRIBUTOR} in
+    Ubuntu|Kubuntu)
+      OS="${GRUB_DISTRIBUTOR}"
+      ;;
+    *)
+      OS="${GRUB_DISTRIBUTOR} GNU/Linux"
+      ;;
+  esac
   CLASS="--class $(echo ${GRUB_DISTRIBUTOR} | tr 'A-Z' 'a-z' | cut -d' ' -f1|LC_ALL=C sed 's,[^[:alnum:]_],_,g') ${CLASS}"
 fi