* [Buildroot] [PATCH] toolchain-external: fix Linaro 2014.02 symlink
@ 2014-05-21 7:52 Thomas Petazzoni
2014-05-21 8:08 ` Maxime Hadjinlian
2014-05-21 8:38 ` Peter Korsgaard
0 siblings, 2 replies; 5+ messages in thread
From: Thomas Petazzoni @ 2014-05-21 7:52 UTC (permalink / raw)
To: buildroot
In commit cd32da8f7931af61737df293d1f8bcedaab8648e
("toolchain-external: add Linaro ARM big endian toolchain") a mistake
was made, probably due to a rebase conflict that was incorrect solved:
the call to the post install staging hook that creates the necessary
symbolic links for a root filesystem based on Linaro 2014.02 to work
was removed.
This commit reinstates this call, which should fix the problem
observed by Maxime Hadjinlian while using Linaro 2014.02.
Reported-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
toolchain/toolchain-external/toolchain-external.mk | 1 +
1 file changed, 1 insertion(+)
diff --git a/toolchain/toolchain-external/toolchain-external.mk b/toolchain/toolchain-external/toolchain-external.mk
index 3f88188..34520be 100644
--- a/toolchain/toolchain-external/toolchain-external.mk
+++ b/toolchain/toolchain-external/toolchain-external.mk
@@ -286,6 +286,7 @@ TOOLCHAIN_EXTERNAL_POST_INSTALL_STAGING_HOOKS += TOOLCHAIN_EXTERNAL_LINARO_ARMHF
else ifeq ($(BR2_TOOLCHAIN_EXTERNAL_LINARO_2014_02),y)
TOOLCHAIN_EXTERNAL_SITE = http://releases.linaro.org/14.02/components/toolchain/binaries/
TOOLCHAIN_EXTERNAL_SOURCE = gcc-linaro-arm-linux-gnueabihf-4.8-2014.02_linux.tar.xz
+TOOLCHAIN_EXTERNAL_POST_INSTALL_STAGING_HOOKS += TOOLCHAIN_EXTERNAL_LINARO_ARMHF_SYMLINK
else ifeq ($(BR2_TOOLCHAIN_EXTERNAL_LINARO_ARMEB),y)
TOOLCHAIN_EXTERNAL_SITE = http://releases.linaro.org/14.02/components/toolchain/binaries/
TOOLCHAIN_EXTERNAL_SOURCE = gcc-linaro-armeb-linux-gnueabihf-4.8-2014.02_linux.tar.xz
--
1.9.3
^ permalink raw reply related [flat|nested] 5+ messages in thread* [Buildroot] [PATCH] toolchain-external: fix Linaro 2014.02 symlink
2014-05-21 7:52 [Buildroot] [PATCH] toolchain-external: fix Linaro 2014.02 symlink Thomas Petazzoni
@ 2014-05-21 8:08 ` Maxime Hadjinlian
2014-05-21 8:14 ` Eric Bénard
2014-05-21 8:38 ` Peter Korsgaard
1 sibling, 1 reply; 5+ messages in thread
From: Maxime Hadjinlian @ 2014-05-21 8:08 UTC (permalink / raw)
To: buildroot
Hi Thomas, all
On Wed, May 21, 2014 at 9:52 AM, Thomas Petazzoni
<thomas.petazzoni@free-electrons.com> wrote:
> In commit cd32da8f7931af61737df293d1f8bcedaab8648e
> ("toolchain-external: add Linaro ARM big endian toolchain") a mistake
> was made, probably due to a rebase conflict that was incorrect solved:
As said on IRC, small typo here.
> the call to the post install staging hook that creates the necessary
> symbolic links for a root filesystem based on Linaro 2014.02 to work
> was removed.
>
> This commit reinstates this call, which should fix the problem
> observed by Maxime Hadjinlian while using Linaro 2014.02.
>
> Reported-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com>
> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
> ---
> toolchain/toolchain-external/toolchain-external.mk | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/toolchain/toolchain-external/toolchain-external.mk b/toolchain/toolchain-external/toolchain-external.mk
> index 3f88188..34520be 100644
> --- a/toolchain/toolchain-external/toolchain-external.mk
> +++ b/toolchain/toolchain-external/toolchain-external.mk
> @@ -286,6 +286,7 @@ TOOLCHAIN_EXTERNAL_POST_INSTALL_STAGING_HOOKS += TOOLCHAIN_EXTERNAL_LINARO_ARMHF
> else ifeq ($(BR2_TOOLCHAIN_EXTERNAL_LINARO_2014_02),y)
> TOOLCHAIN_EXTERNAL_SITE = http://releases.linaro.org/14.02/components/toolchain/binaries/
> TOOLCHAIN_EXTERNAL_SOURCE = gcc-linaro-arm-linux-gnueabihf-4.8-2014.02_linux.tar.xz
> +TOOLCHAIN_EXTERNAL_POST_INSTALL_STAGING_HOOKS += TOOLCHAIN_EXTERNAL_LINARO_ARMHF_SYMLINK
> else ifeq ($(BR2_TOOLCHAIN_EXTERNAL_LINARO_ARMEB),y)
> TOOLCHAIN_EXTERNAL_SITE = http://releases.linaro.org/14.02/components/toolchain/binaries/
> TOOLCHAIN_EXTERNAL_SOURCE = gcc-linaro-armeb-linux-gnueabihf-4.8-2014.02_linux.tar.xz
> --
> 1.9.3
>
Thanks for this quick patch !
For futher references, the error I encountered was:
/bin/sh: error while loading shared libraries: libc.so.6: cannot open
shared object file: No such file or directory
Tested-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com>
^ permalink raw reply [flat|nested] 5+ messages in thread* [Buildroot] [PATCH] toolchain-external: fix Linaro 2014.02 symlink
2014-05-21 7:52 [Buildroot] [PATCH] toolchain-external: fix Linaro 2014.02 symlink Thomas Petazzoni
2014-05-21 8:08 ` Maxime Hadjinlian
@ 2014-05-21 8:38 ` Peter Korsgaard
1 sibling, 0 replies; 5+ messages in thread
From: Peter Korsgaard @ 2014-05-21 8:38 UTC (permalink / raw)
To: buildroot
>>>>> "Thomas" == Thomas Petazzoni <thomas.petazzoni@free-electrons.com> writes:
> In commit cd32da8f7931af61737df293d1f8bcedaab8648e
> ("toolchain-external: add Linaro ARM big endian toolchain") a mistake
> was made, probably due to a rebase conflict that was incorrect solved:
> the call to the post install staging hook that creates the necessary
> symbolic links for a root filesystem based on Linaro 2014.02 to work
> was removed.
> This commit reinstates this call, which should fix the problem
> observed by Maxime Hadjinlian while using Linaro 2014.02.
> Reported-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com>
> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Committed with 's/incorrect/incorrectly/, thanks.
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2014-05-21 8:38 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-05-21 7:52 [Buildroot] [PATCH] toolchain-external: fix Linaro 2014.02 symlink Thomas Petazzoni
2014-05-21 8:08 ` Maxime Hadjinlian
2014-05-21 8:14 ` Eric Bénard
2014-05-21 8:23 ` Károly Kasza
2014-05-21 8:38 ` Peter Korsgaard
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.