New patch to review for coreboot: 078f22e nvramtool: Require no hw access for integrated Makefile
Zheng Bao (zheng.bao@amd.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/1544 -gerrit commit 078f22ea8bd365c3152a32e72052cccfa60c155b Author: Zheng Bao <fishbaozi@gmail.com> Date: Fri Sep 28 15:58:05 2012 +0800 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> --- util/nvramtool/Makefile.inc | 4 ---- 1 file changed, 4 deletions(-) diff --git a/util/nvramtool/Makefile.inc b/util/nvramtool/Makefile.inc index 0acda04..67710da 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
participants (1)
-
Zheng Bao