Displaying 20 results from an estimated 200 matches similar to: "[PATCH] klibc: reproducible builds"
2019 Oct 07
0
[klibc:master] Kbuild: Work around broken "ar s" in binutils 2.32
Commit-ID: 17e0df3e79cdb5c68d29af5c742cd691f45a4781
Gitweb: http://git.kernel.org/?p=libs/klibc/klibc.git;a=commit;h=17e0df3e79cdb5c68d29af5c742cd691f45a4781
Author: Ben Hutchings <ben at decadent.org.uk>
AuthorDate: Mon, 7 Oct 2019 16:43:04 +0100
Committer: Ben Hutchings <ben at decadent.org.uk>
CommitDate: Mon, 7 Oct 2019 17:24:39 +0100
[klibc] Kbuild: Work around broken
2019 Jan 20
0
[klibc:master] Kbuild: Add option to install unstripped binaries
Commit-ID: 908fca5066fa8e8934df21cbde84b8eccab8a5c9
Gitweb: http://git.kernel.org/?p=libs/klibc/klibc.git;a=commit;h=908fca5066fa8e8934df21cbde84b8eccab8a5c9
Author: Ben Hutchings <ben at decadent.org.uk>
AuthorDate: Sat, 19 Jan 2019 23:19:38 +0000
Committer: Ben Hutchings <ben at decadent.org.uk>
CommitDate: Sun, 20 Jan 2019 00:14:40 +0000
[klibc] Kbuild: Add option to
2006 Jan 31
1
[patch] Kbuild.klibc don't hardcode gcc version
sparc still needs gcc-3.3 for a working run-init.
belows makes use of the exported CC var.
Signed-off-by: maximilian attems <maks@sternwelten.at>
diff --git a/scripts/Kbuild.klibc b/scripts/Kbuild.klibc
index 66e16e7..70e4071 100644
--- a/scripts/Kbuild.klibc
+++ b/scripts/Kbuild.klibc
@@ -72,7 +72,7 @@ KLIBCROSS := $(CROSS_COMPILE)
# binutils
KLIBCLD := $(KLIBCROSS)ld
2006 Jun 26
0
[klibc 19/43] klibc basic build infrastructure
Basic infrastructure for building klibc.
Signed-off-by: H. Peter Anvin <hpa at zytor.com>
---
commit 5bba564a5c133369b3e83e5827d053a98cb3c59a
tree 11f2acc1f9d845e8764fa790f522b79ea1106b80
parent 378abd8f4d39024ea6c87eb5b54155238f647f0d
author H. Peter Anvin <hpa at zytor.com> Sun, 25 Jun 2006 16:58:08 -0700
committer H. Peter Anvin <hpa at zytor.com> Sun, 25 Jun 2006 16:58:08
2017 Dec 30
6
building debug version of klibc
Hello!
Can someone please help me in building debug version of klibc ?
I've cloned git://git.kernel.org/pub/scm/libs/klibc/klibc.git , but
failed to build it with debug info
added "-g" to HOSTCFLAGS in Makefile, but
$ make -j KLIBCKERNELSRC=`pwd`/../linux-2.6/usr
still strips every debug symbol , and i'm failed to change
scripts/Kbuild.klibc and Makefile to remove strip
2020 Mar 28
0
[klibc:master] README.klibc: Document the KBUILD_REPRODUCIBLE variable
Commit-ID: 5def595a55493832f23c7d18a50937e93c61c80e
Gitweb: http://git.kernel.org/?p=libs/klibc/klibc.git;a=commit;h=5def595a55493832f23c7d18a50937e93c61c80e
Author: Ben Hutchings <ben at decadent.org.uk>
AuthorDate: Sat, 28 Mar 2020 22:31:19 +0000
Committer: Ben Hutchings <ben at decadent.org.uk>
CommitDate: Sat, 28 Mar 2020 22:33:28 +0000
[klibc] README.klibc: Document the
2006 Jul 09
6
[PATCH/RFC] klibc/kbuild: use separate kbuild files for each klibc subdirectory
This fixes a long standing issue where it was not possible to
do "make usr/klibc/arch/x86_64/longjmp.o" in the kernel.
The principle is that all .o files to be part of klibc are listed
with klib-y. For each directory a klib.list file is made that specify
all .o file and the final AR then adds all .o files to create libc.a.
This patch introduce the infrastructure and converts x86_64 to
2020 Aug 22
0
[ANNOUNCE] klibc 2.0.8
I have released version 2.0.8. This is available in the git
repository at:
https://git.kernel.org/pub/scm/libs/klibc/klibc.git
and as a tarball at:
https://mirrors.kernel.org/pub/linux/libs/klibc/2.0/
New features:
- Support for building with clang and lld, at least on x86
- Defined sysconf(), initially supporting only _SC_PAGE_SIZE
- Defined clearerr() as extern
- Defined stdio
2008 Oct 20
1
compile klibc problem (EABI version error)
Dear all,
I am using initramfs and from the kernel document, I know klibc.
So i decide to use it.
We are working on marvell pxa310 (bought from Intel), and with
the tools chain from marvell, I comple klibc as follows:
klibc-1.5> ln -s
/home/zjujoe/svn/mhlv_2.6/working/songlixin/20081007_kernel_tflashupdate/
linux
klibc-1.5>cat 1.sh
export KLIBCARCH=arm
export
2012 Jun 28
1
[PATCH] klibc: fix gethostname()/getdomainname()
From: Maciej ?enczykowski <maze at google.com>
uname(2) returns (like all syscalls) 0 on success.
Signed-off-by: Maciej ?enczykowski <maze at google.com>
---
usr/klibc/getdomainname.c | 2 +-
usr/klibc/gethostname.c | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/usr/klibc/getdomainname.c b/usr/klibc/getdomainname.c
index 61722ca3519b..218ff0baa871
2005 May 31
4
On SSH
Hello,
does anybody know how to achieve the following with SSH...
a) accept RSA authentication for all but root from any IP
b) accept RSA authentication for root from a couple IPs/Netmasks
c) accept password authentication for all but root from a dozen Netmasks
d) accept password authentication for root from 3 local netmasks only
ie. make authentication depend on the
2010 Oct 19
3
[PATCH] Fix up 3 klibc build warnings.
klibc/scripts/basic/fixdep.c: In function 'traps':
klibc/scripts/basic/fixdep.c:368: warning: dereferencing type-punned pointer will break strict-aliasing rules
klibc/scripts/basic/fixdep.c:370: warning: dereferencing type-punned pointer will break strict-aliasing rules
klibc/usr/dash/jobs.c: In function 'sprint_status':
klibc/usr/dash/jobs.c:427: warning: format not a string
2011 Nov 06
3
sys/types.h -> linux/types.h and __aligned_u64
When building klibc 1.5.25 against linux/master (ie. post 3.1) I'm seeing:
klibc/generated/include/linux/if_packet.h:176: error: expected
specifier-qualifier-list before '__aligned_u64'
which seems to come from upstream commits:
0d4691ce112be025019999df5f2a5e00c03f03c2 remotes/linux/master~90^2~408 (origin)
96c131842aab45b5d139d0bcb417796819f5ee92 remotes/linux/master~90^2~169
2013 May 29
1
[PATCH] klibc: fix capability dropping
From: Maciej ?enczykowski <maze at google.com>
Google-Bug-Id: 9093057
Change-Id: I75a6cdc0619ae95a0220e8387aa54920701f6209
---
usr/kinit/capabilities.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/usr/kinit/capabilities.c b/usr/kinit/capabilities.c
index e743a70fec0f..4e0456ee7407 100644
--- a/usr/kinit/capabilities.c
+++ b/usr/kinit/capabilities.c
@@ -172,9
2009 Jun 09
12
[Bug 1604] New: SCTP support for openssh
https://bugzilla.mindrot.org/show_bug.cgi?id=1604
Summary: SCTP support for openssh
Product: Portable OpenSSH
Version: 5.2p1
Platform: All
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: Miscellaneous
AssignedTo: unassigned-bugs at mindrot.org
ReportedBy: jchadima at
2005 Nov 25
3
Query: Filesystems
Hello,
Just a few quick, but not very simple questions...:
Do any Linux filesystems (besides XFS) support freezing?
(ie. in conjuction with LVM snapshots this can allow a mounted
filesystem to be frozen [freezing all processes writing to this
filesystem] in a valid state (with possibly dangling
unlinked files), the device can be snapshotted via LVM, and the
original filesystem unfrozen - the
2014 Jun 11
2
[PATCH] isatty(): use TCGETS instead of TIOCGPGRP, like dietlibc does
I guess what I wanted to say is that it might be desirable to have the
klibc shell do some dancing (perhaps controlled by some flags, but on
by default?)
If getpid() == 1 then fork a child, continue in the child, have the
parent wait for the child to terminate, then exit
child should
setsid()
close(2)
close(1)
close(0)
open("/dev/ttyS0", O_RDONLY)
open("/dev/ttyS0",
2005 Jun 06
2
PHP mcrypt
Hi,
Could someone tell me how I'd go about compiling php with mcrypt support
from src.rpm?
ie. configure -with-mcrypt[=DIR]
Is it just a matter of calling
rpmbuild --rebuild src.rpm --with=mcrypt
?
Cheers,
MaZe.
2005 Jul 13
2
RPM Autorollback
Hi,
any idea if (when?) a new version of those RPMs with rollback included
will become available for CentOS 4?
Thanks,
MaZe.
2005 Dec 16
2
Kernel 2.4 and Centos4
Hi,
Has anyone used a 2.4 series kernel on RHEL4/Centos4?
There's a patch (openmosix) which I would really like to make use of
[seeing as I just got 10 diskless computers...] which is not ready
(yet) for the 2.6 kernel series...
Can I just drop in a 2.4.26 series kernel and continue to have a working
system? Or is RHEL now totally dependent on 2.6 kernel features?
Cheers,
MaZe.