Votre Nom 2 years ago
parent
commit
e66e24d975
1 changed files with 8 additions and 8 deletions
  1. 8 8
      build-ants3.sh

+ 8 - 8
build-ants3.sh

@@ -1,8 +1,4 @@
 #!/bin/bash
-# This is a script for build avalon controller image
-#
-#  Copyright 2014-2015 Mikeqin <Fengling.Qin@gmail.com>
-#  Copyright 2012-2015 Xiangfu <xiangfu@openmobilefree.com>
 #
 # OPENWRT_DIR is ${ROOT_DIR}/openwrt, build the image in it
 # Controller's image should include the following configurations:
@@ -13,15 +9,15 @@
 # Learn bash: http://explainshell.com/
 set -e
 
-SCRIPT_VERSION=30092017
+SCRIPT_VERSION=14122022
 
 # Support machine: avalon6, avalon4
 [ -z "${AVA_MACHINE}" ] && AVA_MACHINE=bitmain
-[ -z "${AVA_TARGET_BOARD}" ] && AVA_TARGET_BOARD=tl-mr3020-v1
+[ -z "${AVA_TARGET_BOARD}" ] && AVA_TARGET_BOARD=tl-wr703n-v1
 
 # OpenWrt repo
 bitmain_owrepo="http://gogserver.dnsalias.com:3000/wareck/openwrt_chaos_calmer.git@master"
-
+#bitmain_owrepo="http://gogserver.dnsalias.com:3000/wareck/openwrt-archive.git@master"
 # OpenWrt feeds
 FEEDS_CONF=feeds.${AVA_MACHINE}.conf
 
@@ -102,7 +98,11 @@ prepare_source() {
                 GITREPO="`echo ${OPENWRT_URL} | cut -d @ -f 1`"
                 git clone ${GITREPO} openwrt
                 ;;
-
+	   https)
+                GITBRANCH="`echo ${OPENWRT_URL} | cut -d @ -f 2`"
+                GITREPO="`echo ${OPENWRT_URL} | cut -d @ -f 1`"
+                git clone ${GITREPO} openwrt
+                ;;
             *)
                 echo "Protocol not supported"; exit 1;
                 ;;