aboutsummaryrefslogtreecommitdiffstats
path: root/meta-initramfs/recipes-bsp/kexecboot/files/0001-kexecboot-fix-build-when-S-B.patch
blob: 6d3270f891431ace174daa85b065c64432886195 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
From 8519d61a7097498b0ee93fb8dc8262286825f3e5 Mon Sep 17 00:00:00 2001
From: Andrea Adami <andrea.adami@gmail.com>
Date: Thu, 1 May 2014 23:58:51 +0200
Subject: [PATCH 1/4] kexecboot: fix build when S != B

* fatal error: ../config.h: No such file or directory

Signed-off-by: Andrea Adami <andrea.adami@gmail.com>
---
 machine/zaurus.c | 2 +-
 res/theme-gui.h  | 2 +-
 res/theme-tui.h  | 4 ++--
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/machine/zaurus.c b/machine/zaurus.c
index ea21047..83be13b 100644
--- a/machine/zaurus.c
+++ b/machine/zaurus.c
@@ -25,7 +25,7 @@
  *
  */
 
-#include "../config.h"
+#include "config.h"
 
 #ifdef USE_ZAURUS
 
diff --git a/res/theme-gui.h b/res/theme-gui.h
index f8fef7f..79bed39 100644
--- a/res/theme-gui.h
+++ b/res/theme-gui.h
@@ -15,7 +15,7 @@
  *
  */
 
-#include "../config.h"
+#include "config.h"
 
 #ifdef USE_ICONS
 /** Icons **/
diff --git a/res/theme-tui.h b/res/theme-tui.h
index 94e7693..909be56 100644
--- a/res/theme-tui.h
+++ b/res/theme-tui.h
@@ -15,11 +15,11 @@
  *
  */
 
-#include "../config.h"
+#include "config.h"
 
 #ifdef USE_TEXTUI
 /** TEXT UI colors **/
-#include "../termseq.h"
+#include "termseq.h"
 
 /* Background color pair */
 #define TUI_CLR_BG		TERM_CSI TERM_BG_BLACK ";" TERM_FG_WHITE TERM_SGR
-- 
1.9.1