lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20170219081436.9165-1-shorne@gmail.com>
Date:   Sun, 19 Feb 2017 17:14:36 +0900
From:   Stafford Horne <shorne@...il.com>
To:     fengguang.wu@...el.com
Cc:     linux-kernel@...r.kernel.org, Stafford Horne <shorne@...il.com>
Subject: [PATCH] make.cross: Update openrisc toolchain to fix builds

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@...il.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

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ