]> git.proxmox.com Git - grub2.git/commitdiff
Adjust efi_distributor for some distributions
authorColin Watson <cjwatson@ubuntu.com>
Mon, 13 Jan 2014 12:13:27 +0000 (12:13 +0000)
committerColin Watson <cjwatson@debian.org>
Sat, 7 Mar 2020 12:21:23 +0000 (12:21 +0000)
This is not a very good approach, and certainly not sanely upstreamable;
we probably need to split GRUB_DISTRIBUTOR into a couple of different
variables.

Bug-Ubuntu: https://bugs.launchpad.net/bugs/1242417
Bug-Debian: https://bugs.debian.org/932966
Forwarded: not-needed
Last-Update: 2019-08-06

Patch-Name: install-efi-adjust-distributor.patch

util/grub-install.c

index b0c7c7c372b981956db29d8e22e2f9d47fad03d4..e89667ff273c7dad3c4f0b20202ca996cf090b24 100644 (file)
@@ -1115,6 +1115,10 @@ main (int argc, char *argv[])
       */
       char *t;
       efi_distributor = bootloader_id;
+      if (strcmp (efi_distributor, "kubuntu") == 0)
+       efi_distributor = "ubuntu";
+      else if (strcmp (efi_distributor, "devuan") == 0)
+       efi_distributor = "debian";
       switch (platform)
        {
        case GRUB_INSTALL_PLATFORM_I386_EFI: