grub2/0127-grub-core-partmap-msdos.c-embed_signatures-Add-the-s.patch
Peter Jones f74b50e380 Rebase to upstream, fix a pile of bugs. The usual.
Signed-off-by: Peter Jones <pjones@redhat.com>
2013-06-12 15:37:08 -04:00

50 lines
1.5 KiB
Diff

From 808c2412749490421a02568d4db2db0e11790b92 Mon Sep 17 00:00:00 2001
From: Colin Watson <cjwatson@ubuntu.com>
Date: Mon, 21 Jan 2013 11:10:25 +0000
Subject: [PATCH 127/482] * 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.
---
ChangeLog | 6 ++++++
grub-core/partmap/msdos.c | 7 +++++++
2 files changed, 13 insertions(+)
diff --git a/ChangeLog b/ChangeLog
index c975de1..ff29177 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
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.
* include/grub/fs.h (grub_fs_dir_hook_t): New type.
diff --git a/grub-core/partmap/msdos.c b/grub-core/partmap/msdos.c
index 47527c3..b0e11c4 100644
--- a/grub-core/partmap/msdos.c
+++ b/grub-core/partmap/msdos.c
@@ -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
--
1.8.2.1