1
0
mirror of https://review.coreboot.org/flashrom.git synced 2025-06-30 21:52:36 +02:00

Fix building for MacOSX

- Add a new macro named IS_MACOSX to hwaccess.c and use it to enable iopl().
  This was broken since r1638. This fix does *not* restore the very permissive
  concept where iopl() was activated in an #else branch that was inplace before
  r1638.
- Make printing the image file's size in flashrom.c platform independent.

Bonus: remove definitions of off64_t and lseek64 which are not necessary
anymore for about 1000 commits.

Thanks to SJ for reporting the issue and testing the solution.

Corresponding to flashrom svn r1648.

Signed-off-by: Stefan Tauner <stefan.tauner@alumni.tuwien.ac.at>
Acked-by: Stefan Tauner <stefan.tauner@alumni.tuwien.ac.at>
This commit is contained in:
Stefan Tauner
2013-02-04 04:38:42 +00:00
parent f656e8088e
commit e038e9082c
3 changed files with 6 additions and 11 deletions

View File

@ -1121,8 +1121,8 @@ int read_buf_from_file(unsigned char *buf, unsigned long size,
return 1;
}
if (image_stat.st_size != size) {
msg_gerr("Error: Image size (%ld B) doesn't match the flash chip's size (%ld B)!\n",
image_stat.st_size, size);
msg_gerr("Error: Image size (%jd B) doesn't match the flash chip's size (%ld B)!\n",
(intmax_t)image_stat.st_size, size);
fclose(image);
return 1;
}