search for: hexdate

Displaying 10 results from an estimated 10 matches for "hexdate".

Did you mean: dhexdate
2014 Dec 17
0
[PATCH] build: sort sources to build in a more deterministic way
...file b/com32/rosh/Makefile index 4d900f4..0d49eec 100644 --- a/com32/rosh/Makefile +++ b/com32/rosh/Makefile @@ -27,7 +27,7 @@ include $(MAKEDIR)/rosh.mk # official release. Otherwise, substitute a hex string that is pretty much # guaranteed to be unique to be unique from build to build. ifndef HEXDATE -HEXDATE := $(shell $(PERL) $(topdir)/now.pl $(SRCS) $(wildcard *.h)) +HEXDATE := $(shell $(PERL) $(topdir)/now.pl $(SRCS) $(sort $(wildcard *.h))) endif ifndef DATE DATE := $(shell sh $(topdir)/gen-id.sh $(VERSION) $(HEXDATE)) diff --git a/com32/sysdump/Makefile b/com32/sysdump/Makefile inde...
2008 Jan 21
1
hexadecimal to binary conversion
Se ha borrado un texto insertado con un juego de caracteres sin especificar... Nombre: no disponible Url: https://stat.ethz.ch/pipermail/r-help/attachments/20080121/7b562f32/attachment.pl
2010 Oct 19
0
R script help needed for RFC 2104 HMAC algorithm
I'm trying to create an R script that will execute the HMAC algorithm for key-hashing messages. My hope is to use this script for some web authentication via R. The algorithm is found at http://www.ietf.org/rfc/rfc2104.txt Here is some example code that I have done that does not work for HMAC-MD5. I'm a big confused by the algorithm since I don't have a very good working knowledge
2007 Dec 14
3
SYSLINUX doesn't build on RedHat 4
I grabbed the new SYSLINUX 3.54, but it refuses to build on my RedHat RHEL4 system: # make set -e ; for i in mbr ; do make DATE=0x47606c42 HEXDATE=0x47606c42 -C $i all ; done make[1]: Entering directory `/scratch/syslinux-3.54/mbr' gcc -m32 -ffreestanding -march=i386 -Wa,-a=mbr.lst -c -o mbr.o mbr.S as: option `-alternate' doesn't allow an argument make[1]: *** [mbr.o] Error 1 make[1]: Leaving directory `/scratch/syslinux-3.54/mb...
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
2015 Sep 14
1
[PATCH 1/4] efi: Don't unnecessarily rebuild syslinux.so
...get marked .PHONY is always rebuilt, > 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...
2015 Sep 16
1
[PATCH 1/4] efi: Don't unnecessarily rebuild syslinux.so
...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 > BT...
2015 Sep 14
0
[PATCH 1/4] efi: Don't unnecessarily rebuild syslinux.so
...<sylvain.gault at gmail.com> --- 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
2015 Sep 14
11
[PATCH 0/4] efi: Makefile improvement
From: Sylvain Gault <sylvain.gault at gmail.com> These few patches contain a few improvement about the Makefiles for EFI. Mainly, to rebuild the files when needed, and only when needed. The three shell scripts efi/{check,build,clean}-gnu-efi.sh disappeared and are now integrated as makefile recipes. You'll notice an argument ARFLAGS=rvU to the recursive make calls to gnu-efi. This is
2005 Jan 12
3
syslinux build fails with 2.6 linux headers
As the subject says, building syslinux fails when built against 2.6.8.1 kernel headers. Anybody out there have a patch? The compile errors are below. set -e ; for i in memdisk dos win32 mtools unix extlinux sample com32 ; do make DATE=0x41e470ae HEXDATE=0x41e470ae -C $i all ; done make[1]: Entering directory `/usr/src/syslinux-3.07-pre1/memdisk' make[1]: Nothing to be done for `all'. make[1]: Leaving directory `/usr/src/syslinux-3.07-pre1/memdisk' make[1]: Entering directory `/usr/src/syslinux-3.07-pre1/dos' make[1]: Nothing to be...