search for: sha1hash

Displaying 16 results from an estimated 16 matches for "sha1hash".

2004 Jul 26
1
klibc warnings
...efore pushing for inclusion in the kernel. usr/lib/readdir.c: In function `readdir': usr/lib/readdir.c:54: warning: use of cast expressions as lvalues is deprecated usr/lib/qsort.c: In function `qsort': usr/lib/qsort.c:33: warning: use of cast expressions as lvalues is deprecated usr/lib/sha1hash.c: In function `main': usr/lib/sha1hash.c:292: warning: unused variable `j' s/lib/klibc/g in the above to get right path. Sam
2003 Oct 04
0
klibc: kbuild improvements
...(obj)/socketcalls.mk: $(src)/SOCKETCALLS $(src)/socketcalls.pl - $(call if_changed,objs.mk) + $(call cmd,objs.mk) # That's what we're supposed to build -build-targets := $(obj)/crt0.o $(obj)/libc.a $(obj)/libc.so $(obj)/klibc.so +always := crt0.o libc.a libc.so klibc.so +host-progs := sha1hash -host-progs := $(obj)/sha1hash - -$(obj)/sha1hash: $(src)/sha1hash.c - $(HOSTCC) -o $@ $^ +defdep = $(obj)/$(1): $(addprefix $(obj)/,$(deps_$(1))) # crt0.o - -quiet_cmd_cp = CP $@ - cmd_cp = cp $< $@ - -$(obj)/crt0.o: $(obj)/arch/$(ARCH)/crt0.o - $(call if_changed,cp) - -targets +...
2007 Feb 11
1
syslinux-3.36 nopie patch
I made a patch that depending of gcc flavor add -no-pie or -nopie on libutil and dos Makefile. This fix fatal error like this sha1hash.c: In function `SHA1Transform': ../include/netinet/in.h:24: error: can't find a register in class `BREG' while reloading `asm' ../include/netinet/in.h:24: error: can't find a register in class `BREG' while reloading `asm' ../include/netinet/in.h:24: error: can't find...
2005 Jul 26
2
[PATCH] better kbuild integration
...ix $(obj)/, \ $(patsubst %/, %/built-in.o, $(multi-deps))) diff --git a/klibc/Kbuild b/klibc/Kbuild --- a/klibc/Kbuild +++ b/klibc/Kbuild @@ -119,6 +119,7 @@ $(SOLIB): $(CRT0) $(call objectify,__sha # Build sha1 hash values targets += klibc.so libc.so.hash hostprogs-y := sha1hash +clean-files += klibc-???????????????????????????.so quiet_cmd_solibhash = HASH $@ cmd_solibhash = $(USERNM) $< | egrep '^[0-9a-fA-F]+ [ADRTW] ' | \ @@ -129,7 +130,7 @@ $(SOLIB).hash: $(SOLIB) $(obj)/sha1hash quiet_cmd_sohash = GEN $@ cmd_sohash = cat $< >...
2006 Aug 16
2
File download logging
Is there any way of determining whether a file has been successfully downloaded by a user or to put it another way, whether a dowload was interrupted? -- Posted via http://www.ruby-forum.com/.
2007 Aug 15
0
[git patch] fstype support + minor stuff
...ecific entries ignore * toplevel: generated *.g and .*.cmd files * .S autognerated files in klibc/{socketcalls,syscalls}/ + targets * dash: generates a bunch of specific .c and .h files + targets * klibc targets * gzip targets * kinit targets * klibc: errlist.c, sha1hash git status after a build is now down to < 25 lines. :) Signed-off-by: maximilian attems <max at stro.at> diff --git a/.gitignore b/.gitignore index 1ab997c..d67ae65 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,5 @@ # *.o *.o.cmd +.*.cmd +*.g diff --git a/usr/da...
2011 Apr 16
20
[PATCH 00/20] Switch to ELF modules
...| 112 --- com32/elflink/modules/pcitest.c | 156 ---- com32/elflink/modules/printmsg.c | 116 --- com32/elflink/modules/refstr.h | 40 - com32/elflink/modules/sha1.h | 18 - com32/elflink/modules/sha1hash.c | 347 ------- com32/elflink/modules/sha256crypt.c | 559 ----------- com32/elflink/modules/sha512crypt.c | 606 ------------ com32/elflink/modules/test.c | 112 --- com32/elflink/modules/unbase64.c | 91...
2011 Apr 11
0
[PATCH] Makefile: Move Makefile fragments into mk/
...t a/com32/libutil/Makefile b/com32/libutil/Makefile index 02789ca..5942a08 100644 --- a/com32/libutil/Makefile +++ b/com32/libutil/Makefile @@ -30,7 +30,8 @@ ## topdir = ../.. -include ../MCONFIG +MAKEDIR = $(topdir)/mk +include $(MAKEDIR)/com32.mk LIBOBJS = ansiline.o ansiraw.o get_key.o sha1hash.o unbase64.o \ md5.o crypt-md5.o sha256crypt.o sha512crypt.o base64.o diff --git a/com32/lua/src/Makefile b/com32/lua/src/Makefile index 4081bfe..04ea255 100644 --- a/com32/lua/src/Makefile +++ b/com32/lua/src/Makefile @@ -16,7 +16,8 @@ ## topdir = ../../.. -include ../../MCONFIG +MAKEDI...
2004 Aug 13
1
[PATCH] make spotless update
make spotless leaves 2 generated files. diff -purN klibc-0.159.orig/klibc/Makefile klibc-0.159/klibc/Makefile --- klibc-0.159.orig/klibc/Makefile 2004-08-03 23:07:05.000000000 +0200 +++ klibc-0.159/klibc/Makefile 2004-08-13 22:23:35.696699671 +0200 @@ -156,6 +156,7 @@ clean: archclean rm -f sha1hash errlist.c spotless: clean + rm -f include/klibc/havesyscall.h syscalls.nrs find . \( -name \*~ -o -name '.*.d' \) -not -type d -print0 | \ xargs -0rt rm -f -- USB is for mice, FireWire is for men! sUse lINUX ag, n?RNBERG
2005 Jul 30
3
kbuild updates to klibc
Hi Peter & others. Here are three patches that does the following: #1 - Update kbuild part of klibc so make clean works Adds gzip including a sample kbuild file #2 - Factor out definition of usr/ to two variables #3 - Move kbuild files to reflect location in the kernel As requested in earlier mail I need a bit of guidiance of what you expect from the kernel integrated parts of klibc.
2011 Apr 16
6
[PATCH 0/6] Makefile cleanups
From: Matt Fleming <matt.fleming at linux.intel.com> This series includes a patch (PATCH 1/6) that I sent previously but I thought it was worth sending it again since the rest of the series depends on it, and it also gives a bit of context. These cleanups make it simpler to do the big switchover to ELF modules on the elflink branch because the libraries in $LIBS are now contained in one
2011 Feb 17
5
[PATCH 0/4] Reduce core size
From: Matt Fleming <matt.fleming at linux.intel.com> These patches are based on the elflink branch. This set of patches is my attempt at moving the command-line interface functionality out of the core and into an ELF module to reduce the size of the core. The most interesting patch is [PATCH 4/4] which moves the cli code out of core/elflink and into com32/elflink/modules. [PATCH 4/4] is
2011 Mar 09
14
[PATCH 00/12] elflink shrinkage
From: Matt Fleming <matt.fleming at linux.intel.com> This is a series of patches that, * shrink the core by moving things into an ldlinux ELF module * begin wiring up some of the C versions of various functions The core now only contains essential code and loads the ldlinux module to do everything else, like providing a command line interface and loading kernels. The config file parsing
2013 Aug 21
0
Build problems: klibc with Linux 3.10.7
...libc/arch/ppc/../../libgcc/__divdi3.o usr/klibc/arch/ppc/../../libgcc/__moddi3.o usr/klibc/arch/ppc/../../libgcc/__udivdi3.o usr/klibc/arch/ppc/../../libgcc/__umoddi3.o usr/klibc/arch/ppc/../../libgcc/__udivmoddi4.o /opt/cldk/lib/gcc/ppc-linux/4.4.4/nof/libgcc.a --end-group gcc -Wp,-MD,usr/klibc/.sha1hash.d -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -o usr/klibc/sha1hash usr/klibc/sha1hash.c ppc-linux-nm usr/klibc/libc.so | egrep '^[0-9a-fA-F]+ [ADRTW] ' | sort | usr/klibc/sha1hash > usr/klibc/libc.so.hash cat usr/klibc/libc.so > usr/klibc/klibc.so; ppc-linux-strip...
2013 Aug 21
5
Build problems: klibc with Linux 3.10.7
On Tue, Aug 20, 2013 at 07:44:39AM +0200, leroy christophe wrote: > > > Find attached two patches I have in order to build klibc 2.0.2 > against kernel 3.8.13 > We had to introduce those patches when going from kernel 3.6 to kernel 3.7 > Hope it helps. > those patches are wrong and again very brittle. just use the way it is described in `make help': A) cd ~/src/linux
2006 Jun 28
35
[klibc 00/31] klibc as a historyless patchset (updated and reorganized)
I have updated the klibc patchset based on feedback received. In particular, the patchset has been reorganized so as not to break git-bisect. Additionally, this updates the patch base to 2.6.17-git12 (d38b69689c349f35502b92e20dafb30c62d49d63) and klibc 1.4.8; the main difference on the klibc side is removal of obsolete code. This is also available as a git tree at: