diff options
author | Josh Boyer <jwboyer@fedoraproject.org> | 2014-08-20 13:22:24 -0400 |
---|---|---|
committer | Josh Boyer <jwboyer@fedoraproject.org> | 2014-08-20 13:22:24 -0400 |
commit | 6a91557e4cd508858eca5aba5406a9109861d4de (patch) | |
tree | c57990ccc4a28a9933db2aebba1006f46c619f44 /disable-libdw-unwind-on-non-x86.patch | |
parent | a99be7d4cf2fae68a0562a7687d89ee61c6b9f98 (diff) | |
download | kernel-6a91557e4cd508858eca5aba5406a9109861d4de.tar.gz kernel-6a91557e4cd508858eca5aba5406a9109861d4de.tar.xz kernel-6a91557e4cd508858eca5aba5406a9109861d4de.zip |
Patch file cleanup
Do a couple things here:
- Split the mega-patches into individual patches. Should help with rebasing.
- Make all patches 'git am' acceptable.
There should be no functional or actual code differences from before
Diffstat (limited to 'disable-libdw-unwind-on-non-x86.patch')
-rw-r--r-- | disable-libdw-unwind-on-non-x86.patch | 20 |
1 files changed, 17 insertions, 3 deletions
diff --git a/disable-libdw-unwind-on-non-x86.patch b/disable-libdw-unwind-on-non-x86.patch index 445fc1942..86bb70ae0 100644 --- a/disable-libdw-unwind-on-non-x86.patch +++ b/disable-libdw-unwind-on-non-x86.patch @@ -1,9 +1,20 @@ +From 5a8e4c7cafd99ce849d75c86409b822ac1da18e4 Mon Sep 17 00:00:00 2001 +From: "kernel-team@fedoraproject.org" <kernel-team@fedoraproject.org> +Date: Fri, 18 Apr 2014 06:58:29 -0400 +Subject: [PATCH] disable libdw unwind on non-x86 + +Bugzilla: 1025603 +Upstream-status: ?? +--- + tools/perf/config/Makefile | 4 ++++ + 1 file changed, 4 insertions(+) + diff --git a/tools/perf/config/Makefile b/tools/perf/config/Makefile -index ee21fa9..19ee413 100644 +index 1f67aa02d240..86c21a24da46 100644 --- a/tools/perf/config/Makefile +++ b/tools/perf/config/Makefile -@@ -34,6 +34,10 @@ ifeq ($(ARCH),arm) - LIBUNWIND_LIBS = -lunwind -lunwind-arm +@@ -52,6 +52,10 @@ ifeq ($(ARCH),powerpc) + CFLAGS += -DHAVE_SKIP_CALLCHAIN_IDX endif +ifneq ($(ARCH),x86) @@ -13,3 +24,6 @@ index ee21fa9..19ee413 100644 ifeq ($(LIBUNWIND_LIBS),) NO_LIBUNWIND := 1 else +-- +1.9.3 + |