search for: 58def28

Displaying 5 results from an estimated 5 matches for "58def28".

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
...te: Tue Dec 23 12:07:40 2014 -0500 efi: prevent git command in non-git tree #2 efi/clean-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/clean-gnu-efi.sh b/efi/clean-gnu-efi.sh index 84ed17a..58def28 100755 --- a/efi/clean-gnu-efi.sh +++ b/efi/clean-gnu-efi.sh @@ -23,7 +23,9 @@ objdir=$(readlink -f "$2") ( cd ../.. - git submodule update --init + if [ -d .git ]; then + git submodule update --init + fi ) if [ -d "$objdir/gnu-efi" ];then commit 87ab74f2071819849d...
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