diff --git a/builder.sh b/builder.sh index 98c4a14801b11f3f2771aaea9fed82c559700aa4..9143ac136c2f063824587a41227383f23ddc29c0 100755 --- a/builder.sh +++ b/builder.sh @@ -6,12 +6,12 @@ cd ../ # Setting environment # ################### -ARCHITECTURES=( ar71xx-tiny ar71xx-generic ar71xx-nand brcm2708-bcm2708 brcm2708-bcm2709 mpc85xx-generic x86-64 x86-generic ramips-mt7621) -#ARCHITECTURES=( ar71xx-tiny ) +#ARCHITECTURES=( ar71xx-tiny ar71xx-generic ar71xx-nand brcm2708-bcm2708 brcm2708-bcm2709 mpc85xx-generic x86-64 x86-generic ramips-mt7621) +ARCHITECTURES=( ar71xx-tiny ) #BRANCH=stable #BRANCH=unbranded_stable -#BRANCH=experimental -BRANCH=beta +BRANCH=experimental +#BRANCH=beta # prepare needed strings GLUONVERSION=$(git describe --tags | cut -d "-" -f 1) @@ -43,6 +43,7 @@ sed -i -e "s/AUTOUPDATERBRANCH/$BRANCH/g" site/site.conf # remove old images to make sure we only upload the new shiny stuff rm -rf output/images + # update toolchain to current release make update @@ -59,22 +60,9 @@ do # ############### make clean GLUON_TARGET=$ARCHITECTURE $DEBUG -j24 - git reset --hard - - # Applying patches - # ################ - # (aka patching the gluon-build environment that after that patches the OpenWRT...) - if [ -d site/patches/ ]; then - for f in site/patches/*; do - echo $f - git apply $f - done - fi - - # Doing the Build # ############### - make all GLUON_TARGET=$ARCHITECTURE $DEBUG -j16 GLUON_RELEASE=${RELEASENAME} GLUON_BRANCH=$BRANCH GLUON_PRIORITY=$PRIO GLUON_ATH10K_MESH=ibss + make all GLUON_TARGET=$ARCHITECTURE $DEBUG -j24 GLUON_RELEASE=${RELEASENAME} GLUON_BRANCH=$BRANCH GLUON_PRIORITY=$PRIO GLUON_ATH10K_MESH=ibss echo Exiting with Code $? done