* grub-core/partmap/msdos.c (embed_signatures): Add the signature of
authorColin Watson <cjwatson@ubuntu.com>
Mon, 21 Jan 2013 11:10:25 +0000 (11:10 +0000)
committerColin Watson <cjwatson@ubuntu.com>
Mon, 21 Jan 2013 11:10:25 +0000 (11:10 +0000)
an Acer registration utility with several sightings in the wild.
Reported by: Rickard Westman.  Fixes Ubuntu bug #987022.

ChangeLog
grub-core/partmap/msdos.c

index c975de1..ff29177 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2013-01-21  Colin Watson  <cjwatson@ubuntu.com>
+
+       * grub-core/partmap/msdos.c (embed_signatures): Add the signature of
+       an Acer registration utility with several sightings in the wild.
+       Reported by: Rickard Westman.  Fixes Ubuntu bug #987022.
+
 2013-01-21  Colin Watson  <cjwatson@ubuntu.com>
 
        Remove nested functions from filesystem directory iterators.
index 47527c3..b0e11c4 100644 (file)
@@ -94,6 +94,13 @@ struct embed_signature embed_signatures[] =
       .signature = "ycgl",
       .signature_len = 4,
       .type = TYPE_RAID
+    },
+    {
+      /* https://bugs.launchpad.net/bugs/987022 */
+      .name = "Acer registration utility (?)",
+      .signature = "GREGRegDone.Tag\x00",
+      .signature_len = 16,
+      .type = TYPE_SOFTWARE
     }
   };
 #endif