helper scripts: modify the filename of the toolchain include so it doesn't conflict

This commit is contained in:
Matt Sealey
2012-05-07 10:16:03 -05:00
parent 4fdaa5078c
commit c456c38e49
3 changed files with 5 additions and 4 deletions

View File

@@ -1,5 +1,5 @@
#!/bin/bash
. arm-toolchain.sh
. toolchain.sh
make ${arch} ${compiler} ${jobs} mx51_efikamx_defconfig

View File

@@ -1,6 +1,6 @@
#!/bin/bash
#!/bin/bash -ex
. arm-toolchain.sh
. toolchain.sh
target=$1
@@ -13,5 +13,5 @@ if [ ! -e .config ]; then
./config.sh
fi
make-kpkg --uc --us --initrd --cross-compile ${toolchain} --subarch efikamx --jobs=${numjobs} --rootcmd=fakeroot --arch armel --revision ${packagedate} ${target}
V=1 CROSS_SUFFIX="${version}" fakeroot make-kpkg --uc --us --initrd --cross-compile ${toolchain} --subarch efikamx --jobs=${numjobs} --rootcmd=fakeroot --arch armel --revision ${packagedate} ${target}

View File

@@ -3,5 +3,6 @@ archname="arm"
arch="ARCH=${archname}"
toolchain="arm-linux-gnueabi-"
compiler="CROSS_COMPILE=${toolchain}"
compilerversion="4.4"
numjobs="16"
jobs="-j${numjobs}"