81987f4958
- Try to fix things for new compiler madness. I really don't know why gcc decided __attribute__((packed)) on a "typedef struct" should imply __attribute__((align (1))) and that it should have a warning that it does so. The obvious behavior would be to keep the alignment of the first element unless it's used in another object or type that /also/ hask the packed attribute. Why should it change the default alignment at all? - Merge in the BLS patches Javier and I wrote. - Attempt to fix pmtimer initialization failures to not be super duper slow. Signed-off-by: Peter Jones <pjones@redhat.com>
32 lines
978 B
Diff
32 lines
978 B
Diff
From 2df38f07986a91d2a06cb3e432f9121d9f678f89 Mon Sep 17 00:00:00 2001
|
|
From: Peter Jones <pjones@redhat.com>
|
|
Date: Tue, 11 Feb 2014 11:14:50 -0500
|
|
Subject: [PATCH 109/206] Don't require a password to boot entries generated by
|
|
grub-mkconfig.
|
|
|
|
When we set a password, we just want that to mean you can't /edit/ an entry.
|
|
|
|
Resolves: rhbz#1030176
|
|
|
|
Signed-off-by: Peter Jones <pjones@redhat.com>
|
|
---
|
|
util/grub.d/10_linux.in | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/util/grub.d/10_linux.in b/util/grub.d/10_linux.in
|
|
index 452a9f69d28..79a747ebd4d 100644
|
|
--- a/util/grub.d/10_linux.in
|
|
+++ b/util/grub.d/10_linux.in
|
|
@@ -26,7 +26,7 @@ datarootdir="@datarootdir@"
|
|
export TEXTDOMAIN=@PACKAGE@
|
|
export TEXTDOMAINDIR="@localedir@"
|
|
|
|
-CLASS="--class gnu-linux --class gnu --class os"
|
|
+CLASS="--class gnu-linux --class gnu --class os --unrestricted"
|
|
|
|
if [ "x${GRUB_DISTRIBUTOR}" = "x" ] ; then
|
|
OS="$(sed 's, release .*$,,g' /etc/system-release)"
|
|
--
|
|
2.15.0
|
|
|