Displaying 13 results from an estimated 13 matches for "codehelp".
2013 Oct 09
5
[PATCH 0/1] Porting klibc to AArch64
Hi All:
We have some patches to port klibc to ArmV8.
The first set of patches from Neil Williams fixes the build issues.
The second set of patches from Anil Singhar fixes functionalities.
The following files have changed in the second set of patches
------------------------------------------------------------------------------------------
usr/include/arch/aarch64/klibc/archconfig.h
2013 Oct 09
2
[PATCH 0/1] Porting klibc to arm64
...dir/abc
got:
dir/abc
d*/abc
Apologies that the full log wasn't attached - Anil, could you attach
that, please?
Also, the patch for my original changes seems to have been too large
for the mailing list.
debian branch at:
https://github.com/codehelp/klibc-aarch64
--
Neil Williams
=============
http://www.linux.codehelp.co.uk/
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 836 bytes
Desc: not available
URL: <http://www.zytor.com/pipermail/klibc/atta...
2013 Nov 12
0
[klibc:master] arm64: Fix struct stat
...1:55 -0800
Committer: H. Peter Anvin <hpa at zytor.com>
CommitDate: Mon, 11 Nov 2013 19:46:47 -0800
[klibc] arm64: Fix struct stat
Use actual struct timespec fields in struct stat, and use the proper
__stdev64 macro for the dev_t fields.
Also fix bizarre formatting.
Cc: Neil Williams <codehelp at debian.org>
Cc: Anil Singhar <anil.singhar at linaro.org>
Cc: Steve Capper <steve.capper at linaro.org>
Signed-off-by: H. Peter Anvin <hpa at zytor.com>
---
usr/include/arch/arm64/klibc/archstat.h | 41 ++++++++++++++++-----------------
1 file changed, 20 insertions(+), 21...
2013 Nov 12
0
[klibc:master] arm64: remove useless <klibc/asmmacros.h> file
...33:40 -0800
Committer: H. Peter Anvin <hpa at zytor.com>
CommitDate: Mon, 11 Nov 2013 19:33:40 -0800
[klibc] arm64: remove useless <klibc/asmmacros.h> file
<klibc/asmmacros.h> is a file specific to arm32; the file is empty on
arm64 so we can just drop it.
Cc: Neil Williams <codehelp at debian.org>
Cc: Anil Singhar <anil.singhar at linaro.org>
Cc: Steve Capper <steve.capper at linaro.org>
Signed-off-by: H. Peter Anvin <hpa at zytor.com>
---
usr/include/arch/arm64/klibc/asmmacros.h | 11 -----------
usr/klibc/arch/arm64/setjmp.S | 2 --
usr/kli...
2013 Nov 12
0
[klibc:master] arm64: Add arm64 support
...446ba907c5aaccf6ae1d089a09d21df7
Author: Steve Capper <steve.capper at linaro.org>
AuthorDate: Mon, 11 Nov 2013 17:04:12 +0000
Committer: H. Peter Anvin <hpa at zytor.com>
CommitDate: Mon, 11 Nov 2013 19:31:31 -0800
[klibc] arm64: Add arm64 support
Based on work by Neil Williams (codehelp at debian.org) and Anil Singhar
(anil.singhar at linaro.org), this patch adds arm64 support.
Originally-by: Neil Williams <codehelp at debian.org>
Originally-by: Anil Singhar <anil.singhar at linaro.org>
Signed-off-by: Steve Capper <steve.capper at linaro.org>
Signed-off-by: H. P...
2013 Oct 09
0
[PATCH 0/1] Porting klibc to arm64
...7-3
pass ./check.t:debian-117-4
pass ./check.t:case-zsh
pass ./check.t:case-braces
pass ./check.t:command-shift
pass ./check.t:duffs-device
Total failed: 5 (4 ignored) (1 unexpected)
Total passed: 431
root at genericarmv8:~/anilss/AArch64/mksh_44-1/mksh#
On 9 October 2013 16:44, Neil Williams <codehelp at debian.org> wrote:
> On Wed, 9 Oct 2013 10:44:27 +0000 (UTC)
> Thorsten Glaser <tg at mirbsd.de> wrote:
>
> > Anil Singhar dixit:
> >
> > >Manual testing as provided within the package has been done with all
> > >tests passing. This includes the u...
2013 Nov 12
0
[klibc:master] syscalls: Fixup some of the -at syscall declarations
...inal int flags parameter, symlinkat has the first
two parameters transposed, and fchmodat is missing the flags
parameter and is declared in the wrong header.
Also declarations are missing for utimensat and fchownat.
This patch fixes up these syscall declarations.
Originally-by: Neil Williams <codehelp at debian.org>
Originally-by: Anil Singhar <anil.singhar at linaro.org>
Signed-off-by: Steve Capper <steve.capper at linaro.org>
Signed-off-by: H. Peter Anvin <hpa at zytor.com>
---
usr/include/sys/stat.h | 4 +++-
usr/include/unistd.h | 8 ++++----
usr/klibc/SYSCALLS.def |...
2013 Oct 09
1
[PATCH 0/1] Porting klibc to AArch64
...new architecture
simply doesn't implement what is already deprecated.
pre-at system calls are also removed and calls like pipe have been
removed in favour of only providing pipe2. etc.
http://people.linaro.org/~rikuvoipio/aarch64-talk/#/18/3
--
Neil Williams
=============
http://www.linux.codehelp.co.uk/
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 836 bytes
Desc: not available
URL: <http://www.zytor.com/pipermail/klibc/attachments/20131009/89fba67f/attachment.sig>
2013 Nov 11
5
[PATCH V2 0/3] Introduce arm64 support
Hello,
Here is V2 of the arm64 support for klibc patch set.
Notable changes since the original series:
* fp regs dropped from setjmp/longjmp
* chmod, lstat and stat re-implemented with *at functions.
* open64 merged into open.
As with the original, this series is to be applied against the latest
klibc, just after
25a66fa README.klibc: update build information
V2 has been tested on x86_64
2013 Nov 08
0
[PATCH 3/3] arm64: Introduce arm64 support
Based on work by Neil Williams (codehelp at debian.org) and Anil Singhar
(anil.singhar at linaro.org), this patch introduces arm64 support.
Signed-off-by: Steve Capper <steve.capper at linaro.org>
---
Makefile | 3 +-
usr/include/arch/arm64/klibc/archconfig.h | 17 ++++++++++
usr/include/arch/arm6...
2013 Nov 12
0
[klibc:master] syscalls: Add syscalls needed by arm64
...-0800
[klibc] syscalls: Add syscalls needed by arm64
arm64 uses generic syscalls, and does not include the "noat",
"noflags", and "deprecated" syscalls.
This patch adds substitution functions for system calls not available
on arm64.
Originally-by: Neil Williams <codehelp at debian.org>
Originally-by: Anil Singhar <anil.singhar at linaro.org>
Signed-off-by: Steve Capper <steve.capper at linaro.org>
Signed-off-by: H. Peter Anvin <hpa at zytor.com>
---
usr/klibc/Kbuild | 3 +++
usr/klibc/SYSCALLS.def | 39 ++++++++++++++++++++-------------...
2013 Nov 08
9
[PATCH 0/3] Introduce arm64 support
Hello,
This series introduces arm64 support to klibc.
I've rebased the work from Neil Williams and Anil Singhar into the
following three patches. Most of the code changes are due to new
syscall implementations being needed for arm64 as a only a minimal set
of syscalls are defined in the arm64 kernel.
This series is to be applied against the latest klibc, just after
25a66fa README.klibc:
2013 Jan 26
0
Processed: switching email address
...88300 [ftp.debian.org] ftp.debian.org: please reject packages with md5sum-mismatch lintian error
Changed Bug submitter to 'Andreas Beckmann <anbe at debian.org>' from 'Andreas Beckmann <debian at abeckmann.de>'
> submitter 681755 !
Bug #681755 {Done: Neil Williams <codehelp at debian.org>} [dpkg-cross] dpkg-cross: removes files that were installed by another package
Changed Bug submitter to 'Andreas Beckmann <anbe at debian.org>' from 'Andreas Beckmann <debian at abeckmann.de>'
> submitter 688196 !
Bug #688196 {Done: Christoph Martin...