* [PATCH] make.cross: Update openrisc toolchain to fix builds
@ 2017-02-19 8:14 Stafford Horne
2017-02-19 8:50 ` Fengguang Wu
0 siblings, 1 reply; 2+ messages in thread
From: Stafford Horne @ 2017-02-19 8:14 UTC (permalink / raw)
To: fengguang.wu; +Cc: linux-kernel, Stafford Horne
The latest openrisc kernel patchs in linux-next are failing to build due
to old toolchains at the crosstool website.
Update to point the the toolchain binaries released the OpenRISC team.
Signed-off-by: Stafford Horne <shorne@gmail.com>
---
sbin/make.cross | 21 ++++++++++++++++++++-
1 file changed, 20 insertions(+), 1 deletion(-)
diff --git a/sbin/make.cross b/sbin/make.cross
index c450b4a..7f802b1 100755
--- a/sbin/make.cross
+++ b/sbin/make.cross
@@ -104,12 +104,31 @@ install_linaro()
sudo mv $dir $GCC_INSTALL_PATH/gcc-$cross_gcc_version/$gcc_arch
}
+install_openrisc()
+{
+ local URL='https://github.com/openrisc/or1k-gcc/releases/download/or1k-5.4.0-20170218'
+ local file='or1k-linux-5.4.0-20170218.tar.xz'
+
+ download_extract "$URL/$file"
+
+ local dir="$GCC_INSTALL_PATH/${gcc_arch}"
+ local cross_gcc_version=(${dir}/bin/${gcc_arch}-gcc-*.*.*)
+ local cross_gcc_version=${cross_gcc_version##*-}
+
+ echo mkdir -p $GCC_INSTALL_PATH/gcc-$cross_gcc_version
+ sudo mkdir -p $GCC_INSTALL_PATH/gcc-$cross_gcc_version
+ echo mv $dir $GCC_INSTALL_PATH/gcc-$cross_gcc_version/$gcc_arch
+ sudo mv $dir $GCC_INSTALL_PATH/gcc-$cross_gcc_version/$gcc_arch
+}
+
install_cross_compiler()
{
install_packages
if [[ $gcc_arch =~ 'aarch64' ]]; then
install_linaro
+ elif [[ $gcc_arch =~ 'or1k' ]]; then
+ install_openrisc
else
install_crosstool
fi
@@ -150,7 +169,7 @@ setup_crosstool()
fi
;;
openrisc)
- gcc_arch=or32-linux
+ gcc_arch=or1k-linux
;;
s390)
gcc_arch=s390x-linux
--
2.9.3
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] make.cross: Update openrisc toolchain to fix builds
2017-02-19 8:14 [PATCH] make.cross: Update openrisc toolchain to fix builds Stafford Horne
@ 2017-02-19 8:50 ` Fengguang Wu
0 siblings, 0 replies; 2+ messages in thread
From: Fengguang Wu @ 2017-02-19 8:50 UTC (permalink / raw)
To: Stafford Horne; +Cc: linux-kernel
Applied, thank you!
On Sun, Feb 19, 2017 at 05:14:36PM +0900, Stafford Horne wrote:
>The latest openrisc kernel patchs in linux-next are failing to build due
>to old toolchains at the crosstool website.
>
>Update to point the the toolchain binaries released the OpenRISC team.
>
>Signed-off-by: Stafford Horne <shorne@gmail.com>
>---
> sbin/make.cross | 21 ++++++++++++++++++++-
> 1 file changed, 20 insertions(+), 1 deletion(-)
>
>diff --git a/sbin/make.cross b/sbin/make.cross
>index c450b4a..7f802b1 100755
>--- a/sbin/make.cross
>+++ b/sbin/make.cross
>@@ -104,12 +104,31 @@ install_linaro()
> sudo mv $dir $GCC_INSTALL_PATH/gcc-$cross_gcc_version/$gcc_arch
> }
>
>+install_openrisc()
>+{
>+ local URL='https://github.com/openrisc/or1k-gcc/releases/download/or1k-5.4.0-20170218'
>+ local file='or1k-linux-5.4.0-20170218.tar.xz'
>+
>+ download_extract "$URL/$file"
>+
>+ local dir="$GCC_INSTALL_PATH/${gcc_arch}"
>+ local cross_gcc_version=(${dir}/bin/${gcc_arch}-gcc-*.*.*)
>+ local cross_gcc_version=${cross_gcc_version##*-}
>+
>+ echo mkdir -p $GCC_INSTALL_PATH/gcc-$cross_gcc_version
>+ sudo mkdir -p $GCC_INSTALL_PATH/gcc-$cross_gcc_version
>+ echo mv $dir $GCC_INSTALL_PATH/gcc-$cross_gcc_version/$gcc_arch
>+ sudo mv $dir $GCC_INSTALL_PATH/gcc-$cross_gcc_version/$gcc_arch
>+}
>+
> install_cross_compiler()
> {
> install_packages
>
> if [[ $gcc_arch =~ 'aarch64' ]]; then
> install_linaro
>+ elif [[ $gcc_arch =~ 'or1k' ]]; then
>+ install_openrisc
> else
> install_crosstool
> fi
>@@ -150,7 +169,7 @@ setup_crosstool()
> fi
> ;;
> openrisc)
>- gcc_arch=or32-linux
>+ gcc_arch=or1k-linux
> ;;
> s390)
> gcc_arch=s390x-linux
>--
>2.9.3
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2017-02-19 8:50 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-02-19 8:14 [PATCH] make.cross: Update openrisc toolchain to fix builds Stafford Horne
2017-02-19 8:50 ` Fengguang Wu
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.