diff options
author | Andrea Adami <andrea.adami@gmail.com> | 2018-04-10 23:02:09 +0200 |
---|---|---|
committer | Armin Kuster <akuster808@gmail.com> | 2018-05-01 18:11:03 -0700 |
commit | ddda5e7b68a7df73e28099dafeaf77f29e0575d3 (patch) | |
tree | caa615adca220e063d4e5c35f3d81d9a4d360d65 | |
parent | 663bc6f0160adb570c3a7d0b64d1f7f60cb2269e (diff) | |
download | meta-openembedded-ddda5e7b68a7df73e28099dafeaf77f29e0575d3.tar.gz |
klibc-2.0.4: refresh patches (using devtool)
Silence warnings about ingnored context.
Signed-off-by: Andrea Adami <andrea.adami@gmail.com>
13 files changed, 185 insertions, 156 deletions
diff --git a/meta-initramfs/recipes-devtools/klibc/klibc-2.0.4/0001-Define-in_-structs-for-non-glibc-system-libs.patch b/meta-initramfs/recipes-devtools/klibc/klibc-2.0.4/0001-Define-in_-structs-for-non-glibc-system-libs.patch index 8d1ec69ae..e7a0cce83 100644 --- a/meta-initramfs/recipes-devtools/klibc/klibc-2.0.4/0001-Define-in_-structs-for-non-glibc-system-libs.patch +++ b/meta-initramfs/recipes-devtools/klibc/klibc-2.0.4/0001-Define-in_-structs-for-non-glibc-system-libs.patch | |||
@@ -1,4 +1,4 @@ | |||
1 | From f414dea1316a48aba3e8e293201ebd51652d3ef4 Mon Sep 17 00:00:00 2001 | 1 | From 57e3a60b23891905733bfea7a1cb78c2377cc524 Mon Sep 17 00:00:00 2001 |
2 | From: Khem Raj <raj.khem@gmail.com> | 2 | From: Khem Raj <raj.khem@gmail.com> |
3 | Date: Sun, 9 Jul 2017 15:17:29 -0700 | 3 | Date: Sun, 9 Jul 2017 15:17:29 -0700 |
4 | Subject: [PATCH] Define in_* structs for non-glibc system libs | 4 | Subject: [PATCH] Define in_* structs for non-glibc system libs |
@@ -10,14 +10,38 @@ glibc in mind, and does not provide adequate guards for musl | |||
10 | to infer that these structs should be defined in linux/in.h | 10 | to infer that these structs should be defined in linux/in.h |
11 | 11 | ||
12 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | 12 | Signed-off-by: Khem Raj <raj.khem@gmail.com> |
13 | |||
13 | --- | 14 | --- |
14 | usr/include/netinet/in.h | 33 +++++++++++++++++++++++++++++++++ | 15 | usr/include/net/if.h | 11 +++++++++++ |
15 | 1 file changed, 33 insertions(+) | 16 | usr/include/netinet/in.h | 36 ++++++++++++++++++++++++++++++++++++ |
17 | 2 files changed, 47 insertions(+) | ||
16 | 18 | ||
17 | Index: git/usr/include/netinet/in.h | 19 | diff --git a/usr/include/net/if.h b/usr/include/net/if.h |
18 | =================================================================== | 20 | index 116a176..6246b12 100644 |
19 | --- git.orig/usr/include/netinet/in.h | 21 | --- a/usr/include/net/if.h |
20 | +++ git/usr/include/netinet/in.h | 22 | +++ b/usr/include/net/if.h |
23 | @@ -1,6 +1,17 @@ | ||
24 | #ifndef _NET_IF_H | ||
25 | #define _NET_IF_H | ||
26 | |||
27 | +#ifndef __GLIBC__ | ||
28 | +#include <linux/libc-compat.h> | ||
29 | +#undef __UAPI_DEF_IF_IFREQ | ||
30 | +#define __UAPI_DEF_IF_IFREQ 1 | ||
31 | +#undef __UAPI_DEF_IF_IFNAMSIZ | ||
32 | +#define __UAPI_DEF_IF_IFNAMSIZ 1 | ||
33 | +#undef __UAPI_DEF_IF_IFMAP | ||
34 | +#define __UAPI_DEF_IF_IFMAP 1 | ||
35 | +#undef __UAPI_DEF_IF_NET_DEVICE_FLAGS | ||
36 | +#define __UAPI_DEF_IF_NET_DEVICE_FLAGS 1 | ||
37 | +#endif | ||
38 | #include <sys/socket.h> | ||
39 | #include <sys/types.h> | ||
40 | #include <linux/if.h> | ||
41 | diff --git a/usr/include/netinet/in.h b/usr/include/netinet/in.h | ||
42 | index 2952bb2..0c95bc9 100644 | ||
43 | --- a/usr/include/netinet/in.h | ||
44 | +++ b/usr/include/netinet/in.h | ||
21 | @@ -5,6 +5,42 @@ | 45 | @@ -5,6 +5,42 @@ |
22 | #ifndef _NETINET_IN_H | 46 | #ifndef _NETINET_IN_H |
23 | #define _NETINET_IN_H | 47 | #define _NETINET_IN_H |
@@ -61,25 +85,3 @@ Index: git/usr/include/netinet/in.h | |||
61 | #include <klibc/extern.h> | 85 | #include <klibc/extern.h> |
62 | #include <stdint.h> | 86 | #include <stdint.h> |
63 | #include <endian.h> /* Must be included *before* <linux/in.h> */ | 87 | #include <endian.h> /* Must be included *before* <linux/in.h> */ |
64 | Index: git/usr/include/net/if.h | ||
65 | =================================================================== | ||
66 | --- git.orig/usr/include/net/if.h | ||
67 | +++ git/usr/include/net/if.h | ||
68 | @@ -1,6 +1,17 @@ | ||
69 | #ifndef _NET_IF_H | ||
70 | #define _NET_IF_H | ||
71 | |||
72 | +#ifndef __GLIBC__ | ||
73 | +#include <linux/libc-compat.h> | ||
74 | +#undef __UAPI_DEF_IF_IFREQ | ||
75 | +#define __UAPI_DEF_IF_IFREQ 1 | ||
76 | +#undef __UAPI_DEF_IF_IFNAMSIZ | ||
77 | +#define __UAPI_DEF_IF_IFNAMSIZ 1 | ||
78 | +#undef __UAPI_DEF_IF_IFMAP | ||
79 | +#define __UAPI_DEF_IF_IFMAP 1 | ||
80 | +#undef __UAPI_DEF_IF_NET_DEVICE_FLAGS | ||
81 | +#define __UAPI_DEF_IF_NET_DEVICE_FLAGS 1 | ||
82 | +#endif | ||
83 | #include <sys/socket.h> | ||
84 | #include <sys/types.h> | ||
85 | #include <linux/if.h> | ||
diff --git a/meta-initramfs/recipes-devtools/klibc/klibc-2.0.4/0001-Kbuild.klibc-Add-path-to-compiler-headers-via-isyste.patch b/meta-initramfs/recipes-devtools/klibc/klibc-2.0.4/0001-Kbuild.klibc-Add-path-to-compiler-headers-via-isyste.patch index 7cd4c0e49..181dcfb6d 100644 --- a/meta-initramfs/recipes-devtools/klibc/klibc-2.0.4/0001-Kbuild.klibc-Add-path-to-compiler-headers-via-isyste.patch +++ b/meta-initramfs/recipes-devtools/klibc/klibc-2.0.4/0001-Kbuild.klibc-Add-path-to-compiler-headers-via-isyste.patch | |||
@@ -1,4 +1,4 @@ | |||
1 | From 10fb440795a7796140bd657ee028847ec7c34447 Mon Sep 17 00:00:00 2001 | 1 | From 4b4147b76518d31a88fb2c58cdbf2236e159a25c Mon Sep 17 00:00:00 2001 |
2 | From: Khem Raj <raj.khem@gmail.com> | 2 | From: Khem Raj <raj.khem@gmail.com> |
3 | Date: Fri, 8 Sep 2017 23:10:54 -0700 | 3 | Date: Fri, 8 Sep 2017 23:10:54 -0700 |
4 | Subject: [PATCH] Kbuild.klibc: Add path to compiler headers via -isystem | 4 | Subject: [PATCH] Kbuild.klibc: Add path to compiler headers via -isystem |
@@ -7,12 +7,13 @@ We need to include this path so it can find compiler headers e.g. | |||
7 | stdarg.h which is called from wrapper stdarg.h using include_next | 7 | stdarg.h which is called from wrapper stdarg.h using include_next |
8 | 8 | ||
9 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | 9 | Signed-off-by: Khem Raj <raj.khem@gmail.com> |
10 | |||
10 | --- | 11 | --- |
11 | scripts/Kbuild.klibc | 5 +++-- | 12 | scripts/Kbuild.klibc | 3 ++- |
12 | 1 file changed, 3 insertions(+), 2 deletions(-) | 13 | 1 file changed, 2 insertions(+), 1 deletion(-) |
13 | 14 | ||
14 | diff --git a/scripts/Kbuild.klibc b/scripts/Kbuild.klibc | 15 | diff --git a/scripts/Kbuild.klibc b/scripts/Kbuild.klibc |
15 | index f500d535..1d5cdc43 100644 | 16 | index 101f86f..1d5cdc4 100644 |
16 | --- a/scripts/Kbuild.klibc | 17 | --- a/scripts/Kbuild.klibc |
17 | +++ b/scripts/Kbuild.klibc | 18 | +++ b/scripts/Kbuild.klibc |
18 | @@ -105,7 +105,8 @@ KLIBCOBJCOPY := $(OBJCOPY) | 19 | @@ -105,7 +105,8 @@ KLIBCOBJCOPY := $(OBJCOPY) |
@@ -25,6 +26,3 @@ index f500d535..1d5cdc43 100644 | |||
25 | -I$(KLIBCINC)/arch/$(KLIBCARCHDIR) \ | 26 | -I$(KLIBCINC)/arch/$(KLIBCARCHDIR) \ |
26 | -I$(KLIBCINC)/bits$(KLIBCBITSIZE) \ | 27 | -I$(KLIBCINC)/bits$(KLIBCBITSIZE) \ |
27 | -I$(KLIBCOBJ)/../include \ | 28 | -I$(KLIBCOBJ)/../include \ |
28 | -- | ||
29 | 2.14.1 | ||
30 | |||
diff --git a/meta-initramfs/recipes-devtools/klibc/klibc-2.0.4/0001-Kbuild.klibc-Use-print-libgcc-file-name-instead-of-p.patch b/meta-initramfs/recipes-devtools/klibc/klibc-2.0.4/0001-Kbuild.klibc-Use-print-libgcc-file-name-instead-of-p.patch index 41cc14275..1ba05a811 100644 --- a/meta-initramfs/recipes-devtools/klibc/klibc-2.0.4/0001-Kbuild.klibc-Use-print-libgcc-file-name-instead-of-p.patch +++ b/meta-initramfs/recipes-devtools/klibc/klibc-2.0.4/0001-Kbuild.klibc-Use-print-libgcc-file-name-instead-of-p.patch | |||
@@ -1,19 +1,20 @@ | |||
1 | From f66edde8a704131d98e8783ea8d4c848e8119b20 Mon Sep 17 00:00:00 2001 | 1 | From b6185401fc3daa7fa8ba2b84db3e4da3b94a9867 Mon Sep 17 00:00:00 2001 |
2 | From: Khem Raj <raj.khem@gmail.com> | 2 | From: Khem Raj <raj.khem@gmail.com> |
3 | Date: Wed, 26 Jul 2017 16:13:16 -0700 | 3 | Date: Wed, 26 Jul 2017 16:13:16 -0700 |
4 | Subject: [PATCH 1/3] Kbuild.klibc: Use -print-libgcc-file-name instead of | 4 | Subject: [PATCH] Kbuild.klibc: Use -print-libgcc-file-name instead of |
5 | --print-libgcc | 5 | --print-libgcc |
6 | 6 | ||
7 | -print-libgcc-file-name works with clang and gcc unlike --print-libgcc | 7 | -print-libgcc-file-name works with clang and gcc unlike --print-libgcc |
8 | which is gcc specific | 8 | which is gcc specific |
9 | 9 | ||
10 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | 10 | Signed-off-by: Khem Raj <raj.khem@gmail.com> |
11 | |||
11 | --- | 12 | --- |
12 | scripts/Kbuild.klibc | 2 +- | 13 | scripts/Kbuild.klibc | 2 +- |
13 | 1 file changed, 1 insertion(+), 1 deletion(-) | 14 | 1 file changed, 1 insertion(+), 1 deletion(-) |
14 | 15 | ||
15 | diff --git a/scripts/Kbuild.klibc b/scripts/Kbuild.klibc | 16 | diff --git a/scripts/Kbuild.klibc b/scripts/Kbuild.klibc |
16 | index f500d535..101f86f5 100644 | 17 | index f500d53..101f86f 100644 |
17 | --- a/scripts/Kbuild.klibc | 18 | --- a/scripts/Kbuild.klibc |
18 | +++ b/scripts/Kbuild.klibc | 19 | +++ b/scripts/Kbuild.klibc |
19 | @@ -128,7 +128,7 @@ KLIBCCFLAGS += $(KLIBCCPPFLAGS) $(KLIBCREQFLAGS) $(KLIBCARCHREQFLAGS) \ | 20 | @@ -128,7 +128,7 @@ KLIBCCFLAGS += $(KLIBCCPPFLAGS) $(KLIBCREQFLAGS) $(KLIBCARCHREQFLAGS) \ |
@@ -25,6 +26,3 @@ index f500d535..101f86f5 100644 | |||
25 | KLIBCLIBGCC ?= $(KLIBCLIBGCC_DEF) | 26 | KLIBCLIBGCC ?= $(KLIBCLIBGCC_DEF) |
26 | KLIBCCRT0 := $(KLIBCOBJ)/arch/$(KLIBCARCHDIR)/crt0.o | 27 | KLIBCCRT0 := $(KLIBCOBJ)/arch/$(KLIBCARCHDIR)/crt0.o |
27 | KLIBCLIBC := $(KLIBCOBJ)/libc.a | 28 | KLIBCLIBC := $(KLIBCOBJ)/libc.a |
28 | -- | ||
29 | 2.13.3 | ||
30 | |||
diff --git a/meta-initramfs/recipes-devtools/klibc/klibc-2.0.4/0001-always-use-bfd-linker.patch b/meta-initramfs/recipes-devtools/klibc/klibc-2.0.4/0001-always-use-bfd-linker.patch index 41a6b9e13..de04d691f 100644 --- a/meta-initramfs/recipes-devtools/klibc/klibc-2.0.4/0001-always-use-bfd-linker.patch +++ b/meta-initramfs/recipes-devtools/klibc/klibc-2.0.4/0001-always-use-bfd-linker.patch | |||
@@ -1,4 +1,4 @@ | |||
1 | From 9ea19bd9636806a73bcf29cfcee40a268f91eb4c Mon Sep 17 00:00:00 2001 | 1 | From 63ab5102d6ef362a597941e62470bf19e6f1652b Mon Sep 17 00:00:00 2001 |
2 | From: Khem Raj <raj.khem@gmail.com> | 2 | From: Khem Raj <raj.khem@gmail.com> |
3 | Date: Tue, 11 Jul 2017 08:09:52 -0700 | 3 | Date: Tue, 11 Jul 2017 08:09:52 -0700 |
4 | Subject: [PATCH] always use bfd linker | 4 | Subject: [PATCH] always use bfd linker |
@@ -8,12 +8,13 @@ therefore explicitly asking for bfd linker would fix the | |||
8 | linking issues on such distros | 8 | linking issues on such distros |
9 | 9 | ||
10 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | 10 | Signed-off-by: Khem Raj <raj.khem@gmail.com> |
11 | |||
11 | --- | 12 | --- |
12 | Makefile | 2 +- | 13 | Makefile | 2 +- |
13 | 1 file changed, 1 insertion(+), 1 deletion(-) | 14 | 1 file changed, 1 insertion(+), 1 deletion(-) |
14 | 15 | ||
15 | diff --git a/Makefile b/Makefile | 16 | diff --git a/Makefile b/Makefile |
16 | index dc10fc5d..40647be4 100644 | 17 | index dc10fc5..40647be 100644 |
17 | --- a/Makefile | 18 | --- a/Makefile |
18 | +++ b/Makefile | 19 | +++ b/Makefile |
19 | @@ -20,7 +20,7 @@ include $(srctree)/scripts/Kbuild.include | 20 | @@ -20,7 +20,7 @@ include $(srctree)/scripts/Kbuild.include |
@@ -25,6 +26,3 @@ index dc10fc5d..40647be4 100644 | |||
25 | export AR := $(KLIBCROSS)ar | 26 | export AR := $(KLIBCROSS)ar |
26 | export RANLIB := $(KLIBCROSS)ranlib | 27 | export RANLIB := $(KLIBCROSS)ranlib |
27 | export STRIP := $(KLIBCROSS)strip | 28 | export STRIP := $(KLIBCROSS)strip |
28 | -- | ||
29 | 2.13.2 | ||
30 | |||
diff --git a/meta-initramfs/recipes-devtools/klibc/klibc-2.0.4/0001-arm-Do-not-set-a-fallback-march-and-mtune.patch b/meta-initramfs/recipes-devtools/klibc/klibc-2.0.4/0001-arm-Do-not-set-a-fallback-march-and-mtune.patch index 9c0ea6397..fcf4f891a 100644 --- a/meta-initramfs/recipes-devtools/klibc/klibc-2.0.4/0001-arm-Do-not-set-a-fallback-march-and-mtune.patch +++ b/meta-initramfs/recipes-devtools/klibc/klibc-2.0.4/0001-arm-Do-not-set-a-fallback-march-and-mtune.patch | |||
@@ -1,4 +1,4 @@ | |||
1 | From a46a144ac883898d9cedf7a0b13aec6d10116125 Mon Sep 17 00:00:00 2001 | 1 | From ebd2b0e414c98467156b961abb470b5d07f37ea8 Mon Sep 17 00:00:00 2001 |
2 | From: Khem Raj <raj.khem@gmail.com> | 2 | From: Khem Raj <raj.khem@gmail.com> |
3 | Date: Fri, 29 Sep 2017 23:11:53 -0700 | 3 | Date: Fri, 29 Sep 2017 23:11:53 -0700 |
4 | Subject: [PATCH] arm: Do not set a fallback march and mtune | 4 | Subject: [PATCH] arm: Do not set a fallback march and mtune |
@@ -9,14 +9,13 @@ need to compute values for CPU_ARCH and CPU_TUNE | |||
9 | which is a bit harder in OE | 9 | which is a bit harder in OE |
10 | 10 | ||
11 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | 11 | Signed-off-by: Khem Raj <raj.khem@gmail.com> |
12 | --- | ||
13 | Upstream-Status: Pending | ||
14 | 12 | ||
13 | --- | ||
15 | usr/klibc/arch/arm/MCONFIG | 2 +- | 14 | usr/klibc/arch/arm/MCONFIG | 2 +- |
16 | 1 file changed, 1 insertion(+), 1 deletion(-) | 15 | 1 file changed, 1 insertion(+), 1 deletion(-) |
17 | 16 | ||
18 | diff --git a/usr/klibc/arch/arm/MCONFIG b/usr/klibc/arch/arm/MCONFIG | 17 | diff --git a/usr/klibc/arch/arm/MCONFIG b/usr/klibc/arch/arm/MCONFIG |
19 | index 53bc1dc3..857e2f2d 100644 | 18 | index 303c6ac..48d2685 100644 |
20 | --- a/usr/klibc/arch/arm/MCONFIG | 19 | --- a/usr/klibc/arch/arm/MCONFIG |
21 | +++ b/usr/klibc/arch/arm/MCONFIG | 20 | +++ b/usr/klibc/arch/arm/MCONFIG |
22 | @@ -10,7 +10,7 @@ | 21 | @@ -10,7 +10,7 @@ |
@@ -28,6 +27,3 @@ index 53bc1dc3..857e2f2d 100644 | |||
28 | KLIBCBITSIZE = 32 | 27 | KLIBCBITSIZE = 32 |
29 | KLIBCREQFLAGS += -fno-exceptions | 28 | KLIBCREQFLAGS += -fno-exceptions |
30 | KLIBCSTRIPFLAGS += -R .ARM.exidx | 29 | KLIBCSTRIPFLAGS += -R .ARM.exidx |
31 | -- | ||
32 | 2.14.2 | ||
33 | |||
diff --git a/meta-initramfs/recipes-devtools/klibc/klibc-2.0.4/0001-dash-Specify-format-string-in-fmtstr.patch b/meta-initramfs/recipes-devtools/klibc/klibc-2.0.4/0001-dash-Specify-format-string-in-fmtstr.patch index ae8c1f11a..46a23987f 100644 --- a/meta-initramfs/recipes-devtools/klibc/klibc-2.0.4/0001-dash-Specify-format-string-in-fmtstr.patch +++ b/meta-initramfs/recipes-devtools/klibc/klibc-2.0.4/0001-dash-Specify-format-string-in-fmtstr.patch | |||
@@ -1,4 +1,4 @@ | |||
1 | From 2fff607fd0b5550e5072a6fffcbb01c29d5207d2 Mon Sep 17 00:00:00 2001 | 1 | From 8beffe501c1ac5b35d62004735c4157c74183901 Mon Sep 17 00:00:00 2001 |
2 | From: Khem Raj <raj.khem@gmail.com> | 2 | From: Khem Raj <raj.khem@gmail.com> |
3 | Date: Sun, 9 Jul 2017 13:51:25 -0700 | 3 | Date: Sun, 9 Jul 2017 13:51:25 -0700 |
4 | Subject: [PATCH] dash: Specify format string in fmtstr() | 4 | Subject: [PATCH] dash: Specify format string in fmtstr() |
@@ -9,12 +9,13 @@ usr/dash/jobs.c:429:3: error: format not a string literal and no format argument | |||
9 | col = fmtstr(s, 32, strsignal(st)); | 9 | col = fmtstr(s, 32, strsignal(st)); |
10 | 10 | ||
11 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | 11 | Signed-off-by: Khem Raj <raj.khem@gmail.com> |
12 | |||
12 | --- | 13 | --- |
13 | usr/dash/jobs.c | 2 +- | 14 | usr/dash/jobs.c | 2 +- |
14 | 1 file changed, 1 insertion(+), 1 deletion(-) | 15 | 1 file changed, 1 insertion(+), 1 deletion(-) |
15 | 16 | ||
16 | diff --git a/usr/dash/jobs.c b/usr/dash/jobs.c | 17 | diff --git a/usr/dash/jobs.c b/usr/dash/jobs.c |
17 | index 009bbfee..299bcacc 100644 | 18 | index 009bbfe..299bcac 100644 |
18 | --- a/usr/dash/jobs.c | 19 | --- a/usr/dash/jobs.c |
19 | +++ b/usr/dash/jobs.c | 20 | +++ b/usr/dash/jobs.c |
20 | @@ -426,7 +426,7 @@ sprint_status(char *s, int status, int sigonly) | 21 | @@ -426,7 +426,7 @@ sprint_status(char *s, int status, int sigonly) |
@@ -26,6 +27,3 @@ index 009bbfee..299bcacc 100644 | |||
26 | #ifdef WCOREDUMP | 27 | #ifdef WCOREDUMP |
27 | if (WCOREDUMP(status)) { | 28 | if (WCOREDUMP(status)) { |
28 | col += fmtstr(s + col, 16, " (core dumped)"); | 29 | col += fmtstr(s + col, 16, " (core dumped)"); |
29 | -- | ||
30 | 2.13.2 | ||
31 | |||
diff --git a/meta-initramfs/recipes-devtools/klibc/klibc-2.0.4/0001-include-linux-sysinfo.h-directly.patch b/meta-initramfs/recipes-devtools/klibc/klibc-2.0.4/0001-include-linux-sysinfo.h-directly.patch index 1b033acc4..04c97fc5e 100644 --- a/meta-initramfs/recipes-devtools/klibc/klibc-2.0.4/0001-include-linux-sysinfo.h-directly.patch +++ b/meta-initramfs/recipes-devtools/klibc/klibc-2.0.4/0001-include-linux-sysinfo.h-directly.patch | |||
@@ -1,4 +1,4 @@ | |||
1 | From ab060a57b41f989665ade20e813bbcb67f91f1f2 Mon Sep 17 00:00:00 2001 | 1 | From d966d52d1e569cbc2293d841285e2b8941f28c61 Mon Sep 17 00:00:00 2001 |
2 | From: Khem Raj <raj.khem@gmail.com> | 2 | From: Khem Raj <raj.khem@gmail.com> |
3 | Date: Sun, 9 Jul 2017 15:56:28 -0700 | 3 | Date: Sun, 9 Jul 2017 15:56:28 -0700 |
4 | Subject: [PATCH] include linux/sysinfo.h directly | 4 | Subject: [PATCH] include linux/sysinfo.h directly |
@@ -10,12 +10,13 @@ but until its done in right place, change the local header | |||
10 | override to avoid this assumption | 10 | override to avoid this assumption |
11 | 11 | ||
12 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | 12 | Signed-off-by: Khem Raj <raj.khem@gmail.com> |
13 | |||
13 | --- | 14 | --- |
14 | usr/include/sys/sysinfo.h | 2 +- | 15 | usr/include/sys/sysinfo.h | 2 +- |
15 | 1 file changed, 1 insertion(+), 1 deletion(-) | 16 | 1 file changed, 1 insertion(+), 1 deletion(-) |
16 | 17 | ||
17 | diff --git a/usr/include/sys/sysinfo.h b/usr/include/sys/sysinfo.h | 18 | diff --git a/usr/include/sys/sysinfo.h b/usr/include/sys/sysinfo.h |
18 | index dba68dc6..d145c0b1 100644 | 19 | index dba68dc..d145c0b 100644 |
19 | --- a/usr/include/sys/sysinfo.h | 20 | --- a/usr/include/sys/sysinfo.h |
20 | +++ b/usr/include/sys/sysinfo.h | 21 | +++ b/usr/include/sys/sysinfo.h |
21 | @@ -5,7 +5,7 @@ | 22 | @@ -5,7 +5,7 @@ |
@@ -27,6 +28,3 @@ index dba68dc6..d145c0b1 100644 | |||
27 | 28 | ||
28 | extern int sysinfo(struct sysinfo *info); | 29 | extern int sysinfo(struct sysinfo *info); |
29 | 30 | ||
30 | -- | ||
31 | 2.13.2 | ||
32 | |||
diff --git a/meta-initramfs/recipes-devtools/klibc/klibc-2.0.4/0001-mkfifo-Implement-mkfifo.patch b/meta-initramfs/recipes-devtools/klibc/klibc-2.0.4/0001-mkfifo-Implement-mkfifo.patch index 9791412e4..3bc081d4e 100644 --- a/meta-initramfs/recipes-devtools/klibc/klibc-2.0.4/0001-mkfifo-Implement-mkfifo.patch +++ b/meta-initramfs/recipes-devtools/klibc/klibc-2.0.4/0001-mkfifo-Implement-mkfifo.patch | |||
@@ -1,15 +1,16 @@ | |||
1 | From b4e120f5edf06e6df138b1804a8b5180584cea6b Mon Sep 17 00:00:00 2001 | 1 | From cf97079009ba48d10e52052b2eab7461ea4dd09b Mon Sep 17 00:00:00 2001 |
2 | From: Khem Raj <raj.khem@gmail.com> | 2 | From: Khem Raj <raj.khem@gmail.com> |
3 | Date: Mon, 10 Jul 2017 20:42:50 -0700 | 3 | Date: Mon, 10 Jul 2017 20:42:50 -0700 |
4 | Subject: [PATCH] mkfifo: Implement mkfifo | 4 | Subject: [PATCH] mkfifo: Implement mkfifo |
5 | 5 | ||
6 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | 6 | Signed-off-by: Khem Raj <raj.khem@gmail.com> |
7 | |||
7 | --- | 8 | --- |
8 | usr/utils/mkfifo.c | 5 +++++ | 9 | usr/utils/mkfifo.c | 5 +++++ |
9 | 1 file changed, 5 insertions(+) | 10 | 1 file changed, 5 insertions(+) |
10 | 11 | ||
11 | diff --git a/usr/utils/mkfifo.c b/usr/utils/mkfifo.c | 12 | diff --git a/usr/utils/mkfifo.c b/usr/utils/mkfifo.c |
12 | index 5a758b2a..f1f577e6 100644 | 13 | index 5a758b2..f1f577e 100644 |
13 | --- a/usr/utils/mkfifo.c | 14 | --- a/usr/utils/mkfifo.c |
14 | +++ b/usr/utils/mkfifo.c | 15 | +++ b/usr/utils/mkfifo.c |
15 | @@ -26,6 +26,11 @@ static int make_fifo(char *dir) | 16 | @@ -26,6 +26,11 @@ static int make_fifo(char *dir) |
@@ -24,6 +25,3 @@ index 5a758b2a..f1f577e6 100644 | |||
24 | int main(int argc, char *argv[]) | 25 | int main(int argc, char *argv[]) |
25 | { | 26 | { |
26 | int c, ret = 0; | 27 | int c, ret = 0; |
27 | -- | ||
28 | 2.13.2 | ||
29 | |||
diff --git a/meta-initramfs/recipes-devtools/klibc/klibc-2.0.4/armv4-fix-v4bx.patch b/meta-initramfs/recipes-devtools/klibc/klibc-2.0.4/armv4-fix-v4bx.patch index 6bb384bb0..e84235306 100644 --- a/meta-initramfs/recipes-devtools/klibc/klibc-2.0.4/armv4-fix-v4bx.patch +++ b/meta-initramfs/recipes-devtools/klibc/klibc-2.0.4/armv4-fix-v4bx.patch | |||
@@ -1,11 +1,22 @@ | |||
1 | From d2fb484d995221277cce7abddcd7dfa0e8bceec3 Mon Sep 17 00:00:00 2001 | ||
2 | From: Andrea Adami <andrea.adami@gmail.com> | ||
3 | Date: Fri, 11 Jan 2013 17:26:40 +0000 | ||
4 | Subject: [PATCH] klibc_2.0.2: apply FIX_V4BX patch for armv4 targets only | ||
5 | |||
1 | Status: not applicable upstream, in OE/Yocto we use $(FIX_V4BX) | 6 | Status: not applicable upstream, in OE/Yocto we use $(FIX_V4BX) |
2 | which is "" in case of armv5 or thumbs. | 7 | which is "" in case of armv5 or thumbs. |
3 | 8 | ||
4 | Signed-off-by: Andrea Adami <andrea.adami@gmail.com> | 9 | Signed-off-by: Andrea Adami <andrea.adami@gmail.com> |
5 | 10 | ||
6 | --- a/usr/klibc/arch/arm/MCONFIG 2013-01-09 01:12:02.000000000 +0100 | 11 | --- |
7 | +++ b/usr/klibc/arch/arm/MCONFIG 2013-01-08 23:45:59.000000000 +0100 | 12 | usr/klibc/arch/arm/MCONFIG | 1 + |
8 | @@ -29,6 +29,7 @@ | 13 | 1 file changed, 1 insertion(+) |
14 | |||
15 | diff --git a/usr/klibc/arch/arm/MCONFIG b/usr/klibc/arch/arm/MCONFIG | ||
16 | index 53bc1dc..303c6ac 100644 | ||
17 | --- a/usr/klibc/arch/arm/MCONFIG | ||
18 | +++ b/usr/klibc/arch/arm/MCONFIG | ||
19 | @@ -29,6 +29,7 @@ else | ||
9 | KLIBCSHAREDFLAGS = -Ttext 0x01800200 | 20 | KLIBCSHAREDFLAGS = -Ttext 0x01800200 |
10 | ifeq ($(CONFIG_AEABI),y) | 21 | ifeq ($(CONFIG_AEABI),y) |
11 | KLIBCREQFLAGS += -mabi=aapcs-linux -mno-thumb-interwork | 22 | KLIBCREQFLAGS += -mabi=aapcs-linux -mno-thumb-interwork |
diff --git a/meta-initramfs/recipes-devtools/klibc/klibc-2.0.4/klcc-consider-sysroot.patch b/meta-initramfs/recipes-devtools/klibc/klibc-2.0.4/klcc-consider-sysroot.patch index 9bc4835dc..5f47d3f20 100644 --- a/meta-initramfs/recipes-devtools/klibc/klibc-2.0.4/klcc-consider-sysroot.patch +++ b/meta-initramfs/recipes-devtools/klibc/klibc-2.0.4/klcc-consider-sysroot.patch | |||
@@ -1,3 +1,11 @@ | |||
1 | From 0cb26cf2d25d36c1fdcc4f1635e4329436ed866a Mon Sep 17 00:00:00 2001 | ||
2 | From: Andrea Adami <andrea.adami@gmail.com> | ||
3 | Date: Fri, 19 Sep 2014 23:09:29 +0200 | ||
4 | |||
5 | --- | ||
6 | klcc/klcc.in | 3 +++ | ||
7 | 1 file changed, 3 insertions(+) | ||
8 | |||
1 | diff --git a/klcc/klcc.in b/klcc/klcc.in | 9 | diff --git a/klcc/klcc.in b/klcc/klcc.in |
2 | index 43d0984..61e9385 100644 | 10 | index 43d0984..61e9385 100644 |
3 | --- a/klcc/klcc.in | 11 | --- a/klcc/klcc.in |
diff --git a/meta-initramfs/recipes-devtools/klibc/klibc-2.0.4/klibc-config-eabi.patch b/meta-initramfs/recipes-devtools/klibc/klibc-2.0.4/klibc-config-eabi.patch index 316c80a92..f28cd5423 100644 --- a/meta-initramfs/recipes-devtools/klibc/klibc-2.0.4/klibc-config-eabi.patch +++ b/meta-initramfs/recipes-devtools/klibc/klibc-2.0.4/klibc-config-eabi.patch | |||
@@ -1,12 +1,22 @@ | |||
1 | From 1118cc971917abe19ddb029aa80417f6fd6bb343 Mon Sep 17 00:00:00 2001 | ||
2 | From: Thomas Kunze <thommycheck@gmx.de> | ||
3 | Date: Sat, 6 Aug 2011 05:30:14 +0000 | ||
4 | Subject: [PATCH] klibc: initial commit of version 1.5.24 | ||
5 | |||
1 | Patch was imported from the OpenEmbedded git server | 6 | Patch was imported from the OpenEmbedded git server |
2 | (git://git.openembedded.org/openembedded) | 7 | (git://git.openembedded.org/openembedded) |
3 | as of commit id b6764cf32ec93547531130dca364fb95e1c495f4 | 8 | as of commit id b6764cf32ec93547531130dca364fb95e1c495f4 |
4 | Signed-off-by: Thomas Kunze <thommycheck@gmx.de> | 9 | Signed-off-by: Thomas Kunze <thommycheck@gmx.de> |
5 | 10 | ||
6 | diff -Nur klibc-1.5/defconfig klibc-1.5p/defconfig | 11 | --- |
7 | --- klibc-1.5/defconfig 2007-03-04 02:52:10.000000000 +0100 | 12 | defconfig | 2 +- |
8 | +++ klibc-1.5p/defconfig 2008-02-08 19:24:22.337127756 +0100 | 13 | 1 file changed, 1 insertion(+), 1 deletion(-) |
9 | @@ -5,4 +5,4 @@ | 14 | |
15 | diff --git a/defconfig b/defconfig | ||
16 | index 04b98e9..0cb23d0 100644 | ||
17 | --- a/defconfig | ||
18 | +++ b/defconfig | ||
19 | @@ -6,4 +6,4 @@ CONFIG_KLIBC_ZLIB=y | ||
10 | CONFIG_REGPARM=y | 20 | CONFIG_REGPARM=y |
11 | # ARM options | 21 | # ARM options |
12 | # CONFIG_KLIBC_THUMB is not set | 22 | # CONFIG_KLIBC_THUMB is not set |
diff --git a/meta-initramfs/recipes-devtools/klibc/klibc-2.0.4/klibc-linux-libc-dev.patch b/meta-initramfs/recipes-devtools/klibc/klibc-2.0.4/klibc-linux-libc-dev.patch index 204306475..a5563b740 100644 --- a/meta-initramfs/recipes-devtools/klibc/klibc-2.0.4/klibc-linux-libc-dev.patch +++ b/meta-initramfs/recipes-devtools/klibc/klibc-2.0.4/klibc-linux-libc-dev.patch | |||
@@ -1,15 +1,22 @@ | |||
1 | From 1be2bc41f915922102a3ba671b54c2df6f0052e6 Mon Sep 17 00:00:00 2001 | ||
2 | From: Ben Hutchings <ben@decadent.org.uk> | ||
3 | Date: Sun, 14 Mar 2010 18:41:56 +0000 | ||
4 | Subject: [PATCH] klibc_1.5.26: now build against linux-libc-headers | ||
5 | |||
1 | commit 43adf69062254fb4f8d4d11fb5fe36a60ae25d5a | 6 | commit 43adf69062254fb4f8d4d11fb5fe36a60ae25d5a |
2 | Author: Ben Hutchings <ben@decadent.org.uk> | ||
3 | Date: Sun Mar 14 18:41:56 2010 +0000 | ||
4 | 7 | ||
5 | Taken from debian "Fix klibc Debian specific build trouble" | 8 | Taken from debian "Fix klibc Debian specific build trouble" |
6 | Adapted for klibc_2.0.2 | 9 | Adapted for klibc_2.0.2 |
7 | 10 | ||
8 | Index: klibc-2.0~rc2/scripts/Kbuild.install | 11 | --- |
9 | =================================================================== | 12 | scripts/Kbuild.install | 4 +++- |
10 | --- klibc-2.0~rc2.orig/scripts/Kbuild.install 2012-02-11 18:50:21.000000000 +0000 | 13 | 1 file changed, 3 insertions(+), 1 deletion(-) |
11 | +++ klibc-2.0~rc2/scripts/Kbuild.install 2012-02-11 19:04:52.000000000 +0000 | 14 | |
12 | @@ -95,7 +95,9 @@ | 15 | diff --git a/scripts/Kbuild.install b/scripts/Kbuild.install |
16 | index 8af5697..d32a8a5 100644 | ||
17 | --- a/scripts/Kbuild.install | ||
18 | +++ b/scripts/Kbuild.install | ||
19 | @@ -95,7 +95,9 @@ header: | ||
13 | $(Q)mkdir -p $(INSTALLROOT)$(INSTALLDIR)/$(KCROSS)include | 20 | $(Q)mkdir -p $(INSTALLROOT)$(INSTALLDIR)/$(KCROSS)include |
14 | $(Q)mkdir -p $(INSTALLROOT)$(INSTALLDIR)/$(KCROSS)lib | 21 | $(Q)mkdir -p $(INSTALLROOT)$(INSTALLDIR)/$(KCROSS)lib |
15 | $(Q)mkdir -p $(INSTALLROOT)$(INSTALLDIR)/$(KCROSS)bin | 22 | $(Q)mkdir -p $(INSTALLROOT)$(INSTALLDIR)/$(KCROSS)bin |
@@ -18,5 +25,5 @@ Index: klibc-2.0~rc2/scripts/Kbuild.install | |||
18 | + ln -sf $${x} $(INSTALLROOT)$(INSTALLDIR)/$(KCROSS)include/ || exit; \ | 25 | + ln -sf $${x} $(INSTALLROOT)$(INSTALLDIR)/$(KCROSS)include/ || exit; \ |
19 | + done | 26 | + done |
20 | $(Q)cp -rf usr/include/. $(INSTALLROOT)$(INSTALLDIR)/$(KCROSS)include/. | 27 | $(Q)cp -rf usr/include/. $(INSTALLROOT)$(INSTALLDIR)/$(KCROSS)include/. |
21 | $(Q)chmod -R a+rX $(INSTALLROOT)$(INSTALLDIR)/$(KCROSS)include | 28 | $(Q)chmod -R a+rX,go-w $(INSTALLROOT)$(INSTALLDIR)/$(KCROSS)include |
22 | $(Q)$(install-data) $(srctree)/klcc/klcc.1 $(INSTALLROOT)$(mandir)/man1/$(KCROSS)klcc.1 | 29 | $(Q)$(install-data) $(srctree)/klcc/klcc.1 $(INSTALLROOT)$(mandir)/man1/$(KCROSS)klcc.1 |
diff --git a/meta-initramfs/recipes-devtools/klibc/klibc-2.0.4/staging.patch b/meta-initramfs/recipes-devtools/klibc/klibc-2.0.4/staging.patch index c01c712a1..5c7a6625b 100644 --- a/meta-initramfs/recipes-devtools/klibc/klibc-2.0.4/staging.patch +++ b/meta-initramfs/recipes-devtools/klibc/klibc-2.0.4/staging.patch | |||
@@ -1,3 +1,8 @@ | |||
1 | From 1892079b827cf8f8316305b6d6e0985db82441a2 Mon Sep 17 00:00:00 2001 | ||
2 | From: Thomas Kunze <thommycheck@gmx.de> | ||
3 | Date: Sat, 6 Aug 2011 05:30:14 +0000 | ||
4 | Subject: [PATCH] klibc: initial commit of version 1.5.24 | ||
5 | |||
1 | Patch was imported from the OpenEmbedded git server | 6 | Patch was imported from the OpenEmbedded git server |
2 | (git://git.openembedded.org/openembedded) | 7 | (git://git.openembedded.org/openembedded) |
3 | as of commit id eefb99a313bbcc8f34c8b32bf0c5aa2dd2580735 | 8 | as of commit id eefb99a313bbcc8f34c8b32bf0c5aa2dd2580735 |
@@ -6,11 +11,25 @@ Signed-off-by: Thomas Kunze <thommycheck@gmx.de> | |||
6 | Minor edits following upstream changes | 11 | Minor edits following upstream changes |
7 | Signed-off-by: Andrea Adami <andrea.adami@gmail.com> | 12 | Signed-off-by: Andrea Adami <andrea.adami@gmail.com> |
8 | 13 | ||
9 | Index: klibc-1.5.24/scripts/Kbuild.install | 14 | --- |
10 | =================================================================== | 15 | scripts/Kbuild.install | 4 ---- |
11 | --- a/scripts/Kbuild.install 2011-07-27 15:50:53.000000000 +0200 | 16 | usr/dash/Kbuild | 2 -- |
12 | +++ b/scripts/Kbuild.install 2011-08-01 00:03:03.000000000 +0200 | 17 | usr/gzip/Kbuild | 2 -- |
13 | @@ -88,13 +88,10 @@ | 18 | usr/kinit/Kbuild | 2 -- |
19 | usr/kinit/fstype/Kbuild | 2 -- | ||
20 | usr/kinit/ipconfig/Kbuild | 2 -- | ||
21 | usr/kinit/nfsmount/Kbuild | 2 -- | ||
22 | usr/kinit/resume/Kbuild | 2 -- | ||
23 | usr/kinit/run-init/Kbuild | 2 -- | ||
24 | usr/klibc/Kbuild | 2 -- | ||
25 | usr/utils/Kbuild | 2 -- | ||
26 | 11 files changed, 24 deletions(-) | ||
27 | |||
28 | diff --git a/scripts/Kbuild.install b/scripts/Kbuild.install | ||
29 | index d32a8a5..fda699d 100644 | ||
30 | --- a/scripts/Kbuild.install | ||
31 | +++ b/scripts/Kbuild.install | ||
32 | @@ -88,19 +88,15 @@ else | ||
14 | header: | 33 | header: |
15 | $(Q)echo " INSTALL headers + man pages to $(INSTALLROOT)$(INSTALLDIR)" | 34 | $(Q)echo " INSTALL headers + man pages to $(INSTALLROOT)$(INSTALLDIR)" |
16 | $(Q)mkdir -p $(INSTALLROOT)$(bindir) | 35 | $(Q)mkdir -p $(INSTALLROOT)$(bindir) |
@@ -24,119 +43,107 @@ Index: klibc-1.5.24/scripts/Kbuild.install | |||
24 | $(Q)for x in ../../../include/asm ../../../include/asm-generic ../../../include/linux ../../../include/mtd; do \ | 43 | $(Q)for x in ../../../include/asm ../../../include/asm-generic ../../../include/linux ../../../include/mtd; do \ |
25 | ln -sf $${x} $(INSTALLROOT)$(INSTALLDIR)/$(KCROSS)include/ || exit; \ | 44 | ln -sf $${x} $(INSTALLROOT)$(INSTALLDIR)/$(KCROSS)include/ || exit; \ |
26 | done | 45 | done |
27 | @@ -103,7 +100,6 @@ | ||
28 | done | ||
29 | $(Q)cp -rf usr/include/. $(INSTALLROOT)$(INSTALLDIR)/$(KCROSS)include/. | 46 | $(Q)cp -rf usr/include/. $(INSTALLROOT)$(INSTALLDIR)/$(KCROSS)include/. |
30 | $(Q)chmod -R a+rX,go-w $(INSTALLROOT)$(INSTALLDIR)/$(KCROSS)include | 47 | $(Q)chmod -R a+rX,go-w $(INSTALLROOT)$(INSTALLDIR)/$(KCROSS)include |
31 | - $(Q)$(install-data) $(srctree)/klcc/klcc.1 $(INSTALLROOT)$(mandir)/man1/$(KCROSS)klcc.1 | 48 | - $(Q)$(install-data) $(srctree)/klcc/klcc.1 $(INSTALLROOT)$(mandir)/man1/$(KCROSS)klcc.1 |
32 | $(Q)$(install-bin) $(objtree)/klcc/$(KCROSS)klcc $(INSTALLROOT)$(bindir) | 49 | $(Q)$(install-bin) $(objtree)/klcc/$(KCROSS)klcc $(INSTALLROOT)$(bindir) |
33 | 50 | ||
34 | footer: header | 51 | footer: header |
35 | 52 | diff --git a/usr/dash/Kbuild b/usr/dash/Kbuild | |
36 | Index: klibc-1.5.24/usr/dash/Kbuild | 53 | index 3a98c1f..1a6920a 100644 |
37 | =================================================================== | 54 | --- a/usr/dash/Kbuild |
38 | --- a/usr/dash/Kbuild 2011-07-27 15:50:53.000000000 +0200 | 55 | +++ b/usr/dash/Kbuild |
39 | +++ b/usr/dash/Kbuild 2011-08-01 00:07:56.000000000 +0200 | 56 | @@ -92,5 +92,3 @@ $(obj)/syntax.c: $(obj)/mksyntax |
40 | @@ -92,5 +92,3 @@ | ||
41 | $(obj)/syntax.h: $(obj)/syntax.c | 57 | $(obj)/syntax.h: $(obj)/syntax.c |
42 | $(Q): | 58 | $(Q): |
43 | 59 | ||
44 | -# Targets to install | 60 | -# Targets to install |
45 | -install-y := sh.shared | 61 | -install-y := sh.shared |
46 | 62 | diff --git a/usr/gzip/Kbuild b/usr/gzip/Kbuild | |
47 | Index: klibc-1.5.24/usr/gzip/Kbuild | 63 | index 9bbf0a4..c497d02 100644 |
48 | =================================================================== | 64 | --- a/usr/gzip/Kbuild |
49 | --- a/usr/gzip/Kbuild 2011-07-27 15:50:53.000000000 +0200 | 65 | +++ b/usr/gzip/Kbuild |
50 | +++ b/usr/gzip/Kbuild 2011-08-01 00:06:39.000000000 +0200 | 66 | @@ -21,5 +21,3 @@ $(obj)/gunzip $(obj)/zcat: $(obj)/gzip |
51 | @@ -21,5 +21,3 @@ | ||
52 | # Cleaning | 67 | # Cleaning |
53 | targets := gzip gzip.g gunzip zcat | 68 | targets := gzip gzip.g gunzip zcat |
54 | 69 | ||
55 | -# Targets to install | 70 | -# Targets to install |
56 | -install-y := gzip gunzip zcat | 71 | -install-y := gzip gunzip zcat |
57 | 72 | diff --git a/usr/kinit/Kbuild b/usr/kinit/Kbuild | |
58 | Index: klibc-1.5.24/usr/kinit/fstype/Kbuild | 73 | index 5320127..f7fdccd 100644 |
59 | =================================================================== | 74 | --- a/usr/kinit/Kbuild |
60 | --- a/usr/kinit/fstype/Kbuild 2011-07-27 15:50:53.000000000 +0200 | 75 | +++ b/usr/kinit/Kbuild |
61 | +++ b/usr/kinit/fstype/Kbuild 2011-08-01 00:09:12.000000000 +0200 | 76 | @@ -33,5 +33,3 @@ targets += kinit kinit.g kinit.shared kinit.shared.g |
62 | @@ -21,5 +21,3 @@ | 77 | subdir- := fstype ipconfig nfsmount resume run-init |
78 | |||
79 | |||
80 | -# install binary | ||
81 | -install-y := kinit kinit.shared | ||
82 | diff --git a/usr/kinit/fstype/Kbuild b/usr/kinit/fstype/Kbuild | ||
83 | index 9b20db1..367611d 100644 | ||
84 | --- a/usr/kinit/fstype/Kbuild | ||
85 | +++ b/usr/kinit/fstype/Kbuild | ||
86 | @@ -21,5 +21,3 @@ shared/fstype-y := $(objs) | ||
63 | # Cleaning | 87 | # Cleaning |
64 | clean-dirs := static shared | 88 | clean-dirs := static shared |
65 | 89 | ||
66 | -# install binary | 90 | -# install binary |
67 | -install-y := $(shared-y) | 91 | -install-y := $(shared-y) |
68 | 92 | diff --git a/usr/kinit/ipconfig/Kbuild b/usr/kinit/ipconfig/Kbuild | |
69 | Index: klibc-1.5.24/usr/kinit/ipconfig/Kbuild | 93 | index 7f8d181..eb1d472 100644 |
70 | =================================================================== | 94 | --- a/usr/kinit/ipconfig/Kbuild |
71 | --- a/usr/kinit/ipconfig/Kbuild 2011-07-27 15:50:53.000000000 +0200 | 95 | +++ b/usr/kinit/ipconfig/Kbuild |
72 | +++ b/usr/kinit/ipconfig/Kbuild 2011-08-01 00:10:52.000000000 +0200 | 96 | @@ -27,5 +27,3 @@ shared/ipconfig-y := $(objs) |
73 | @@ -27,5 +27,3 @@ | ||
74 | # Cleaning | 97 | # Cleaning |
75 | clean-dirs := static shared | 98 | clean-dirs := static shared |
76 | 99 | ||
77 | -# install binary | 100 | -# install binary |
78 | -install-y := $(shared-y) | 101 | -install-y := $(shared-y) |
79 | 102 | diff --git a/usr/kinit/nfsmount/Kbuild b/usr/kinit/nfsmount/Kbuild | |
80 | Index: klibc-1.5.24/usr/kinit/Kbuild | 103 | index 461e6f3..ba31708 100644 |
81 | =================================================================== | 104 | --- a/usr/kinit/nfsmount/Kbuild |
82 | --- a/usr/kinit/Kbuild 2011-07-27 15:50:53.000000000 +0200 | 105 | +++ b/usr/kinit/nfsmount/Kbuild |
83 | +++ b/usr/kinit/Kbuild 2011-08-01 00:20:18.000000000 +0200 | 106 | @@ -23,5 +23,3 @@ dummypmap-y := dummypmap_test.o |
84 | @@ -33,5 +33,3 @@ | ||
85 | subdir- := fstype ipconfig nfsmount resume run-init | ||
86 | |||
87 | |||
88 | -# install binary | ||
89 | -install-y := kinit kinit.shared | ||
90 | |||
91 | Index: klibc-1.5.24/usr/kinit/nfsmount/Kbuild | ||
92 | =================================================================== | ||
93 | --- a/usr/kinit/nfsmount/Kbuild 2011-07-27 15:50:53.000000000 +0200 | ||
94 | +++ b/usr/kinit/nfsmount/Kbuild 2011-08-01 00:12:52.000000000 +0200 | ||
95 | @@ -23,5 +23,3 @@ | ||
96 | 107 | ||
97 | clean-dirs := static shared | 108 | clean-dirs := static shared |
98 | 109 | ||
99 | -# Install binary | 110 | -# Install binary |
100 | -install-y := $(shared-y) | 111 | -install-y := $(shared-y) |
101 | 112 | diff --git a/usr/kinit/resume/Kbuild b/usr/kinit/resume/Kbuild | |
102 | Index: klibc-1.5.24/usr/kinit/resume/Kbuild | 113 | index 034195d..c1342e1 100644 |
103 | =================================================================== | 114 | --- a/usr/kinit/resume/Kbuild |
104 | --- a/usr/kinit/resume/Kbuild 2011-07-27 15:50:53.000000000 +0200 | 115 | +++ b/usr/kinit/resume/Kbuild |
105 | +++ b/usr/kinit/resume/Kbuild 2011-08-01 00:13:51.000000000 +0200 | 116 | @@ -26,5 +26,3 @@ shared/resume-lib := ../lib.a |
106 | @@ -26,5 +26,3 @@ | ||
107 | # Cleaning | 117 | # Cleaning |
108 | clean-dirs := static shared | 118 | clean-dirs := static shared |
109 | 119 | ||
110 | -# install binary | 120 | -# install binary |
111 | -install-y := $(shared-y) | 121 | -install-y := $(shared-y) |
112 | 122 | diff --git a/usr/kinit/run-init/Kbuild b/usr/kinit/run-init/Kbuild | |
113 | Index: klibc-1.5.24/usr/kinit/run-init/Kbuild | 123 | index f7832b7..c153b0a 100644 |
114 | =================================================================== | 124 | --- a/usr/kinit/run-init/Kbuild |
115 | --- a/usr/kinit/run-init/Kbuild 2011-07-27 15:50:53.000000000 +0200 | 125 | +++ b/usr/kinit/run-init/Kbuild |
116 | +++ b/usr/kinit/run-init/Kbuild 2011-08-01 00:14:41.000000000 +0200 | 126 | @@ -30,5 +30,3 @@ shared/run-init-lib := ../lib.a |
117 | @@ -25,5 +25,3 @@ | ||
118 | # Cleaning | 127 | # Cleaning |
119 | clean-dirs := static shared | 128 | clean-dirs := static shared |
120 | 129 | ||
121 | -# install binary | 130 | -# install binary |
122 | -install-y := $(shared-y) | 131 | -install-y := $(shared-y) |
123 | 132 | diff --git a/usr/klibc/Kbuild b/usr/klibc/Kbuild | |
124 | Index: klibc-1.5.24/usr/klibc/Kbuild | 133 | index eba6add..98caf2e 100644 |
125 | =================================================================== | 134 | --- a/usr/klibc/Kbuild |
126 | --- a/usr/klibc/Kbuild 2011-07-27 15:50:53.000000000 +0200 | 135 | +++ b/usr/klibc/Kbuild |
127 | +++ b/usr/klibc/Kbuild 2011-08-01 00:18:11.000000000 +0200 | 136 | @@ -185,5 +185,3 @@ install-rule: |
128 | @@ -177,5 +177,3 @@ | ||
129 | $(INSTALLROOT)$(INSTALLDIR)/$(KLIBCCROSS)lib)) | 137 | $(INSTALLROOT)$(INSTALLDIR)/$(KLIBCCROSS)lib)) |
130 | $(Q)$(install-lib) $(obj)/klibc-$(SOLIBHASH).so \ | 138 | $(Q)$(install-lib) $(obj)/klibc-$(SOLIBHASH).so \ |
131 | $(INSTALLROOT)$(INSTALLDIR)/$(KLIBCCROSS)lib | 139 | $(INSTALLROOT)$(INSTALLDIR)/$(KLIBCCROSS)lib |
132 | - $(Q)$(install-lib) $(obj)/klibc-$(SOLIBHASH).so \ | 140 | - $(Q)$(install-lib) $(obj)/klibc-$(SOLIBHASH).so \ |
133 | - $(INSTALLROOT)$(SHLIBDIR) | 141 | - $(INSTALLROOT)$(SHLIBDIR) |
134 | 142 | diff --git a/usr/utils/Kbuild b/usr/utils/Kbuild | |
135 | Index: klibc-1.5.24/usr/utils/Kbuild | 143 | index 05aa794..67d9486 100644 |
136 | =================================================================== | 144 | --- a/usr/utils/Kbuild |
137 | --- a/usr/utils/Kbuild 2011-07-27 15:50:53.000000000 +0200 | 145 | +++ b/usr/utils/Kbuild |
138 | +++ b/usr/utils/Kbuild 2011-08-01 00:19:13.000000000 +0200 | 146 | @@ -72,5 +72,3 @@ $(obj)/shared/reboot $(obj)/shared/poweroff: $(obj)/shared/halt |
139 | @@ -72,5 +72,3 @@ | ||
140 | # Clean deletes the static and shared dir | 147 | # Clean deletes the static and shared dir |
141 | clean-dirs := static shared | 148 | clean-dirs := static shared |
142 | 149 | ||