]> Zhao Yanbai Git Server - minix.git/commitdiff
Allow u-boot repository URL to be overridden 33/2933/1
authorLionel Sambuc <lionel@minix3.org>
Thu, 5 Feb 2015 14:00:17 +0000 (14:00 +0000)
committerLionel Sambuc <lionel@minix3.org>
Thu, 5 Feb 2015 13:04:31 +0000 (14:04 +0100)
This allows the URL used to clone our specific version of u-boot to be
specified in the environment, instead of being hard-coded.

This new flexibility will be required by the new Continuous Integration
infrastructure, whose test nodes are in a network without direct
internet access.

Change-Id: I7440b5bba6786f979623b4509111e4e99c6558f6

releasetools/fetch_u-boot.sh

index 140346402fb998100c0f96af13ae89aacc42ca0e..5531cd5b8a31068e95ee2e2b7f8dcc10b29a229f 100755 (executable)
@@ -2,6 +2,8 @@
 #
 # Perform a checkout / update the MINIX u-boot git repo if needed
 # 
+: ${UBOOT_REPO_URL=git://git.minix3.org/u-boot}
+
 # -o output dir
 OUTPUT_DIR=""
 GIT_VERSION=""
@@ -38,7 +40,7 @@ fi
 #
 if  [ ! -e "$OUTPUT_DIR" ]
 then
-       git clone git://git.minix3.org/u-boot -b minix $OUTPUT_DIR
+       git clone ${UBOOT_REPO_URL} -b minix $OUTPUT_DIR
 fi
 
 (