package/flashrom: fix build on riscv
Fixes:
- http://autobuild.buildroot.org/results/fb95c22cbe1d19e73f0089103ed6da2f4b3081c8
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
(cherry picked from commit cc366832f2
)
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
parent
e99a7b8177
commit
d6c8348cca
@ -0,0 +1,41 @@
|
||||
From a9a03cc6ba71825bfae0d64e1888f33c77345bc3 Mon Sep 17 00:00:00 2001
|
||||
From: Khem Raj <raj.khem@gmail.com>
|
||||
Date: Sat, 17 Mar 2018 23:08:29 -0700
|
||||
Subject: [PATCH] platform: Add riscv to known platforms
|
||||
|
||||
Change-Id: I724a99e2493fcbf71c2fc2d9f6a1ad607c737087
|
||||
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
||||
Reviewed-on: https://review.coreboot.org/25260
|
||||
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
|
||||
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
|
||||
Reviewed-by: David Hendricks <david.hendricks@gmail.com>
|
||||
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
|
||||
[Retrieved from:
|
||||
https://github.com/flashrom/flashrom/commit/a9a03cc6ba71825bfae0d64e1888f33c77345bc3]
|
||||
---
|
||||
platform.h | 5 ++++-
|
||||
1 file changed, 4 insertions(+), 1 deletion(-)
|
||||
|
||||
diff --git a/platform.h b/platform.h
|
||||
index e3b7674ae..65fe85881 100644
|
||||
--- a/platform.h
|
||||
+++ b/platform.h
|
||||
@@ -69,6 +69,9 @@
|
||||
#elif defined (__m68k__)
|
||||
#define __FLASHROM_ARCH__ "m68k"
|
||||
#define IS_M68K 1
|
||||
+#elif defined (__riscv)
|
||||
+ #define __FLASHROM_ARCH__ "riscv"
|
||||
+ #define IS_RISCV 1
|
||||
#elif defined (__sh__)
|
||||
#define __FLASHROM_ARCH__ "sh"
|
||||
#define IS_SH 1
|
||||
@@ -77,7 +80,7 @@
|
||||
#define IS_S390 1
|
||||
#endif
|
||||
|
||||
-#if !(IS_X86 || IS_MIPS || IS_PPC || IS_ARM || IS_SPARC || IS_ALPHA || IS_HPPA || IS_M68K || IS_SH || IS_S390)
|
||||
+#if !(IS_X86 || IS_MIPS || IS_PPC || IS_ARM || IS_SPARC || IS_ALPHA || IS_HPPA || IS_M68K || IS_RISCV || IS_SH || IS_S390)
|
||||
#error Unknown architecture
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user