blob: 3d446839361b3a91f6715d4d221af461ed3a3141 [file] [log] [blame]
Brad Bishop1a4b7ee2018-12-16 17:11:34 -08001From e6bd7a1bcfbd3e54efc81fbd7d60d915f9af0632 Mon Sep 17 00:00:00 2001
2From: Andrea Adami <andrea.adami@gmail.com>
3Date: Tue, 17 Apr 2018 11:35:14 +0200
4Subject: [PATCH] kexec.c: add guard around ENOTSUP
5
6Fix
7
8 kexec.c: In function 'main':
9 kexec.c:1515:11: error: 'ENOTSUP' undeclared
10
11Upstream-Status: Inappropriate [klibc specific]
12Signed-off-by: Andrea Adami <andrea.adami@gmail.com>
13
14---
15 kexec/kexec.c | 2 ++
16 1 file changed, 2 insertions(+)
17
18diff --git a/kexec/kexec.c b/kexec/kexec.c
19index 313d9fe..b5a8a1e 100644
20--- a/kexec/kexec.c
21+++ b/kexec/kexec.c
22@@ -1501,6 +1501,7 @@ int main(int argc, char *argv[])
23 */
24 case -EINVAL:
25 case -ENOEXEC:
26+#ifndef __KLIBC__
27 /*
28 * ENOTSUP can be unsupported image
29 * type or unsupported PE signature
30@@ -1513,6 +1514,7 @@ int main(int argc, char *argv[])
31 * kernel bug
32 */
33 case -ENOTSUP:
34+#endif
35 do_kexec_file_syscall = 0;
36 break;
37 }