Update superiotool support for FreeBSD, Makefile fixes.
Signed-off-by: Idwer Vollering <vidwer@gmail.com> Acked-by: Uwe Hermann <uwe@hermann-uwe.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5980 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
parent
d74c7748aa
commit
a4d77dc74d
|
@ -39,6 +39,13 @@ OS_ARCH = $(shell uname)
|
|||
ifeq ($(OS_ARCH), Darwin)
|
||||
LIBS = -framework IOKit -framework DirectIO -lpci -lz
|
||||
endif
|
||||
ifeq ($(OS_ARCH), FreeBSD)
|
||||
CFLAGS = -O2 -Wall -Werror -Wstrict-prototypes -Wundef -Wstrict-aliasing \
|
||||
-Werror-implicit-function-declaration -ansi $(SVNDEF) \
|
||||
-I/usr/local/include
|
||||
LDFLAGS += -L/usr/local/lib
|
||||
LIBS = -lz
|
||||
endif
|
||||
|
||||
# Support for PCI-attached "Super I/Os" (e.g. in VIA VT82686A/B).
|
||||
CONFIG_PCI = yes
|
||||
|
|
Loading…
Reference in New Issue