search for: bbf23f2

Displaying 4 results from an estimated 4 matches for "bbf23f2".

2015 Sep 16
1
[PATCH 1/4] efi: Don't unnecessarily rebuild syslinux.so
...d-off-by: Sylvain Gault <sylvain.gault at gmail.com> Reviewed-by: Paulo Alcantara <pcacjr at zytor.com> Thanks, Paulo > --- > efi/Makefile | 7 +++---- > 1 file changed, 3 insertions(+), 4 deletions(-) > > diff --git a/efi/Makefile b/efi/Makefile > index d5443bd..bbf23f2 100644 > --- a/efi/Makefile > +++ b/efi/Makefile > @@ -60,11 +60,10 @@ DATE := $(shell sh $(SRC)/../gen-id.sh > $(VERSION) $(HEXDATE)) endif > CFLAGS += -DDATE_STR='"$(DATE)"' > > -.PHONY: subdirs > -subdirs: > - mkdir -p $(ARCH) > +$(OBJ)/$(AR...
2015 Sep 14
0
[PATCH 1/4] efi: Don't unnecessarily rebuild syslinux.so
...her target marked .PHONY is always rebuilt, thus forcing all the .o files to be rebuilt everytime. Signed-off-by: Sylvain Gault <sylvain.gault at gmail.com> --- efi/Makefile | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/efi/Makefile b/efi/Makefile index d5443bd..bbf23f2 100644 --- a/efi/Makefile +++ b/efi/Makefile @@ -60,11 +60,10 @@ DATE := $(shell sh $(SRC)/../gen-id.sh $(VERSION) $(HEXDATE)) endif CFLAGS += -DDATE_STR='"$(DATE)"' -.PHONY: subdirs -subdirs: - mkdir -p $(ARCH) +$(OBJ)/$(ARCH): + mkdir -p $@ -$(OBJS): subdirs +$(OBJS):...
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
...ectors(diskinfo, lba, buf, count); + if (ret) + return ret; + rb = disk_read_sectors(diskinfo, lba, count); + if (!rb) + return -1; + ret = memcmp(buf, rb, count * diskinfo->bps); + free(rb); + return ret ? -1 : 0; +} diff --git a/efi/Makefile b/efi/Makefile index bbf23f2..0c18d14 100644 --- a/efi/Makefile +++ b/efi/Makefile @@ -42,6 +42,7 @@ CORE_OBJS += $(addprefix $(OBJ)/../core/, \ 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...