Displaying 20 results from an estimated 1000 matches similar to: "[klibc:master] Simplify build instructions"
2015 Mar 11
1
Patch: Kbuild.install: *** No rule to make target `headers_install'.
Version: 2.0.4 and git
Kernel tested: 3.10.70
Description: make install fails with: No rule to make target
`headers_install'.
File impacted: scripts/Kbuild.install
Error Received:
make[2]: *** No rule to make target `headers_install'. Stop.
make[1]: *** [header] Error 2
make: *** [install] Error 2
Issue: KLIBCKERNELSRC=`pwd`/linux/usr points to Makefile without
headers_install rule.
2012 Feb 06
1
[PATCH] Fix kernel headers install
headers_install needs KLIBCKERNELOBJ instead of KLIBCKERNELSRC
Signed-off-by: Karl Beldan <karl.beldan at gmail.com>
---
scripts/Kbuild.install | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/scripts/Kbuild.install b/scripts/Kbuild.install
index 370b54e..fd4a2ed 100644
--- a/scripts/Kbuild.install
+++ b/scripts/Kbuild.install
@@ -95,7 +95,7 @@ header:
$(Q)mkdir
2013 Dec 27
0
[PATCH] Update header locations for uapi & generated
On Thu, Dec 26, 2013 at 09:04:26PM -0800, H. Peter Anvin wrote:
> > in the kernel dir:
> > emake headers_install INSTALL_HDR_PATH="${WORKDIR}"/linux-headers/
> You are overriding INSTALL_HDR_PATH...
I want it to use that copy in $WORKDIR/linux-headers/ ....
There is no way to specify that, it's NOT KLIBCKERNELSRC.
> > in the klibc dir:
> > emake V=1
2013 Dec 27
2
[PATCH] Update header locations for uapi & generated
On 12/26/2013 08:49 PM, Robin H. Johnson wrote:
>
> in the kernel dir:
> emake headers_install INSTALL_HDR_PATH="${WORKDIR}"/linux-headers/
You are overriding INSTALL_HDR_PATH...
> in the klibc dir:
> emake V=1 KLIBCKERNELSRC="${S}/linux/usr" (plus the rest of the opts)
... and then you point KLIBCKERNELSRC (which arguably is misnamed these
days, but
2013 Aug 21
0
Build problems: klibc with Linux 3.10.7
On Wed, Aug 21, 2013 at 06:03:41PM +0200, leroy christophe wrote:
<snipp stuff>
> >>>>
> >>>>A) cd ~/src/linux
> >>>> make defconfig
> >>>> make headers_install
> >>>>
> >>>>B) cd ~/src/klibc
> >>>> make KLIBCKERNELSRC=`pwd`/../linux/usr/
> >>>>
>
2017 Jan 05
0
[PATCH] Fix make install target
The headers_install target is part of the top level kernel source,
not the usr/ part of the Linux kernel sources. This fixes make install.
Signed-off-by: Luis R. Rodriguez <mcgrof at kernel.org>
---
scripts/Kbuild.install | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/scripts/Kbuild.install b/scripts/Kbuild.install
index 8af569777cc3..a719e5571edf 100644
---
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
2011 Jul 20
1
[PATCH] fix parallel make install error
This patch fixes a parallel make install error.
Signed-off-by: Tim Harder <radhermit at gentoo.org>
---
scripts/Kbuild.install | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/scripts/Kbuild.install b/scripts/Kbuild.install
index de918f0..370b54e 100644
--- a/scripts/Kbuild.install
+++ b/scripts/Kbuild.install
@@ -95,7 +95,7 @@ header:
$(Q)mkdir -p
2017 Oct 07
0
[PATCH] Fix install target
---
scripts/Kbuild.install | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/scripts/Kbuild.install b/scripts/Kbuild.install
index 8af5697..5f42834 100644
--- a/scripts/Kbuild.install
+++ b/scripts/Kbuild.install
@@ -95,7 +95,7 @@ header:
$(Q)mkdir -p $(INSTALLROOT)$(INSTALLDIR)/$(KCROSS)include
$(Q)mkdir -p $(INSTALLROOT)$(INSTALLDIR)/$(KCROSS)lib
$(Q)mkdir -p
2013 Aug 21
0
Build problems: klibc with Linux 3.10.7
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 klibc 2.0.2
>>>> against kernel 3.8.13
>>>> We had
2013 Dec 27
2
[PATCH] Update header locations for uapi & generated
On 12/26/2013 07:27 PM, Robin H. Johnson wrote:
> (please CC me, I'm not on the klibc list, and I didn't get HPA's
> response to my post).
>
> On Fri, Dec 27, 2013 at 12:24:34AM +0000, Thorsten Glaser wrote:
>> H. Peter Anvin dixit:
>>> You should be using the output of "make headers_install" to build klibc.
> That makes easy cross-building a
2009 Jul 17
0
[PATCH] Use headers_install to install headers
Use headers_install to install headers.
arch include directory has moved and it's better
to ask the kernel Makefile to install the headers
for us.
Signed-off-by: Jon Ringle <jon at ringle.org>
---
scripts/Kbuild.install | 11 +----------
1 files changed, 1 insertions(+), 10 deletions(-)
diff --git a/scripts/Kbuild.install b/scripts/Kbuild.install
index 44c8f76..de918f0 100644
---
2019 Jan 18
0
[klibc:master] Kbuild.install: Copy UAPI headers instead of reinstalling them
Commit-ID: 2931607d8156b4a725d485d2d0bb0cc5aa90e556
Gitweb: http://git.kernel.org/?p=libs/klibc/klibc.git;a=commit;h=2931607d8156b4a725d485d2d0bb0cc5aa90e556
Author: Ben Hutchings <ben at decadent.org.uk>
AuthorDate: Mon, 7 Jan 2019 04:13:18 +0000
Committer: Ben Hutchings <ben at decadent.org.uk>
CommitDate: Fri, 18 Jan 2019 03:10:14 +0000
[klibc] Kbuild.install: Copy UAPI
2013 Dec 27
0
[PATCH] Update header locations for uapi & generated
(please CC me, I'm not on the klibc list, and I didn't get HPA's
response to my post).
On Fri, Dec 27, 2013 at 12:24:34AM +0000, Thorsten Glaser wrote:
> H. Peter Anvin dixit:
> >You should be using the output of "make headers_install" to build klibc.
That makes easy cross-building a pain in the arse, and if that's the
case, why do you even have variables
2013 Aug 20
0
Build problems: klibc with Linux 3.10.7
Le 19/08/2013 22:45, Neal Murphy a ?crit :
> Gauche as it may be, I am reviving an old thread from January:
> http://www.zytor.com/pipermail/klibc/2013-January/003402.html.
>
> Building Smoothwall Express 3.1 in a chroot jail works well. (gcc 4.7.2, linux
> 3.4.58, klibc 2.0.1, et alia).
>
> I'm now working on 'express-next' to prepare for a future release (linux
2013 Aug 21
2
Build problems: klibc with Linux 3.10.7
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 klibc 2.0.2
> >>against kernel 3.8.13
> >>We had to introduce those patches when going from kernel 3.6 to kernel 3.7
2019 Feb 01
0
[klibc:master] README.klibc: Replace list with sections and headings
Commit-ID: 72fea69b91bdc8981d958984bc78401a08f8aff5
Gitweb: http://git.kernel.org/?p=libs/klibc/klibc.git;a=commit;h=72fea69b91bdc8981d958984bc78401a08f8aff5
Author: Ben Hutchings <ben at decadent.org.uk>
AuthorDate: Fri, 1 Feb 2019 16:00:20 +0000
Committer: Ben Hutchings <ben at decadent.org.uk>
CommitDate: Sat, 2 Feb 2019 00:09:23 +0100
[klibc] README.klibc: Replace list
2013 Aug 21
0
[klibc:master] README.klibc: update build information
On Wednesday, August 21, 2013 11:36:03 AM klibc-bot for maximilian attems
wrote:
> Commit-ID: 25a66fa8d8623fae267f6807b56438cd7c40e034
> Gitweb:
> http://git.kernel.org/?p=libs/klibc/klibc.git;a=commit;h=25a66fa8d8623fae2
> 67f6807b56438cd7c40e034 Author: maximilian attems <max at stro.at>
> AuthorDate: Wed, 21 Aug 2013 17:31:25 +0200
> Committer: maximilian
2013 Aug 21
3
Build problems: klibc with Linux 3.10.7
On Wed, Aug 21, 2013 at 06:48:08PM +0200, maximilian attems wrote:
> On Wed, Aug 21, 2013 at 06:03:41PM +0200, leroy christophe wrote:
> >
> > Note that step B is working well.
> > It is step C, the 'make install', which fails.
>
> right, it is the toplevel Makefile one needs to poke for the target.
>
see belows proper patch:
>From
2010 Mar 13
1
klibc build trouble
as the next klibc release 1.5.16 looks like shaping up,
I have a trouble to build that for Debian.
currently I build depent on linux-libc-dev, I don't know what
against I can build latest klibc, see
klibc fails to build due too:
make -C linux/ ARCH=x86_64 INSTALL_HDR_PATH=debian/tmp/usr/lib/klibc/ headers_install
make[3]: *** No rule to make target `headers_install'. Stop.
make[2]: ***