diff options
author | Romain Naour <romain.naour@gmail.com> | 2017-05-11 23:22:17 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-05-11 23:34:49 +0200 |
commit | 01048deab6035cfc066c407eaa7043ccb87a06e0 (patch) | |
tree | e4f4706a7b929f239004a6629d5697cc4e395bc4 /package/powertop/0004-add-missing-stdio.h-header.patch | |
parent | 67f4794de1d87f25a2fad13c854a330f286d08ba (diff) | |
download | buildroot-01048deab6035cfc066c407eaa7043ccb87a06e0.tar.gz buildroot-01048deab6035cfc066c407eaa7043ccb87a06e0.zip |
package/powertop: bump to version 2.9
Remove upstream patch, so we don't need to autoreconf
Rename patch 0002 -> 0001
Add POWERTOP_SOURCE to adjust to the new archive naming.
Signed-off-by: Romain Naour <romain.naour@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/powertop/0004-add-missing-stdio.h-header.patch')
-rw-r--r-- | package/powertop/0004-add-missing-stdio.h-header.patch | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/package/powertop/0004-add-missing-stdio.h-header.patch b/package/powertop/0004-add-missing-stdio.h-header.patch deleted file mode 100644 index 7619cca131..0000000000 --- a/package/powertop/0004-add-missing-stdio.h-header.patch +++ /dev/null @@ -1,35 +0,0 @@ -From e6cfd977c81b335664db1d5d3d6b5488c245e30f Mon Sep 17 00:00:00 2001 -From: Romain Naour <romain.naour@openwide.fr> -Date: Sat, 8 Aug 2015 18:26:15 +0200 -Subject: [PATCH] add missing stdio.h header -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -snprinf is defined in stdio.h. - -Fixes: -perf/perf_bundle.cpp: In function ‘void parse_event_format(const char*)’: -perf/perf_bundle.cpp:141:75: error: ‘sprintf’ was not declared in this scope - sprintf(file, "/sys/kernel/debug/tracing/events/%s/%s/format", sys, event); - -Signed-off-by: Romain Naour <romain.naour@openwide.fr> ---- - src/perf/perf_bundle.cpp | 1 + - 1 file changed, 1 insertion(+) - -diff --git a/src/perf/perf_bundle.cpp b/src/perf/perf_bundle.cpp -index cf1ae11..3d216ff 100644 ---- a/src/perf/perf_bundle.cpp -+++ b/src/perf/perf_bundle.cpp -@@ -31,6 +31,7 @@ - #include <sys/stat.h> - #include <fcntl.h> - #include <unistd.h> -+#include <stdio.h> - - #include "perf_bundle.h" - #include "perf_event.h" --- -2.4.3 - |