Displaying 9 results from an estimated 9 matches for "7de5fea".
Did you mean:
7d6ecfea
2013 Aug 21
3
Build problems: klibc with Linux 3.10.7
...+KLIBCCPPFLAGS += -I$(KLIBCKERNELSRC)/usr/include \
$(if $(KBUILD_SRC),-I$(KLIBCKERNELOBJ)/include2 \
-I$(KLIBCKERNELOBJ)/include -I$(srctree)/include) \
$(KLIBCARCHINCFLAGS)
diff --git a/usr/klibc/README.klibc b/usr/klibc/README.klibc
index 7de5fea..3575ec9 100644
--- a/usr/klibc/README.klibc
+++ b/usr/klibc/README.klibc
@@ -9,9 +9,8 @@ this:
a) Extract a recent Linux kernel into a directory and run
"make headers_install".
- Now enter the klibc dir and point KLIBCKERNELSRC to the
- path of the configured linux tree
- &q...
2013 Aug 21
2
[klibc:master] README.klibc: update build information
...ce confusing the users, simplify and reword build instructions.
Signed-off-by: maximilian attems <max at stro.at>
---
usr/klibc/README.klibc | 17 +++++++----------
1 file changed, 7 insertions(+), 10 deletions(-)
diff --git a/usr/klibc/README.klibc b/usr/klibc/README.klibc
index 47618ec..7de5fea 100644
--- a/usr/klibc/README.klibc
+++ b/usr/klibc/README.klibc
@@ -7,13 +7,12 @@ work in progress, and a lot of things are still missing.
The build procedure is not very polished yet, but it should work like
this:
-a) In the source root directory (the directory above the one in which
- this...
2019 Jan 21
0
Fwd: Re: Build problems: klibc with Linux 3.10.7
...CCPPFLAGS += -I$(KLIBCKERNELSRC)/usr/include \
$(if $(KBUILD_SRC),-I$(KLIBCKERNELOBJ)/include2
\
-I$(KLIBCKERNELOBJ)/include -I$(srctree)/include) \
$(KLIBCARCHINCFLAGS)
diff --git a/usr/klibc/README.klibc b/usr/klibc/README.klibc
index 7de5fea..3575ec9 100644
--- a/usr/klibc/README.klibc
+++ b/usr/klibc/README.klibc
@@ -9,9 +9,8 @@ this:
a) Extract a recent Linux kernel into a directory and run
"make headers_install".
- Now enter the klibc dir and point KLIBCKERNELSRC to the
- path of the configured linux tree
- &...
2013 Aug 21
0
[klibc:master] README.klibc: update build information
...uild instructions.
>
> Signed-off-by: maximilian attems <max at stro.at>
>
> ---
> usr/klibc/README.klibc | 17 +++++++----------
> 1 file changed, 7 insertions(+), 10 deletions(-)
>
> diff --git a/usr/klibc/README.klibc b/usr/klibc/README.klibc
> index 47618ec..7de5fea 100644
> --- a/usr/klibc/README.klibc
> +++ b/usr/klibc/README.klibc
> @@ -7,13 +7,12 @@ work in progress, and a lot of things are still missing.
> The build procedure is not very polished yet, but it should work like
> this:
>
> -a) In the source root directory (the directo...
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
...smmacros.h
@@ -0,0 +1,11 @@
+/*
+ * usr/include/arch/arm64/klibc/asmmacros.h
+ *
+ * Assembly macros used by arm64 system call stubs
+ */
+
+#ifndef _KLIBC_ASMMACROS_H
+#define _KLIBC_ASMMACROS_H
+
+
+#endif /* _KLIBC_ASMMACROS_H */
diff --git a/usr/klibc/README.klibc b/usr/klibc/README.klibc
index 7de5fea..c72ae47 100644
--- a/usr/klibc/README.klibc
+++ b/usr/klibc/README.klibc
@@ -36,6 +36,7 @@ b) If you're cross-compiling, you need to set KLIBCARCH to the
arm-thumb: Untested
arm: Working
arm26: Not yet ported
+ arm64: Working
avr32: Not yet ported
cris: Working...
2013 Nov 08
0
[PATCH 3/3] arm64: Introduce arm64 support
...smmacros.h
@@ -0,0 +1,11 @@
+/*
+ * usr/include/arch/arm64/klibc/asmmacros.h
+ *
+ * Assembly macros used by arm64 system call stubs
+ */
+
+#ifndef _KLIBC_ASMMACROS_H
+#define _KLIBC_ASMMACROS_H
+
+
+#endif /* _KLIBC_ASMMACROS_H */
diff --git a/usr/klibc/README.klibc b/usr/klibc/README.klibc
index 7de5fea..c72ae47 100644
--- a/usr/klibc/README.klibc
+++ b/usr/klibc/README.klibc
@@ -36,6 +36,7 @@ b) If you're cross-compiling, you need to set KLIBCARCH to the
arm-thumb: Untested
arm: Working
arm26: Not yet ported
+ arm64: Working
avr32: Not yet ported
cris: Working...
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: