search for: kwdhash

Displaying 6 results from an estimated 6 matches for "kwdhash".

Did you mean: dhash
2007 Jan 04
2
Automatically choose between 32-bit and 64-bit kernel
...menu, pc_comment keyword append, pc_append keyword default, pc_default + keyword default64, pc_default64 keyword display, pc_filecmd, get_msg_file keyword font, pc_filecmd, loadfont keyword implicit, pc_setint16, AllowImplicit diff -ur syslinux-3.31.orig/kwdhash.gen syslinux-3.31/kwdhash.gen --- syslinux-3.31.orig/kwdhash.gen 2006-09-26 00:52:27.000000000 -0400 +++ syslinux-3.31/kwdhash.gen 2007-01-03 15:17:26.000000000 -0500 @@ -1,6 +1,7 @@ hash_menu equ 0x003719b5 hash_append equ 0xc53999a4 hash_default equ 0...
2002 Dec 24
1
Build problems in syslinux 2.00
...9;t think that's relevant. Having found no build instructions, no configure script I decided on 'make' It worked, except the ls command showed some files were not built because there are old versions in the tarball. I tried 'make clean all' but still I have old files: ls -ltr kwdhash.gen version.gen ldlinux.bss ldlinux.sys ldlinux.bin pxelinux.0 mbr.bin isolinux.bin isolinux-debug.bin syslinux.com syslinux copybs.com gethostip mkdiskimage memdisk/memdisk -rw-rw-r-- 1 1026 1026 63 Oct 26 03:16 version.gen -rw-rw-r-- 1 1026 1026 1053 Oct 26 03:16 k...
2009 Jul 11
1
dynamic branch build failure
# git checkout -f origin/dynamic HEAD is now at 0d61211... Add __dynsym_len and __dynstr_len # git describe syslinux-3.82-564-g0d61211 # make ... perl genhash.pl < keywords > kwdhash.gen make[1]: *** No rule to make target `ldlinux.bin', needed by `ldlinux.bss'. Stop. make[1]: Leaving directory `syslinux/core' make: *** [all] Error 2 - Sebastian
2015 Oct 05
0
[PATCH 4/4] core: Move linker script in arch-agnostic dir
...core/Makefile | 2 +- core/{i386 => }/syslinux.ld | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename core/{i386 => }/syslinux.ld (100%) diff --git a/core/Makefile b/core/Makefile index 26302fd..6fb6377 100644 --- a/core/Makefile +++ b/core/Makefile @@ -161,7 +161,7 @@ kwdhash.gen: keywords genhash.pl AUXLIBS = libisolinux.a libisolinux-debug.a libldlinux.a \ libpxelinux.a liblpxelinux.a -LDSCRIPT = $(SRC)/$(ARCH)/syslinux.ld +LDSCRIPT = $(SRC)/syslinux.ld %.elf: %.o $(LIBDEP) $(LDSCRIPT) $(AUXLIBS) $(LD) $(LDFLAGS) -Bsymbolic $(LD_PIE) -E --hash-style=gnu -T $...
2014 Dec 17
0
[PATCH] build: sort sources to build in a more deterministic way
...:= $(shell $(PERL) $(topdir)/now.pl $(SRCS) $(sort $(wildcard *.h))) endif ifndef DATE DATE := $(shell sh $(topdir)/gen-id.sh $(VERSION) $(HEXDATE)) diff --git a/core/Makefile b/core/Makefile index ad0acb5..bb754b8 100644 --- a/core/Makefile +++ b/core/Makefile @@ -39,11 +39,11 @@ BTARGET = kwdhash.gen \ isolinux.bin isolinux-debug.bin pxelinux.0 lpxelinux.0 # All primary source files for the main syslinux files -NASMSRC := $(wildcard $(SRC)/*.asm) -NASMHDR := $(wildcard $(SRC)/*.inc) -CSRC := $(shell find $(SRC) -name '*.c' -print) -SSRC := $(shell find $(SRC) -name '...
2015 Oct 05
7
[PATCH 0/4] Improve linker scripts
From: Sylvain Gault <sylvain.gault at gmail.com> These patches basically remove unused linker scripts and port a change that was made to an unused script. Those are to be applied on top of the gcc 5 bug fixes as they would conflict otherwise. Sylvain Gault (4): diag/mbr: fix dependency to linker script Remove unused linker scripts core: Make symbols defined in linker script HIDDEN