aboutsummaryrefslogtreecommitdiffstats
path: root/meta-initramfs/recipes-kernel/kexec/kexec-tools-klibc/0007-kexec.c-add-guard-around-ENOTSUP.patch
blob: 3d446839361b3a91f6715d4d221af461ed3a3141 (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
From e6bd7a1bcfbd3e54efc81fbd7d60d915f9af0632 Mon Sep 17 00:00:00 2001
From: Andrea Adami <andrea.adami@gmail.com>
Date: Tue, 17 Apr 2018 11:35:14 +0200
Subject: [PATCH] kexec.c: add guard around ENOTSUP

Fix

 kexec.c: In function 'main':
 kexec.c:1515:11: error: 'ENOTSUP' undeclared

Upstream-Status: Inappropriate [klibc specific]
Signed-off-by: Andrea Adami <andrea.adami@gmail.com>

---
 kexec/kexec.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/kexec/kexec.c b/kexec/kexec.c
index 313d9fe..b5a8a1e 100644
--- a/kexec/kexec.c
+++ b/kexec/kexec.c
@@ -1501,6 +1501,7 @@ int main(int argc, char *argv[])
 					 */
 				case -EINVAL:
 				case -ENOEXEC:
+#ifndef __KLIBC__
 					 /*
 					  * ENOTSUP can be unsupported image
 					  * type or unsupported PE signature
@@ -1513,6 +1514,7 @@ int main(int argc, char *argv[])
 					  * kernel bug
 					  */
 				case -ENOTSUP:
+#endif
 					do_kexec_file_syscall = 0;
 					break;
 			}