search for: elfcommon

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

Did you mean: dlmcommon
2012 May 22
0
[klibc:master] include: [sys/elfcommon.h] define STN_UNDEF
...el.org/?p=libs/klibc/klibc.git;a=commit;h=01b7dde0664ef67eada14dc163d015eb603fda74 Author: maximilian attems <max at stro.at> AuthorDate: Tue, 22 May 2012 19:15:44 +0200 Committer: maximilian attems <max at stro.at> CommitDate: Tue, 22 May 2012 19:15:44 +0200 [klibc] include: [sys/elfcommon.h] define STN_UNDEF Noticed while trying to compile kexec against klibc. Signed-off-by: maximilian attems <max at stro.at> --- usr/include/sys/elfcommon.h | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/usr/include/sys/elfcommon.h b/usr/include/sys/elfcommon.h i...
2005 Jan 06
0
[PATCH] ELF headers
...programs from module-init-tools: diff -uNr klibc-0.178/include/sys/elf32.h klibc-0.178-fogo/include/sys/elf32.h --- klibc-0.178/include/sys/elf32.h 2004-01-30 14:40:51.000000000 -0700 +++ klibc-0.178-fogo/include/sys/elf32.h 2004-09-20 09:15:58.000000000 -0600 @@ -7,6 +7,10 @@ #include <sys/elfcommon.h> +#define ELF32_ST_BIND(val) ST_BIND (val) +#define ELF32_ST_TYPE(val) ST_TYPE (val) +#define ELF32_ST_INFO(bind, type) ST_INFO ((bind), (type)) + /* ELF standard typedefs (yet more proof that <stdint.h> was way overdue) */ typedef uint16_t Elf32_Half; typedef int16_t Elf32_SHa...
2014 Jan 25
0
[klibc:master] auxv: convert auxiliary vector into an array; define getauxval()
...auxv: convert auxiliary vector into an array; define getauxval() Convert the ELF auxiliary vector into an array. Define getauxval() as an inline accessor to that array. Signed-off-by: H. Peter Anvin <hpa at zytor.com> --- usr/include/sys/auxv.h | 16 ++++++++++++++++ usr/include/sys/elfcommon.h | 2 ++ usr/klibc/libc_init.c | 25 ++++++++++++------------- 3 files changed, 30 insertions(+), 13 deletions(-) diff --git a/usr/include/sys/auxv.h b/usr/include/sys/auxv.h new file mode 100644 index 0000000..08fcfcf --- /dev/null +++ b/usr/include/sys/auxv.h @@ -0,0 +1,16 @@ +#ifndef _S...
2007 Dec 10
1
[git patch] m-i-t support, ipconfig fix
...libc/socketcalls/.gitignore addition [klibc] elf.h add support for st_info field [klibc] remove local insmod.c copy [klibc] ipconfig fix DHCPREQUEST per RFC 2131 the diffstat is usr/include/sys/elf32.h | 4 + usr/include/sys/elf64.h | 4 + usr/include/sys/elfcommon.h | 10 +++ usr/kinit/ipconfig/dhcp_proto.c | 2 +- usr/klibc/socketcalls/.gitignore | 1 + usr/utils/Kbuild | 4 +- usr/utils/insmod.c | 140 -------------------------------------- 7 files changed, 21 insertions(+), 144 deletions(-) commit 83cd38f8c...
2016 Jun 04
0
[PATCH] Wedding gift, removing double l from auxilliary
...lliary/uxiliary/' $( git grep -li auxilliary ) Still any auxiliary written with double l? git grep -i auxilliary --- NEWS | 2 +- com32/elflink/ldlinux/adv.c | 2 +- com32/elflink/ldlinux/getadv.c | 2 +- com32/elflink/ldlinux/setadv.c | 2 +- com32/include/sys/elfcommon.h | 2 +- com32/mboot/mboot.c | 4 ++-- core/i386/syslinux.ld | 2 +- doc/extlinux.txt | 2 +- efi/adv.c | 2 +- libinstaller/advio.c | 2 +- libinstaller/setadv.c | 2 +- libinstaller/syslxopt.c | 2 +- syslinux.spec...
2007 Sep 22
3
[git patch] module-init-tools fixes
...ms/klibc.git maks maximilian attems (3): [klibc] klibc/socketcalls/.gitignore addition [klibc] elf.h add support for st_info field [klibc] remove local insmod.c copy and diffstat usr/include/sys/elf32.h | 4 usr/include/sys/elf64.h | 4 usr/include/sys/elfcommon.h | 10 ++ usr/klibc/socketcalls/.gitignore | 1 usr/utils/Kbuild | 4 usr/utils/insmod.c | 140 ----------------------------- 6 files changed, 20 insertions(+), 143 deletions(-) -- maks commit fbf8aa559d25685eea12248c76bcc983c68306b2 Author: maximi...
2012 Jan 29
5
[PATCH 0/2 v3] mkstemp() and m68k support
Hi, after a year, I decided to hack on klibc again. I?ve reworked both the patch to add mkstemp(), discussing to use AT_RANDOM as cheap entropy source on IRC (if there will ever be another entropy consumer, I can quickly write a minimal arc4random() seeded from it, as it has only 16 octets), capable of making a working mksh (static and shared) on amd64/xen, and the m68k support code, leading to
2012 May 31
1
klibc 2.0 release
...[klibc] arm: use rt signals [klibc] Makefile: help document V=2 switch [klibc] klcc: pass down -v [klibc] tests: Add simple sscanf check [klibc] ipconfig: Use /run/ directory for script file [klibc] include: [sys/socket.h] define SOMAXCONN [klibc] include: [sys/elfcommon.h] define STN_UNDEF [klibc] klcc.1: document -nostdinc [klibc] include: [stdio.h] add clearerr() prototype [klibc] include: [limits.h] define SSIZE_MAX [klibc] Add faccessat() system call [klibc] README update arch status [klibc] kinit: Fix capabilities alternate...
2011 Apr 16
20
[PATCH 00/20] Switch to ELF modules
From: Matt Fleming <matt.fleming at linux.intel.com> This series fixes some bugs and switches the elflink branch to be entirely ELF modules. It applies on top of, http://syslinux.zytor.com/archives/2011-April/016369.html The deletions in the diff stat below are mainly from deleting com32/elflink/modules (finally!). Now there should be no duplicate code because we don't need COM32 and
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: