mirror of
https://review.coreboot.org/flashrom.git
synced 2025-04-30 16:33:41 +02:00
Handle DragonFly BSD definitions in flash.h
There are still some tweaks necessary to get flashrom to build on DragonFly, but this helps a lot. Corresponding to flashrom svn r445. Signed-off-by: Patrick Georgi <patrick.georgi@coresystems.de> Acked-by: Stefan Reinauer <stepan@coresystems.de> Acked-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net>
This commit is contained in:
parent
dd315e107d
commit
60622e2262
2
flash.h
2
flash.h
@ -34,7 +34,7 @@
|
||||
#define __DARWIN__
|
||||
#endif
|
||||
|
||||
#if defined(__FreeBSD__)
|
||||
#if defined(__FreeBSD__) || defined(__DragonFly__)
|
||||
#include <machine/cpufunc.h>
|
||||
#define off64_t off_t
|
||||
#define lseek64 lseek
|
||||
|
@ -344,7 +344,7 @@ int main(int argc, char *argv[])
|
||||
int force = 0;
|
||||
int read_it = 0, write_it = 0, erase_it = 0, verify_it = 0;
|
||||
int ret = 0, i;
|
||||
#ifdef __FreeBSD__
|
||||
#if defined(__FreeBSD__) || defined(__DragonFly__)
|
||||
int io_fd;
|
||||
#endif
|
||||
|
||||
@ -462,7 +462,7 @@ int main(int argc, char *argv[])
|
||||
/* First get full io access */
|
||||
#if defined (__sun) && (defined(__i386) || defined(__amd64))
|
||||
if (sysi86(SI86V86, V86SC_IOPL, PS_IOPL) != 0) {
|
||||
#elif defined(__FreeBSD__)
|
||||
#elif defined(__FreeBSD__) || defined (__DragonFly__)
|
||||
if ((io_fd = open("/dev/io", O_RDWR)) < 0) {
|
||||
#else
|
||||
if (iopl(3) != 0) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user