The patch is really trivial and fixes silencing dd on systems

where &> isn't supported by /bin/sh (eg. solaris) and "fixes" 
the dtc Makefile in the same manner.

Signed-off-by: Patrick Georgi <patrick@georgi-clan.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>



git-svn-id: svn://coreboot.org/repository/LinuxBIOSv3@316 f3766cd6-281f-0410-b1cd-43a5c92072e9
This commit is contained in:
Stefan Reinauer 2007-05-06 18:52:16 +00:00
parent 9caaf62dd5
commit 5a0d57de59
2 changed files with 2 additions and 2 deletions

View file

@ -24,7 +24,7 @@ ifeq ($(CONFIG_ARCH_X86),y)
INITCFLAGS := $(CFLAGS) -I$(src)/include/arch/x86 -I$(src)/include \
-fno-builtin
SILENT := &> /dev/null
SILENT := >/dev/null 2>&1
#
# Build the ROM Image / LAR archive

View file

@ -23,7 +23,7 @@ ftdump: ftdump.o
$(obj)/util/dtc/dtc-parser.tab.c $(obj)/util/dtc/dtc-parser.tab.h: $(src)/util/dtc/dtc-parser.y
$(Q)mkdir -p $(obj)/util/dtc
$(Q)printf " BISON $(subst $(shell pwd)/,,$(@))\n"
$(Q)cd $(obj)/util/dtc; $(BISON) -d $< 2> $(obj)/util/dtc/dtc.bison.stderr.out > $(obj)/util/dtc/dtc.bison.out
$(Q)cd $(obj)/util/dtc; $(BISON) -d $< > $(obj)/util/dtc/dtc.bison.out 2>&1
$(obj)/util/dtc/lex.yy.c: $(src)/util/dtc/dtc-lexer.l
$(Q)cd $(obj)/util/dtc; $(LEX) $<