summaryrefslogtreecommitdiffstats
path: root/util/nvramtool
diff options
context:
space:
mode:
authorZheng Bao <fishbaozi@gmail.com>2012-09-28 15:58:05 +0800
committerPatrick Georgi <patrick@georgi-clan.de>2012-09-28 14:49:21 +0200
commit82c06bd2d5093f9d26c9da4fa1d65828972c4c9b (patch)
tree705406d9b43dd8eaa36c3c4b0b0fb5c2de9879bb /util/nvramtool
parent8d7369261ed012482e8b4f13849c566763944fee (diff)
downloadcoreboot-82c06bd2d5093f9d26c9da4fa1d65828972c4c9b.tar.gz
coreboot-82c06bd2d5093f9d26c9da4fa1d65828972c4c9b.tar.bz2
coreboot-82c06bd2d5093f9d26c9da4fa1d65828972c4c9b.zip
nvramtool: Require no hw access for integrated Makefile
The Makefile.inc is integraged into coreboot Makefile. It doesn't need to access to HW like cmos. It doesn't include cmos-hw-unix.c, which is only for individual tools running seperatedly. Change-Id: Ib00b5c3da63acb4120cb23eb7d661c5bc75d7c86 Signed-off-by: Zheng Bao <zheng.bao@amd.com> Signed-off-by: Zheng Bao <fishbaozi@gmail.com> Reviewed-on: http://review.coreboot.org/1544 Tested-by: build bot (Jenkins) Reviewed-by: Patrick Georgi <patrick@georgi-clan.de>
Diffstat (limited to 'util/nvramtool')
-rw-r--r--util/nvramtool/Makefile.inc4
1 files changed, 0 insertions, 4 deletions
diff --git a/util/nvramtool/Makefile.inc b/util/nvramtool/Makefile.inc
index 0acda04340d7..67710da52a3a 100644
--- a/util/nvramtool/Makefile.inc
+++ b/util/nvramtool/Makefile.inc
@@ -21,15 +21,11 @@
OS_ARCH = $(shell uname)
NVRAMTOOLFLAGS := -I$(top)/util/nvramtool
-ifeq ($(OS_ARCH), Darwin)
-NVRAMTOOLFLAGS += -framework DirectHW
-endif
ifeq ($(OS_ARCH), NetBSD)
NVRAMTOOLLDLFLAGS = -l$(shell uname -p)
endif
ifeq ($(shell uname -o), Cygwin)
NVRAMTOOLFLAGS += -O2 -g -Wall -W -D__GLIBC__
-NVRAMTOOLLDFLAGS = -lioperm
HOSTCFLAGS =
endif