mirror of
https://review.coreboot.org/flashrom.git
synced 2025-07-02 22:43:17 +02:00
Add OpenBSD support
Add a requirements section to the man page which lists the needed access permissions for each programmer. This feature needs my pciutils/libpci 8/16-bit write emulation patch at http://marc.info/?l=openbsd-ports&m=127780030728045 titled [PATCH] Fix pciutils non-32bit PCI write on OpenBSD Corresponding to flashrom svn r1067. Signed-off-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net> Acked-by: Stuart Henderson <sthen@openbsd.org>
This commit is contained in:
10
hwaccess.h
10
hwaccess.h
@ -228,17 +228,25 @@ cpu_to_be(64)
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#if defined(__NetBSD__)
|
||||
#if defined(__NetBSD__) || defined (__OpenBSD__)
|
||||
#define off64_t off_t
|
||||
#define lseek64 lseek
|
||||
#if defined(__i386__) || defined(__x86_64__)
|
||||
#include <sys/types.h>
|
||||
#include <machine/sysarch.h>
|
||||
#if defined(__NetBSD__)
|
||||
#if defined(__i386__)
|
||||
#define iopl i386_iopl
|
||||
#elif defined(__x86_64__)
|
||||
#define iopl x86_64_iopl
|
||||
#endif
|
||||
#elif defined (__OpenBSD__)
|
||||
#if defined(__i386__)
|
||||
#define iopl i386_iopl
|
||||
#elif defined(__amd64__)
|
||||
#define iopl amd64_iopl
|
||||
#endif
|
||||
#endif
|
||||
#include <stdint.h>
|
||||
|
||||
static inline void outb(uint8_t value, uint16_t port)
|
||||
|
Reference in New Issue
Block a user