search for: 0a3ee69

Displaying 7 results from an estimated 7 matches for "0a3ee69".

2013 Aug 21
3
Build problems: klibc with Linux 3.10.7
...leroy christophe <christophe.leroy at c-s.fr> Signed-off-by: maximilian attems <max at stro.at> --- Makefile | 2 +- scripts/Kbuild.klibc | 2 +- usr/klibc/README.klibc | 7 +++---- 3 files changed, 5 insertions(+), 6 deletions(-) diff --git a/Makefile b/Makefile index 0a3ee69..8870bd6 100644 --- a/Makefile +++ b/Makefile @@ -136,7 +136,7 @@ help: @echo 'make V=2 [targets] 2 => give reason for rebuild of target' @echo @echo 'Sample invocation:' - @echo 'make KLIBCKERNELSRC=`pwd`/../linux/usr/' + @echo 'make KLIBCKERNELSRC=`pwd`/.....
2019 Jan 21
0
Fwd: Re: Build problems: klibc with Linux 3.10.7
...y christophe <christophe.leroy at c-s.fr> Signed-off-by: maximilian attems <max at stro.at> --- Makefile | 2 +- scripts/Kbuild.klibc | 2 +- usr/klibc/README.klibc | 7 +++---- 3 files changed, 5 insertions(+), 6 deletions(-) diff --git a/Makefile b/Makefile index 0a3ee69..8870bd6 100644 --- a/Makefile +++ b/Makefile @@ -136,7 +136,7 @@ help: @echo 'make V=2 [targets] 2 => give reason for rebuild of target' @echo @echo 'Sample invocation:' - @echo 'make KLIBCKERNELSRC=`pwd`/../linux/usr/' + @echo 'make KLIBCKERNELSRC=`pwd`...
2013 Aug 21
3
Build problems: klibc with Linux 3.10.7
Le 21/08/2013 17:36, leroy christophe a ?crit : > > Le 21/08/2013 17:15, maximilian attems a ?crit : >> On Wed, Aug 21, 2013 at 01:39:50PM +0200, leroy christophe wrote: >>> Le 21/08/2013 12:20, maximilian attems a ?crit : >>>> On Tue, Aug 20, 2013 at 07:44:39AM +0200, leroy christophe wrote: >>>>> Find attached two patches I have in order to build
2013 Nov 12
0
[klibc:master] arm64: Add arm64 support
...bc/arch/arm64/syscall.S | 25 ++++++++++++ usr/klibc/arch/arm64/sysstub.ph | 25 ++++++++++++ usr/klibc/arch/arm64/vfork.S | 34 ++++++++++++++++ 15 files changed, 218 insertions(+), 24 deletions(-) diff --git a/Makefile b/Makefile index 0a3ee69..a7da622 100644 --- a/Makefile +++ b/Makefile @@ -30,7 +30,8 @@ export OBJDUMP := $(KLIBCROSS)objdump NOSTDINC_FLAGS := -nostdlib -nostdinc -isystem $(shell $(CC) -print-file-name=include) -ARCH := $(shell uname -m | sed -e s/i.86/i386/ -e s/parisc64/parisc/ -e s/sun4u/sparc64/ -e s...
2013 Nov 08
0
[PATCH 3/3] arm64: Introduce arm64 support
...64/crt0.S create mode 100644 usr/klibc/arch/arm64/pipe.c create mode 100644 usr/klibc/arch/arm64/setjmp.S create mode 100644 usr/klibc/arch/arm64/syscall.S create mode 100644 usr/klibc/arch/arm64/sysstub.ph create mode 100644 usr/klibc/arch/arm64/vfork.S diff --git a/Makefile b/Makefile index 0a3ee69..a7da622 100644 --- a/Makefile +++ b/Makefile @@ -30,7 +30,8 @@ export OBJDUMP := $(KLIBCROSS)objdump NOSTDINC_FLAGS := -nostdlib -nostdinc -isystem $(shell $(CC) -print-file-name=include) -ARCH := $(shell uname -m | sed -e s/i.86/i386/ -e s/parisc64/parisc/ -e s/sun4u/sparc64/ -e s...
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
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: