Displaying 6 results from an estimated 6 matches for "syslinux_ldlinux".
2013 Jan 04
4
syslinux 5.00 does not build
I am trying to build an RPM starting from the TAR archive. The relevant
error is:
make[1]: Entering directory
`/tmp1/Software/rpmbuild/BUILD/syslinux-5.00/libinstaller'
perl bin2c.pl syslinux_bootsect < ../core/ldlinux.bss > bootsect_bin.c
perl bin2c.pl syslinux_ldlinux 512 < ../core/ldlinux.sys > ldlinux_bin.c
perl bin2c.pl syslinux_mbr < ../mbr/mbr.bin > mbr_bin.c
perl bin2c.pl syslinux_gptmbr < ../mbr/gptmbr.bin > gptmbr_bin.c
make[1]: *** No rule to make target
`../com32/elflink/ldlinux/ldlinux.c32', needed by `ldlinuxc32_bin.c'. St...
2008 Oct 16
1
syslinux compile fails: undefined symbol `obj_kpxeprefix'
...** [bin/undionly.kpxe.tmp] Error 1
Can anyone tell me where this symbol comes from and how to resolve this
situation? I tried simply ignoring it, because I don't need PXE, but it
just fails later with:
/home/lfs/src/pkgs/syslinux/syslinux-3.72/linux/syslinux.c:490:
undefined reference to `syslinux_ldlinux_len'
/home/lfs/src/pkgs/syslinux/syslinux-3.72/linux/syslinux.c:492:
undefined reference to `syslinux_ldlinux'
/home/lfs/src/pkgs/syslinux/syslinux-3.72/linux/syslinux.c:517:
undefined reference to `syslinux_ldlinux_len'
/home/lfs/src/pkgs/syslinux/syslinux-3.72/linux/syslinux.c:538:...
2011 Jan 17
1
Linker script assertion with binutils 2.21
...f fails to build on current Ubuntu Natty (binutils 2.21)
as follows:
ld -m elf_i386 -T dosexe.ld -o syslinux.elf header.o crt0.o ldlinux.o syslinux.o fat.o syslxmod.o syslxopt.o setadv.o getopt_long.o bootsect_bin.o mbr_bin.o cache.o fatchain.o open.o searchdir.o libcom.a
/usr/bin/ld.bfd.real: syslinux_ldlinux_size must equal the size of .payload
/usr/bin/ld.bfd.real: syslinux_ldlinux_size must equal the size of .payload
'objdump -t ldlinux.o' looks reasonable:
SYMBOL TABLE:
00000000 l d .text 00000000 .text
00000000 l d .data 00000000 .data
00000000 l d .bss 00000000...
2010 Jun 19
0
[PATCH] mtools/syslinux.c: Silence warnings
...* This command may fail legitimately */
- system("mattrib -h -r -s s:/ldlinux.sys 2>/dev/null");
+ ret = system("mattrib -h -r -s s:/ldlinux.sys 2>/dev/null");
mtp = popen("mcopy -D o -D O -o - s:/ldlinux.sys", "w");
if (!mtp || (fwrite(syslinux_ldlinux, 1, syslinux_ldlinux_len, mtp)
@@ -313,7 +314,7 @@ int main(int argc, char *argv[])
/* This command may fail legitimately */
sprintf(command, "mattrib -h -r -s %s 2>/dev/null", target_file);
- system(command);
+ ret = system(command);
sprintf(comma...
2008 Feb 26
2
3.62-pre16: Compiling on old (2.4 kernel) distros
I have put a compile hack in for older distros and pushed it out as
syslinux-3.62-pre16; for those who have reported compilation problem on
older distros I would greatly appreciate if you could confirm if it
works now (it worked for me on a CentOS 3.9 VM.)
-hpa
2016 Mar 05
2
build problems with 6.04-pre1
...in.c: $(OBJ)/../core/ldlinux.bss bin2c.pl
+bootsect_bin.c: $(OBJ)/../bios/core/ldlinux.bss bin2c.pl
$(PERL) $(SRC)/bin2c.pl syslinux_bootsect < $< > $@
-ldlinux_bin.c: $(OBJ)/../core/ldlinux.sys bin2c.pl
+ldlinux_bin.c: $(OBJ)/../bios/core/ldlinux.sys bin2c.pl
$(PERL) $(SRC)/bin2c.pl syslinux_ldlinux 512 < $< > $@
-mbr_bin.c: $(OBJ)/../mbr/mbr.bin bin2c.pl
+mbr_bin.c: $(OBJ)/../bios/mbr/mbr.bin bin2c.pl
$(PERL) $(SRC)/bin2c.pl syslinux_mbr < $< > $@
-gptmbr_bin.c: $(OBJ)/../mbr/gptmbr.bin bin2c.pl
+gptmbr_bin.c: $(OBJ)/../bios/mbr/gptmbr.bin bin2c.pl
$(PERL) $(SRC)/bin...