|
|
5e6fc3 |
From 1f385ff1bde1e783eba03df37af9421bac0df82b Mon Sep 17 00:00:00 2001
|
|
|
5e6fc3 |
From: Peter Jones <pjones@redhat.com>
|
|
|
5e6fc3 |
Date: Fri, 3 Aug 2018 09:56:01 -0400
|
|
|
5e6fc3 |
Subject: [PATCH 28/39] abignore: work around an abidw bug
|
|
|
5e6fc3 |
|
|
|
5e6fc3 |
Some versions of abignore mistakenly treat brackets as section headers,
|
|
|
5e6fc3 |
thus ignoring the rest of the stanza after them. It's fixed upstream,
|
|
|
5e6fc3 |
but I don't have the newer version yet. Moving the braces to be after
|
|
|
5e6fc3 |
the change-kind and other things works around the issue.
|
|
|
5e6fc3 |
|
|
|
5e6fc3 |
Signed-off-by: Peter Jones <pjones@redhat.com>
|
|
|
5e6fc3 |
---
|
|
|
5e6fc3 |
src/abignore | 8 ++++----
|
|
|
5e6fc3 |
1 file changed, 4 insertions(+), 4 deletions(-)
|
|
|
5e6fc3 |
|
|
|
5e6fc3 |
diff --git a/src/abignore b/src/abignore
|
|
|
5e6fc3 |
index a4597b1029c..1badb2dab35 100644
|
|
|
5e6fc3 |
--- a/src/abignore
|
|
|
5e6fc3 |
+++ b/src/abignore
|
|
|
5e6fc3 |
@@ -14,28 +14,28 @@
|
|
|
5e6fc3 |
# 'efidp_wifi __anonymous_union__::wifi' at efivar-dp.h:868:1
|
|
|
5e6fc3 |
#
|
|
|
5e6fc3 |
[suppress_type]
|
|
|
5e6fc3 |
- soname_regexp = libefi(var|boot)\\.so\\..*
|
|
|
5e6fc3 |
name = efidp_data
|
|
|
5e6fc3 |
type_kind = typedef
|
|
|
5e6fc3 |
has_data_member_inserted_at = end
|
|
|
5e6fc3 |
+ soname_regexp = libefi(var|boot)\\.so\\..*
|
|
|
5e6fc3 |
|
|
|
5e6fc3 |
# 1 Added variable:
|
|
|
5e6fc3 |
#
|
|
|
5e6fc3 |
# 'const __anonymous_struct__ efi_guid_ux_capsule' {efi_guid_ux_capsule@@LIBEFIVAR_1.33}
|
|
|
5e6fc3 |
#
|
|
|
5e6fc3 |
[suppress_variable]
|
|
|
5e6fc3 |
+ change_kind = added-variable
|
|
|
5e6fc3 |
soname_regexp = libefivar\\.so\\..*
|
|
|
5e6fc3 |
symbol_name_regexp = ^efi_guid_[[:alnum:]_]+$
|
|
|
5e6fc3 |
- change_kind = added-variable
|
|
|
5e6fc3 |
|
|
|
5e6fc3 |
# allow new functions that are prefixed correctly
|
|
|
5e6fc3 |
[suppress_function]
|
|
|
5e6fc3 |
+ change_kind = added-function
|
|
|
5e6fc3 |
soname_regexp = ^libefi(var|boot)\\.so\\..*
|
|
|
5e6fc3 |
name_regexp = ^(efidp_|efi_)[[:alnum:]_]+
|
|
|
5e6fc3 |
- change_kind = added-function
|
|
|
5e6fc3 |
|
|
|
5e6fc3 |
# allow new variables that are prefixed correctly
|
|
|
5e6fc3 |
[suppress_variable]
|
|
|
5e6fc3 |
+ change_kind = added-variable
|
|
|
5e6fc3 |
soname_regexp = libefi(var|boot)\\.so\\..*
|
|
|
5e6fc3 |
symbol_name_regexp = ^(efidp_|efi_)[[:alnum:]_]+
|
|
|
5e6fc3 |
- change_kind = added-variable
|
|
|
5e6fc3 |
--
|
|
|
5e6fc3 |
2.17.1
|
|
|
5e6fc3 |
|