mirror of
https://review.coreboot.org/flashrom.git
synced 2025-07-02 22:43:17 +02:00
Support compilation for the ARM architecture (little-endian only)
Note: The internal programmer will abort during processor check. This is intentional. The other hardware drivers (except those using port I/O) should work. Corresponding to flashrom svn r1492. Signed-off-by: David Hendricks <dhendrix@google.com> Acked-by: David Hendricks <dhendrix@google.com> Tested-by: Timo Juhani Lindfors <timo.lindfors@iki.fi> Acked-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net>
This commit is contained in:

committed by
Carl-Daniel Hailfinger

parent
bfd89a5635
commit
b286da7ffc
14
hwaccess.c
14
hwaccess.c
@ -116,6 +116,20 @@ void release_io_perms(void)
|
||||
{
|
||||
}
|
||||
|
||||
#elif defined (__arm__)
|
||||
|
||||
static inline void sync_primitive(void)
|
||||
{
|
||||
}
|
||||
|
||||
void get_io_perms(void)
|
||||
{
|
||||
}
|
||||
|
||||
void release_io_perms(void)
|
||||
{
|
||||
}
|
||||
|
||||
#else
|
||||
|
||||
#error Unknown architecture
|
||||
|
Reference in New Issue
Block a user