Displaying 20 results from an estimated 31 matches for "ddate_str".
2016 Mar 07
2
Syslinux 6.04-pre1
On 06.03.2016 18:23, poma wrote:
> On 06.03.2016 16:47, poma wrote:
>> ...
>>> nasm -f elf -Ox -g -F dwarf -DDATE_STR="''" \
>>> -DHEXDATE="0x56dc3c62" \
>>> -Di386 \
>>> -I/tmp/syslinux-6.04-pre1/core/ \
>>> -l ldlinux.lsr -o ldlinux.o -MP -MD ./.ldlinux.o.d /tmp/syslinux-6.04-pre1/core/ldlinux.asm
>>> nasm -f elf -Ox -g -F dwarf -DDATE...
2008 Mar 03
1
Syslinux compilation in MinGw
hi
I have download the syslinux-3.51 source package and i have tried to compile syslinux with MinGw.
I got the following error message.
***********************************************************************
$ make
nasm -O99 -f bin -DDATE_STR="'0x47bd5366'" -DHEXDATE="0x47bd5366" \
-DMAP=isolinux.map -l isolinux.lst -o isolinux.bin isolinux.asm
isolinux.asm:671: error: parser: instruction expected
make: *** [isolinux.bin] Error 1
***********************************************************************...
2016 Mar 06
3
Syslinux 6.04-pre1
...
> nasm -f elf -Ox -g -F dwarf -DDATE_STR="''" \
> -DHEXDATE="0x56dc3c62" \
> -Di386 \
> -I/tmp/syslinux-6.04-pre1/core/ \
> -l ldlinux.lsr -o ldlinux.o -MP -MD ./.ldlinux.o.d /tmp/syslinux-6.04-pre1/core/ldlinux.asm
> nasm -f elf -Ox -g -F dwarf -DDATE_STR="''" \
> -DHE...
2013 Feb 04
1
syslinux 4.02 build problem
...inux.4.02 i get an error like this. I haven't been able to
figure out what could be wrong.
My gcc version is 4.1.2 and nasm is 2.10.07. Binutils is 2.17.50
I am compiling on xenserver 6.0
Thanks
Alakesh
31186 bytes (31 kB) copied, 0.000315067 seconds, 99.0 MB/s
nasm -f elf -Ox -g -F dwarf -DDATE_STR="'0x5110300a'" \
-DHEXDATE="0x5110300a" \
-l isolinux.lsr -o isolinux.o -MP -MD .isolinux.o.d
isolinux.asm
ld -m elf_i386 -T syslinux.ld -M -o isolinux.elf isolinux.o \
--start-group libcore.a ../com32/lib/libcomcore.a
/us...
2016 Mar 08
0
Syslinux 6.04-pre1
On 07.03.2016 06:45, poma wrote:
> On 06.03.2016 18:23, poma wrote:
>> On 06.03.2016 16:47, poma wrote:
>>> ...
>>>> nasm -f elf -Ox -g -F dwarf -DDATE_STR="''" \
>>>> -DHEXDATE="0x56dc3c62" \
>>>> -Di386 \
>>>> -I/tmp/syslinux-6.04-pre1/core/ \
>>>> -l ldlinux.lsr -o ldlinux.o -MP -MD ./.ldlinux.o.d /tmp/syslinux-6.04-pre1/core/ldlinux.asm
>>>> nasm -f elf -Ox...
2013 Apr 19
2
make issue with syslinux-5.01
...dary=2
-fvisibility=hidden -g -W -Wall -Wstrict-prototypes -Wno-sign-compare
-I./include -I../com32/include -I../com32/lib -D__SYSLINUX_CORE__ -c -o
plaincon.o plaincon.c
rm -f libldlinux.a
ar cq libldlinux.a plaincon.o
ranlib libldlinux.a
cp libisolinux.a libpxelinux.a
nasm -f elf -Ox -g -F dwarf -DDATE_STR="'0x516f52cb'" \
-DHEXDATE="0x516f52cb" \
-l ldlinux.lsr -o ldlinux.o -MP -MD .ldlinux.o.d ldlinux.asm
(null):0: fatal: command line optimization level must be 'v', 0..3 or <nn>
make[1]: *** [ldlinux.o] Error 1
make[1]: Leaving directory `/t...
2008 Jun 10
1
syslinux-3.70-pre14-5-gbb17071 - pxeidle.inc missing?
I get this error trying to compile current git:
nasm -O9999 -f elf -g -F stabs -DDATE_STR="'0x484e9ecd'" \
-DHEXDATE="0x484e9ecd" \
-l pxelinux.lsr -o pxelinux.o pxelinux.asm
pxelinux.asm:2693: fatal: unable to open include file `pxeidle.inc'
make[1]: *** [pxelinux.o] Fehler 1
- Sebastian
2015 Sep 14
1
[PATCH 1/4] efi: Don't unnecessarily rebuild syslinux.so
...; thus forcing all the .o files to be rebuilt everytime.
>
> Signed-off-by: Sylvain Gault <sylvain.gault at gmail.com>
> --- 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): | $(OBJ)/$(ARCH)
What does the | do?
> # The targets to build in this directory
> BTARGET = syslinux.e...
2015 Sep 16
1
[PATCH 1/4] efi: Don't unnecessarily rebuild syslinux.so
...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): | $(OBJ)/$(ARCH)
>
> # The targets to build in this directory
> BTARGET = syslinux.efi
--
Paulo A...
2016 Mar 06
0
Syslinux 6.04-pre1
On 06.03.2016 16:47, poma wrote:
> ...
>> nasm -f elf -Ox -g -F dwarf -DDATE_STR="''" \
>> -DHEXDATE="0x56dc3c62" \
>> -Di386 \
>> -I/tmp/syslinux-6.04-pre1/core/ \
>> -l ldlinux.lsr -o ldlinux.o -MP -MD ./.ldlinux.o.d /tmp/syslinux-6.04-pre1/core/ldlinux.asm
>> nasm -f elf -Ox -g -F dwarf -DDATE_STR="''...
2007 Aug 15
1
syslinux-3.52-pre6 will not assemble
Hello,
While attempting to build syslinux-3.52-pre6 for testing (my SCSI machine
won't boot from CD-ROM with 3.51) I hit this problem:
nasm -O99 -f bin -DDATE_STR="'3.52-pre6'" -DHEXDATE="0x46c22b21" \
-DMAP=pxelinux.map -l pxelinux.lsr -o pxelinux.bin pxelinux.asm
pxelinux.asm:1206: error: short jump is out of range
nasm -version
NASM version 0.99.01 compiled on Aug 12 2007
2016 Mar 08
2
Syslinux 6.04-pre1
On 03/08/16 07:49, poma via Syslinux wrote:
>
> ...
> nasm -f elf -Ox -g -F dwarf -DDATE_STR="'6.03-156-g1ac927d'" \
> -DHEXDATE="0x56deef98" \
> -Di386 \
> -I/tmp/syslinux/core/ \
> -l ldlinux.lsr -o ldlinux.o -MP -MD ./.ldlinux.o.d /tmp/syslinux/core/ldlinux.asm
> head.inc:26: fatal: NASM 2.11.06 is known to miscompile Syslinux
> /tmp/sys...
2009 Mar 26
1
isolinux-debug: Approaching overflow
While attempting to work on implementing readdir in ISOLINUX, I made
it large enough that it overflowed for isolinux-debug.
$ make all
nasm -O9999 -f elf -g -F stabs -DDATE_STR="'pre11-112-g930881b*'" \
-DHEXDATE="0x49caaf5b" \
-l isolinux.lsr -o isolinux.o isolinux.asm
ld -m elf_i386 -T syslinux.ld -M -o isolinux.elf isolinux.o > isolinux.map
objdump -h isolinux.elf > isolinux.sec
perl lstadjust.pl isolin...
2016 Mar 06
0
Syslinux 6.04-pre1
...rc/include -I/tmp/syslinux-6.04-pre1/core/lwip/src/include/ipv4 -I/tmp/syslinux-6.04-pre1/core/fs/pxe -D__SYSLINUX_CORE__ -D__FIRMWARE_BIOS__ -I/tmp/syslinux-6.04-pre1/bios -DLDLINUX=\"ldlinux.c32\" -c -o fs/pxe/tcp.o /tmp/syslinux-6.04-pre1/core/fs/pxe/tcp.c
nasm -f elf -Ox -g -F dwarf -DDATE_STR="''" \
-DHEXDATE="0x56dc3c62" \
-Di386 \
-I/tmp/syslinux-6.04-pre1/core/ \
-l ldlinux.lsr -o ldlinux.o -MP -MD ./.ldlinux.o.d /tmp/syslinux-6.04-pre1/core/ldlinux.asm
nasm -f elf -Ox -g -F dwarf -DDATE_STR="''" \
-DHEXDATE="0x56dc3c62" \...
2016 Mar 05
11
Syslinux 6.04-pre1
After so much time and improvements, I'm glad to see and publicize a
pre-release, 6.04-pre1 in
https://www.kernel.org/pub/linux/utils/boot/syslinux/Testing/6.04/
Personally, I've already been working testing the pre-release as-is
and my tests have been positive so far. I appreciate feedback like
that from Gabriele Balducci and testing "make bios installer".
Yes, there are a
2006 Jun 27
1
Build on Linux / Messages nasm error: short jump is out of range
...CEST 2006 i686 i686 i386 GNU/Linux
bash-2.05b$ BUILD/syslinux-3.11/opt/nasm-0.98.38-2/bin/nasm -version
NASM version 0.98.38 compiled on Jun 26 2006
But failed with:
+ make NASM=/home/axel/p/rpm/BUILD/syslinux-3.11/opt/nasm/bin
/nasm
/home/axel/p/rpm/BUILD/syslinux-3.11/opt/nasm/bin/nasm -f bin
-DDATE_STR="'0x43115316'" -DHEXDATE="0x43115316" \
-DMAP=pxelinux.map -l pxelinux.lst -o pxelinux.bin
pxelinux.asm
pxelinux.asm:356: error: short jump is out of range
pxelinux.asm:381: error: short jump is out of range
pxelinux.asm:409: error: short jump is out of range
pxe...
2015 Feb 09
5
extlinux installer build failed
...p/src/api/err.o lwip/src/api/api_msg.o
lwip/src/api/api_lib.o lwip/src/arch/sys_arch.o fs/pxe/core.o
fs/pxe/dnsresolv.o fs/pxe/ftp.o fs/pxe/ftp_readdir.o fs/pxe/gpxeurl.o
fs/pxe/http.o fs/pxe/http_readdir.o fs/pxe/idle.o fs/pxe/isr.o
fs/pxe/tcp.o
ranlib liblpxelinux.a
nasm -f elf -Ox -g -F dwarf -DDATE_STR="''" \
-DHEXDATE="0x54d7efa1" \
-Di386 \
-I/sources/syslinux-6.03/core/ \
-l ldlinux.lsr -o ldlinux.o -MP -MD ./.ldlinux.o.d
/sources/syslinux-6.03/core/ldlinux.asm
diskstart.inc:438: error: symbol references not supported in
preprocess-only mode
diskstar...
2015 Feb 09
0
extlinux installer build failed
...sg.o
> lwip/src/api/api_lib.o lwip/src/arch/sys_arch.o fs/pxe/core.o
> fs/pxe/dnsresolv.o fs/pxe/ftp.o fs/pxe/ftp_readdir.o fs/pxe/gpxeurl.o
> fs/pxe/http.o fs/pxe/http_readdir.o fs/pxe/idle.o fs/pxe/isr.o
> fs/pxe/tcp.o
> ranlib liblpxelinux.a
>
> nasm -f elf -Ox -g -F dwarf -DDATE_STR="''" \
> -DHEXDATE="0x54d7efa1" \
> -Di386 \
> -I/sources/syslinux-6.03/core/ \
> -l ldlinux.lsr -o ldlinux.o -MP -MD ./.ldlinux.o.d
> /sources/syslinux-6.03/core/ldlinux.asm
> diskstart.inc:438: error: symbol references not supported in...
2015 Feb 09
1
extlinux installer build failed
....o lwip/src/arch/sys_arch.o fs/pxe/core.o
> > fs/pxe/dnsresolv.o fs/pxe/ftp.o fs/pxe/ftp_readdir.o
> > fs/pxe/gpxeurl.o fs/pxe/http.o fs/pxe/http_readdir.o fs/pxe/idle.o
> > fs/pxe/isr.o fs/pxe/tcp.o
> > ranlib liblpxelinux.a
> >
> > nasm -f elf -Ox -g -F dwarf -DDATE_STR="''" \
> > -DHEXDATE="0x54d7efa1" \
> > -Di386 \
> > -I/sources/syslinux-6.03/core/ \
> > -l ldlinux.lsr -o ldlinux.o -MP -MD ./.ldlinux.o.d
> > /sources/syslinux-6.03/core/ldlinux.asm
> > diskstart.inc:438: error: symb...
2015 Sep 14
0
[PATCH 1/4] efi: Don't unnecessarily rebuild syslinux.so
...m>
---
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): | $(OBJ)/$(ARCH)
# The targets to build in this directory
BTARGET = syslinux.efi
--
2.5.1