Displaying 20 results from an estimated 32 matches for "olh".
Did you mean:
old
2005 Jan 21
1
[PATCH] strncat appends not enough, doesnt terminate correctly
The klibc strncat doesnt behave like described in the man page.
It doesnt terminate the string if size < strlen(src).
It doesnt make dst longer than size.
This breaks scsi_id from udev/extras
#include <string.h>
#include <stdio.h>
int main(void)
{
unsigned char olh[42];
memset(olh, 'A', sizeof(olh));
sprintf(olh, "abc");
fprintf(stderr, "olh: '%s'\n", olh);
bar(olh, "123456789", 7);
fprintf(stderr, "olh: '%s'\n", olh);
return 0;
}
olh: 'abc'
olh:...
2003 Nov 24
1
ia64 mis-merge
Peter,
There was a mis-merge in the ia64 patch you put into 0.83. Olaf Hering
pointed it out. The patch is attached. Olaf claims that he is still
unable to compile for ia64 with is toolchain. He's getting the
following error:
<olh> libc.so(.got+0x0): multiple definition of `_GLOBAL_OFFSET_TABLE_'
<olh> tests/getenvtest.o(.got.plt+0x0): first defined here
<olh> make[2]: *** [tests/getenvtest.shared] Error 1
mh
--
Martin Hicks Wild Open Source Inc.
mort@wildopensource.com 613-266-2296...
2007 Jan 11
1
warning in GAM
...ta
PS: happy new year :-)
--
.......................................................................
Marta M. Rufino (PhD)
.....
Instituto Nacional de Investiga??o Agr?ria e das Pescas (INIAP/IPIMAR),
Centro Regional de Investiga??o Pesqueira do Sul (CRIPSul)
Avenida 5 de Outubro s/n
P-8700-305 Olh?o, Portugal
+351 289 700 541
.....
Institut de Ci?ncies del Mar - CMIMA (CSIC)
Passeig Mar?tim de la Barceloneta, 37-49
08003 BARCELONA - Catalunya
Spain
2004 Jun 08
2
klibc-0.130: s390, run-init
OK, I have just pushed out klibc-0.130; it significantly updates the run-init
program (again... PLEASE TEST IN A SAFE ENVIRONMENT) based on, but not
identical to, Alexander's suggestions; it also adds s390/x patches from Arnd
Bergmann.
-hpa
2002 Jun 04
1
Netatalk connection on Samba machine account - security breach?
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
[please cc to my address]
Dear Samba and Netatalk experts,
I've got a server running both samba 2.2.3a as PDC and netatalk (1.5pre7
as supplied by SuSE73). Samba machine accounts are added to /etc/passwd
automatically by the command
add user script = /usr/sbin/useradd -d /dev/null -g 90 -s /bin/false -M %u
when a NT machine is added to the
2003 May 20
0
De um amigo
...2, recebi pelo correio electronico (e-mail) uma informacao
inusitada.
E claro, ela veio espontaneamente. Simplesmente pegaram no meu nome/e-mail em
alguma base de dados ou de algum provedor. Gracas a Deus por isso!
Depois de ter lido a informacao por varias vezes, mal pude acreditar no que os
meus olhos tinham visto. Diante de mim estava uma estupenda maneira de
resolver todos os meus problemas. Eu nao teria que investir quase nada, e mais,
sem me endividar novamente. Logo peguei num papel e caneta e comecei a
fazer alguns calculos.
Conclui que o que iria fazer era um investimento baixissimo e,...
2003 Apr 12
0
De um amigo
...2, recebi pelo correio electronico (e-mail) uma informacao
inusitada.
E claro, ela veio espontaneamente. Simplesmente pegaram no meu nome/e-mail em
alguma base de dados ou de algum provedor. Gracas a Deus por isso!
Depois de ter lido a informacao por varias vezes, mal pude acreditar no que os
meus olhos tinham visto. Diante de mim estava uma estupenda maneira de
resolver todos os meus problemas. Eu nao teria que investir quase nada, e mais,
sem me endividar novamente. Logo peguei num papel e caneta e comecei a
fazer alguns calculos.
Conclui que o que iria fazer era um investimento baixissimo e,...
2008 Jun 30
4
Rebuild of kernel 2.6.9-67.0.20.EL failure
Hello list.
I'm trying to rebuild the 2.6.9.67.0.20.EL kernel, but it fails even without
modifications.
How did I try it?
Created a (non-root) build environment (not a mock )
Installed the kernel.scr.rpm and did a
rpmbuild -ba --target=`uname -m` kernel-2.6.spec 2> prep-err.log | tee
prep-out.log
The build failed at the end:
Processing files: kernel-xenU-devel-2.6.9-67.0.20.EL
Checking
2003 Nov 22
0
[PATCH] bug in nfsmount/main.c parse_int()
I'm booting with nfs options, but klibc doesnt like the rsize= option.
This patch fixes it.
console=ttyS0,38400 rw ip=eth0 root=/dev/nfs nfsroot=192.168.1.2:/nfsroot/mac,rsize=8192,wsize=8192,tcp kinit=/bin/kinit
--- usr/klibc/klibc-0.81.orig/nfsmount/main.c 2003-05-06 00:15:09.000000000 +0200
+++ usr/klibc/klibc-0.81/nfsmount/main.c 2003-11-22 19:14:18.000000000 +0100
@@ -80,7
2003 Nov 22
0
[PATCH] option parsing in kinit/kinit.c get_arg()
what is the purpose of get_arg()? should it return the option itself
and/or the arguments passed to an option?
this patch returns either 'rw' or '/dev/nfs' if name was root=/dev/nfs
--- usr/klibc/klibc-0.81.orig/kinit/kinit.c 2003-06-01 08:18:41.000000000 +0200
+++ usr/klibc/klibc-0.81/kinit/kinit.c 2003-11-22 19:19:17.000000000 +0100
@@ -181,10 +181,15 @@ char *get_arg(int
2003 Nov 23
1
[PATCH] dd O_CREAT permission
O_CREAT requires a mode argument for open()
This patch passes the current umask of the dd process.
--- usr/klibc/klibc-0.81.orig/utils/dd.c 2002-09-03 00:49:08.000000000 +0200
+++ usr/klibc/klibc-0.81/utils/dd.c 2003-11-23 18:04:11.000000000 +0100
@@ -8,6 +8,8 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
+#include <sys/types.h>
+#include
2003 Nov 28
1
[PATCH] Makefile dependencies
ash/sh depends on crt0.o, but it has no dependency, so it will not see
updates to the changed file.
diff -p -purNx linux -x '.*.d' -x syscalls -x socketcalls y/klibc-0.87/ash/Makefile klibc-0.87/ash/Makefile
--- y/klibc-0.87/ash/Makefile 2003-02-10 12:05:21.000000000 +0100
+++ klibc-0.87/ash/Makefile 2003-11-28 00:39:38.000000000 +0100
@@ -31,7 +31,7 @@ CLEANFILES =\
all: $(PROG)
2003 Nov 28
2
[PATCH] update crt0.S on ppc32
The _start stuff was changed some time ago, but ppc was not updated.
This fixes klibc for me. I'm not sure what to do with the second arg to
__libc_init, so I set it to 0..
However, looking at other static binaries, there is more stuff todo.
diff -p -purNx linux -x '.*.d' -x syscalls -x socketcalls y/klibc-0.87/klibc/arch/ppc/crt0.S klibc-0.87/klibc/arch/ppc/crt0.S
---
2004 Jan 27
1
[PATCH] ash make deps
a make -j may fail without it.
--- klibc/ash/Makefile.orig 2004-01-27 13:43:02.000000000 +0000
+++ klibc/ash/Makefile 2004-01-27 13:44:34.000000000 +0000
@@ -13,6 +13,7 @@ OBJ2 = builtins.o cd.o dirent.o bltin/ec
OBJS = $(OBJ1) $(OBJ2)
OBJ_NODES = cd.o eval.o exec.o expand.o jobs.o main.o nodes.o options.o parser.o redir.o show.o trap.o var.o
+OBJ_BUILTINS = b.o eval.o exec.o
SRCROOT =
2004 Jan 27
1
printf broken with recent fd and FILE changes
I'm not sure what the root cause is, but printf writes to fd 0:
mandarine:/usr/src/packages/BUILD/udev-015/klibc# ./utils/true
blah
mandarine:/usr/src/packages/BUILD/udev-015/klibc# ./utils/true >/dev/null
blah
mandarine:/usr/src/packages/BUILD/udev-015/klibc# cat utils/true.c
#include <stdio.h>
int main(void)
{
printf("blah\n");
return 0;
}
--
USB is for mice,
2004 Feb 21
1
[PATCH] sleep for klibc utils
This implements a sleep command.
diff -p -purN klibc-0.111/utils/Makefile klibc-0.111.utils/utils/Makefile
--- klibc-0.111/utils/Makefile 2004-02-10 00:18:15.000000000 +0100
+++ klibc-0.111.utils/utils/Makefile 2004-02-21 22:33:08.000000000 +0100
@@ -5,7 +5,7 @@ include ../MRULES
MAKEDEPS = -Wp,-MD,.$(subst /,-,$*).d
CFLAGS = $(MAKEDEPS) $(OPTFLAGS) $(REQFLAGS) -W -Wall
LIBS = $(KLIBC)
2004 Feb 21
1
[PATCH] ln for klibc utils
this implements a ln(1) with -f and -s support.
diff -p -purN klibc-0.112/utils/Makefile klibc-0.112.utils/utils/Makefile
--- klibc-0.112/utils/Makefile 2004-02-21 23:49:26.000000000 +0100
+++ klibc-0.112.utils/utils/Makefile 2004-02-22 01:23:17.000000000 +0100
@@ -6,7 +6,7 @@ MAKEDEPS = -Wp,-MD,.$(subst /,-,$*).
CFLAGS = $(MAKEDEPS) $(OPTFLAGS) $(REQFLAGS) -W -Wall
LIBS =
2004 Mar 14
0
[PATCH] fix klibc build against current kernel headers
2.6.4 changed asm/unistd.h, it includes now linux/types.h. This breaks
compilation of fork.c and mmap.c, duplicate typedefs on ppc64 and x86_64.
Moving one include fixes the compile.
--- klibc/fork.c
+++ klibc/fork.c 2004/03/14 15:04:51
@@ -5,8 +5,8 @@
* doesn't have sys_fork, only sys_clone...
*/
-#include <sys/syscall.h>
#include <signal.h>
+#include <sys/syscall.h>
2004 Aug 23
1
[PATCH] fix alpha build
alpha does not compile right now:
arch/alpha/crt0.S: Assembler messages:
arch/alpha/crt0.S:21: Warning: .ent directive without matching .end
arch/alpha/crt0.S:21: Error: can't resolve `0' {.text section} - `L0' {.text section}
make[1]: *** [arch/alpha/crt0.o] Error 1
It still doesnt work with that change, ash cant run external binaries,
./ash/sh
$ ls
ls: error 1
diff -p -purN
2004 Sep 02
1
__kernel_timer_t missing
Peter,
typedef __kernel_timer_t timer_t will fail with Arjans glibc headers,
they do not define __kernel_timer_t in asm/posix_types.h.
All archs supported by Linux have typedef int __kernel_timer_t. Can we
just get rid of the __kernel_timer_t?
--- klibc-0.171/klibc/include/sys/types.h.orig 2004-06-08 07:32:48.000000000 +0200
+++ klibc-0.171/klibc/include/sys/types.h 2004-09-02