search for: 7d99e9a

Displaying 7 results from an estimated 7 matches for "7d99e9a".

2014 Nov 24
6
[PATCH] check-gnu-efi.sh: print the output of build-gnu-efi.sh
...better not suppress the output of build-gnu-efi.sh, which is good for debugging. Signed-off-by: Robert Yang <liezhi.yang at windriver.com> --- efi/check-gnu-efi.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/efi/check-gnu-efi.sh b/efi/check-gnu-efi.sh index 85305f8..7d99e9a 100755 --- a/efi/check-gnu-efi.sh +++ b/efi/check-gnu-efi.sh @@ -25,7 +25,7 @@ if [ ! \( -f "$objdir/include/efi/$ARCH/efibind.h" -a -f "$objdir/lib/libefi.a" # Syslinux disables built-in implicit rules. export MAKEFLAGS= - ../../efi/build-gnu-efi.sh $ARCH "$...
2014 Nov 25
0
[PATCH] check-gnu-efi.sh: print the output of build-gnu-efi.sh
...efi.sh, which is good > for debugging. > > Signed-off-by: Robert Yang <liezhi.yang at windriver.com> > --- > efi/check-gnu-efi.sh | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/efi/check-gnu-efi.sh b/efi/check-gnu-efi.sh > index 85305f8..7d99e9a 100755 > --- a/efi/check-gnu-efi.sh > +++ b/efi/check-gnu-efi.sh > @@ -25,7 +25,7 @@ if [ ! \( -f "$objdir/include/efi/$ARCH/efibind.h" -a -f "$objdir/lib/libefi.a" > # Syslinux disables built-in implicit rules. > export MAKEFLAGS= > > - ../.....
2014 Dec 22
0
[PATCH] check-gnu-efi.sh: print the output of build-gnu-efi.sh
...u-efi.sh, which is good > for debugging. > > Signed-off-by: Robert Yang <liezhi.yang at windriver.com> > --- > efi/check-gnu-efi.sh | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/efi/check-gnu-efi.sh b/efi/check-gnu-efi.sh > index 85305f8..7d99e9a 100755 > --- a/efi/check-gnu-efi.sh > +++ b/efi/check-gnu-efi.sh > @@ -25,7 +25,7 @@ if [ ! \( -f "$objdir/include/efi/$ARCH/efibind.h" -a -f "$objdir/lib/libefi.a" > # Syslinux disables built-in implicit rules. > export MAKEFLAGS= > > - ../../e...
2014 Nov 25
1
[PATCH] check-gnu-efi.sh: print the output of build-gnu-efi.sh
...ebugging. >> >> Signed-off-by: Robert Yang <liezhi.yang at windriver.com> >> --- >> efi/check-gnu-efi.sh | 2 +- >> 1 file changed, 1 insertion(+), 1 deletion(-) >> >> diff --git a/efi/check-gnu-efi.sh b/efi/check-gnu-efi.sh >> index 85305f8..7d99e9a 100755 >> --- a/efi/check-gnu-efi.sh >> +++ b/efi/check-gnu-efi.sh >> @@ -25,7 +25,7 @@ if [ ! \( -f "$objdir/include/efi/$ARCH/efibind.h" -a -f "$objdir/lib/libefi.a" >> # Syslinux disables built-in implicit rules. >> export MAKEFLAGS=...
2015 Sep 14
0
[PATCH 3/4] mk/efi.mk: Build gnu-efi with the Makefile
...-f "$EFIDIR/Makefile" ARCH=$ARCH -make SRCDIR="$EFIDIR" TOPDIR="$EFIDIR" -f "$EFIDIR/Makefile" ARCH=$ARCH PREFIX="$objdir" install - -cd "$objdir/efi" diff --git a/efi/check-gnu-efi.sh b/efi/check-gnu-efi.sh deleted file mode 100755 index 7d99e9a..0000000 --- a/efi/check-gnu-efi.sh +++ /dev/null @@ -1,38 +0,0 @@ -#!/bin/sh - -# Verify that gnu-efi is installed in the object directory for our -# firmware. If it isn't, build it. - -if [ $# -lt 2 ]; then -cat <<EOF -Usage: $0: <arch> <objdir> - -Check for gnu-efi librarie...
2015 Sep 14
11
[PATCH 0/4] efi: Makefile improvement
From: Sylvain Gault <sylvain.gault at gmail.com> These few patches contain a few improvement about the Makefiles for EFI. Mainly, to rebuild the files when needed, and only when needed. The three shell scripts efi/{check,build,clean}-gnu-efi.sh disappeared and are now integrated as makefile recipes. You'll notice an argument ARFLAGS=rvU to the recursive make calls to gnu-efi. This is
2015 Sep 24
0
[PATCH] com32/disk: add UEFI support
...fs/pxe/ftp.o fs/pxe/ftp_readdir.o fs/pxe/http.o fs/pxe/http_readdir.o) LIB_OBJS = $(addprefix $(objdir)/com32/lib/,$(CORELIBOBJS)) \ + $(addprefix $(objdir)/com32/lib/,$(LIBOTHER_OBJS)) \ $(LIBEFI) CSRC = $(wildcard $(SRC)/*.c) diff --git a/efi/check-gnu-efi.sh b/efi/check-gnu-efi.sh index 7d99e9a..67fe67d 100755 --- a/efi/check-gnu-efi.sh +++ b/efi/check-gnu-efi.sh @@ -25,6 +25,7 @@ if [ ! \( -f "$objdir/include/efi/$ARCH/efibind.h" -a -f "$objdir/lib/libefi.a" # Syslinux disables built-in implicit rules. export MAKEFLAGS= + pushd "$objdir/efi" &...