search for: a7503ef

Displaying 2 results from an estimated 2 matches for "a7503ef".

Did you mean: 99503ef
2014 Feb 24
3
[RFC, PATCH] core/pxe: Add architecture-specific discovery request for PXE config file
...d-off-by: Jeremy Kerr <jk at ozlabs.org> --- core/Makefile | 1 + core/fs/pxe/pxe.c | 5 +++++ core/fs/pxe/pxe.h | 12 ++++++++++++ doc/pxelinux.txt | 21 +++++++++++++++++---- 4 files changed, 35 insertions(+), 4 deletions(-) diff --git a/core/Makefile b/core/Makefile index a7503ef..233a374 100644 --- a/core/Makefile +++ b/core/Makefile @@ -82,6 +82,7 @@ ifdef EFI_BUILD FILTER_OBJS += $(subst $(SRC)/,, \ $(patsubst %.c,%.o, $(wildcard $(SRC)/thread/*.c)) \ $(patsubst %.S,%.o, $(wildcard $(SRC)/thread/*.S))) +CFLAGS += -D__EFI__ endif COBJS = $(filter-out $(FILTER_OB...
2013 Sep 30
2
[PATCH v2] core: Check size of ldlinux.sys at building time.
...leming <matt at console-pimps.org> --- core/Makefile | 1 + core/ldlinux_limit.pl | 80 +++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 81 insertions(+), 0 deletions(-) create mode 100755 core/ldlinux_limit.pl diff --git a/core/Makefile b/core/Makefile index a7503ef..635d8ab 100644 --- a/core/Makefile +++ b/core/Makefile @@ -224,6 +224,7 @@ ldlinux.bss: ldlinux.bin dd if=$< of=$@ bs=512 count=1 ldlinux.sys: ldlinux.bin + $(PERL) $(SRC)/ldlinux_limit.pl $< \ dd if=$< of=$@ bs=512 skip=2 codepage.cp: $(OBJ)/../codepage/$(CODEPAGE).cp diff --git...