summaryrefslogtreecommitdiffstats
path: root/meta/recipes-kernel/powertop/powertop
diff options
context:
space:
mode:
authorMartin Jansa <martin.jansa@gmail.com>2019-08-12 09:51:09 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-08-13 09:37:36 +0100
commit629b56cbee8afa4f7c62df5e3714701704d73b8a (patch)
tree759f0eb362b3edaeee5f98a4fcf01624a58500b0 /meta/recipes-kernel/powertop/powertop
parent5d652ffee3972d4e8302cd8998eceff134fad25d (diff)
downloadpoky-629b56cbee8afa4f7c62df5e3714701704d73b8a.tar.gz
powertop: import a fix from buildroot
(From OE-Core rev: 1c86f513041ad3a6c05ed600de9e80d076f1149d) Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-kernel/powertop/powertop')
-rw-r--r--meta/recipes-kernel/powertop/powertop/0001-wakeup_xxx.h-include-limits.h.patch55
1 files changed, 55 insertions, 0 deletions
diff --git a/meta/recipes-kernel/powertop/powertop/0001-wakeup_xxx.h-include-limits.h.patch b/meta/recipes-kernel/powertop/powertop/0001-wakeup_xxx.h-include-limits.h.patch
new file mode 100644
index 0000000000..7bfca8abfd
--- /dev/null
+++ b/meta/recipes-kernel/powertop/powertop/0001-wakeup_xxx.h-include-limits.h.patch
@@ -0,0 +1,55 @@
1From 4c24fdd8e0a42359df7308155b2d43c28a5e02fd Mon Sep 17 00:00:00 2001
2From: Fabrice Fontaine <fontaine.fabrice@gmail.com>
3Date: Mon, 20 May 2019 20:25:00 +0200
4Subject: [PATCH] wakeup_xxx.h: include limits.h
5
6limits.h must be included to define PATH_MAX otherwise build will fail
7on:
8
9In file included from wakeup/wakeup_ethernet.cpp:45:0:
10wakeup/wakeup_ethernet.h:35:16: error: 'PATH_MAX' was not declared in this scope
11 char eth_path[PATH_MAX];
12
13In file included from wakeup/wakeup_usb.cpp:45:0:
14wakeup/wakeup_usb.h:35:16: error: 'PATH_MAX' was not declared in this scope
15 char usb_path[PATH_MAX];
16
17Fixes:
18 - http://autobuild.buildroot.org/results/a0b3337cf4a827e6566f8b15b6bb180f0dcef7a3
19
20Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
21Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
22
23Upstream-Status: Submitted [https://lists.01.org/pipermail/powertop/2019-May/002052.html]
24---
25 src/wakeup/wakeup_ethernet.h | 1 +
26 src/wakeup/wakeup_usb.h | 1 +
27 2 files changed, 2 insertions(+)
28
29diff --git a/src/wakeup/wakeup_ethernet.h b/src/wakeup/wakeup_ethernet.h
30index 682bf95..e0fa628 100644
31--- a/src/wakeup/wakeup_ethernet.h
32+++ b/src/wakeup/wakeup_ethernet.h
33@@ -25,6 +25,7 @@
34 #ifndef _INCLUDE_GUARD_ETHERNET_WAKEUP_H
35 #define _INCLUDE_GUARD_ETHERNET_WAKEUP_H
36
37+#include <limits.h>
38 #include <vector>
39
40 #include "wakeup.h"
41diff --git a/src/wakeup/wakeup_usb.h b/src/wakeup/wakeup_usb.h
42index f7a1f7e..15898e3 100644
43--- a/src/wakeup/wakeup_usb.h
44+++ b/src/wakeup/wakeup_usb.h
45@@ -25,6 +25,7 @@
46 #ifndef _INCLUDE_GUARD_USB_WAKEUP_H
47 #define _INCLUDE_GUARD_USB_WAKEUP_H
48
49+#include <limits.h>
50 #include <vector>
51
52 #include "wakeup.h"
53--
542.20.1
55