search for: 00de331

Displaying 1 result from an estimated 1 matches for "00de331".

Did you mean: 00331
2013 Jul 24
2
[PATCH 1/1] core: Add a check at ldlinux.sys build time.
...S.Carvalho <raphael.scarv at gmail.com> --- core/Makefile | 5 +++-- core/ldlinux_limit.pl | 31 +++++++++++++++++++++++++++++++ 2 files changed, 34 insertions(+), 2 deletions(-) create mode 100644 core/ldlinux_limit.pl diff --git a/core/Makefile b/core/Makefile index f795a5c..00de331 100644 --- a/core/Makefile +++ b/core/Makefile @@ -220,8 +220,9 @@ ldlinux.bss: ldlinux.bin dd if=$< of=$@ bs=512 count=1 ldlinux.sys: ldlinux.bin - dd if=$< of=$@ bs=512 skip=2 - + $(PERL) $(SRC)/ldlinux_limit.pl $< \ + dd if=$< of=$@ bs=512 skip=2; + codepage.cp: $(OBJ)/../code...