search for: syslinux_ldlinux_len

Displaying 3 results from an estimated 3 matches for "syslinux_ldlinux_len".

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: und...
2011 Jan 17
1
Linker script assertion with binutils 2.21
...0000000 l d .bss 00000000 .bss 00000000 l d .payload 00000000 .payload 00000000 l d .rodata 00000000 .rodata 00000000 g .payload 00007c00 syslinux_ldlinux 00007c00 g *ABS* 00000000 syslinux_ldlinux_size 00000000 g .rodata 00000004 syslinux_ldlinux_len Our toolchain packager pointed me at http://sources.redhat.com/git/?p=binutils.git;a=commitdiff;h=557189b0dd1f3dec6b00b91b9b0c5459ece72a52, which indeed seems like a likely cause of this kind of failure. However, I'm having a hard time pinning down what the problem might be. Does anyone more f...
2010 Jun 19
0
[PATCH] mtools/syslinux.c: Silence warnings
...il 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(command, "mmove -D o -D O...