Skip to content
Snippets Groups Projects
Commit b4ab7d42 authored by Gary Bisson's avatar Gary Bisson
Browse files

make_boundary: export ARCH and CROSS_COMPILE to fix jenkins build

parent 3d2b2cec
No related branches found
No related tags found
No related merge requests found
......@@ -11,11 +11,11 @@ for board in $boards ; do
if [ $board != "mx6qsabrelite" ] ; then
cnt=`sed -n "/CONFIG_ARCH_MX8M=/=" configs/${board}_defconfig`
if [ "${cnt}" != "" ] ; then
ARCH=arm64
CROSS_COMPILE=aarch64-linux-gnu-
export ARCH=arm64
export CROSS_COMPILE=aarch64-linux-gnu-
else
ARCH=arm
CROSS_COMPILE=arm-linux-gnueabihf-
export ARCH=arm
export CROSS_COMPILE=arm-linux-gnueabihf-
fi
make distclean ; make ${board}_defconfig
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment