Displaying 6 results from an estimated 6 matches for "e72d872".
Did you mean:
372872
2015 Feb 10
4
[PATCH 0/1] update gnuefi to f64cef26
Updates the gnu-efi submodule to the latest version (f64cef26)
Changes to the gnu-efi makefiles require changes to the syslinux build
scripts. Mainly, the install targets dropped the $(SRCDIR) prefix, e.g.
- $(INSTALL) -m 644 $(SRCDIR)/elf_$(ARCH)_efi.lds $(INSTALLROOT)/$(LIBDIR)
+ $(INSTALL) -m 644 elf_$(ARCH)_efi.lds $(INSTALLROOT)/$(LIBDIR)
Since syslinux cd's to $(objdir)
2015 Jan 03
1
efi build dependent on git update
...Date: Tue Dec 23 12:04:46 2014 -0500
efi: prevent git command in non-git tree
efi/build-gnu-efi.sh presumes it's in a git repo. Test first.
Signed-off-by: Gene Cumm <gene.cumm at gmail.com>
diff --git a/efi/build-gnu-efi.sh b/efi/build-gnu-efi.sh
index c87e67c..e72d872 100755
--- a/efi/build-gnu-efi.sh
+++ b/efi/build-gnu-efi.sh
@@ -29,7 +29,9 @@ fi
(
cd ../..
- git submodule update --init
+ if [ -d .git ]; then
+ git submodule update --init
+ fi
)
mkdir -p "$objdir/gnu-efi"
> I'm planning on doing the master
> branch (including...
2015 Sep 14
0
[PATCH 3/4] mk/efi.mk: Build gnu-efi with the Makefile
...----------
gnu-efi | 2 +-
mk/efi.mk | 9 ++++++++-
4 files changed, 9 insertions(+), 85 deletions(-)
delete mode 100755 efi/build-gnu-efi.sh
delete mode 100755 efi/check-gnu-efi.sh
diff --git a/efi/build-gnu-efi.sh b/efi/build-gnu-efi.sh
deleted file mode 100755
index e72d872..0000000
--- a/efi/build-gnu-efi.sh
+++ /dev/null
@@ -1,45 +0,0 @@
-#!/bin/sh
-
-set -e
-
-# Initialise the gnu-efi submodule and ensure the source is up-to-date.
-# Then build and install it for the given architecture.
-
-if [ $# -lt 2 ]; then
-cat <<EOF
-Usage: $0: <arch> <objdir&g...
2015 Jan 01
0
efi build dependent on git update
On Thu, Jan 1, 2015 at 7:13 AM, Geert Stappers <stappers at stappers.nl> wrote:
>
> Happy New Year!
>
>
> On Tue, Dec 30, 2014 at 05:29:29PM +0100, Geert Stappers wrote:
>> On Tue, Dec 30, 2014 at 09:34:57AM -0500, Michael Sumulong wrote:
>> > On Mon, Dec 29, 2014 at 8:36 PM, Gene Cumm wrote:
>> > >
>> > > 1) patch to not call git when
2015 Jan 01
2
efi build dependent on git update
Happy New Year!
On Tue, Dec 30, 2014 at 05:29:29PM +0100, Geert Stappers wrote:
> On Tue, Dec 30, 2014 at 09:34:57AM -0500, Michael Sumulong wrote:
> > On Mon, Dec 29, 2014 at 8:36 PM, Gene Cumm wrote:
> > >
> > > 1) patch to not call git when not present has been prepared for after
> > > 6.03 along with multiple other patches.
> >
> > 1) Sorry I
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