diff options
author | Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net> | 2012-08-09 23:34:41 +0000 |
---|---|---|
committer | Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net> | 2012-08-09 23:34:41 +0000 |
commit | 60d9bd267e38c6241e05f0253845e1d11d04f3b3 (patch) | |
tree | adbb52deb6d42ab9f32ed347d18ff42384190c47 /cbtable.c | |
parent | b6304c1a1a89330e84eeee34a4c6ef99b163f367 (diff) | |
download | flashrom-60d9bd267e38c6241e05f0253845e1d11d04f3b3.tar.gz flashrom-60d9bd267e38c6241e05f0253845e1d11d04f3b3.tar.bz2 flashrom-60d9bd267e38c6241e05f0253845e1d11d04f3b3.zip |
Portability fixes and cleanups
Move Mac OS X IOKit/DirectHW availability checks in the Makefile from
compiler check to pciutils check.
Print the compiler error messages for feature detection.
Add DOS libpci in the Makefile includes only if a PCI-based programmer
was requested.
Restrict mmap usage in ich_descriptors_tool to Unix style systems.
Build ich_descriptors_tool with the correct .exe extension on
DOS/Windows.
Build ich_descriptors_tool by default on x86. (Patch by Stefan Tauner)
Print the Windows version instead of "unknown machine" on Windows.
Don't #define our own __DARWIN__, use the standard OS X detection
method.
Update the README.
Add more generated files to svn:ignore
Corresponding to flashrom svn r1567.
Signed-off-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net>
Acked-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net>
Diffstat (limited to 'cbtable.c')
-rw-r--r-- | cbtable.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -211,7 +211,7 @@ int coreboot_init(void) struct lb_header *lb_table; struct lb_record *rec, *last; -#ifdef __DARWIN__ +#if defined(__MACH__) && defined(__APPLE__) /* This is a hack. DirectHW fails to map physical address 0x00000000. * Why? */ |