Replaced the wget download of u-boot by a versioned git checkout this allows us to better manage the u-boot and MLO version we ship while still allowing us to build ofline. This changes replaces the BASE_URL setting by U_BOOT_BIN_DIR and also updates to a newer build of u-boot.
		
			
				
	
	
		
			58 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			58 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/sh 
 | 
						|
#
 | 
						|
# Perform a checkout / update the MINIX u-boot git repo if needed
 | 
						|
# 
 | 
						|
# -o output dir
 | 
						|
OUTPUT_DIR=""
 | 
						|
GIT_VERSION=""
 | 
						|
while getopts "o:n:?" c
 | 
						|
do
 | 
						|
        case "$c" in
 | 
						|
        \?)
 | 
						|
                echo "Usage: $0 -o output dir -n version " >&2
 | 
						|
                exit 1
 | 
						|
        	;;
 | 
						|
        o)
 | 
						|
                OUTPUT_DIR=$OPTARG
 | 
						|
		;;
 | 
						|
        n)
 | 
						|
                GIT_VERSION=$OPTARG
 | 
						|
		;;
 | 
						|
	esac
 | 
						|
done
 | 
						|
 | 
						|
 | 
						|
#
 | 
						|
# check arguments
 | 
						|
#
 | 
						|
if [ -z "$OUTPUT_DIR" -o -z "$GIT_VERSION" ]
 | 
						|
then
 | 
						|
		echo "Missing required parameters OUTPUT_DIR=$OUTPUT_DIR GIT_VERSION=$GIT_VERSION"
 | 
						|
                echo "Usage: $0 -o output dir -n version " >&2
 | 
						|
                exit 1
 | 
						|
fi
 | 
						|
 | 
						|
 | 
						|
#
 | 
						|
# if the file doesn't exist it's easy , to a checkout 
 | 
						|
#
 | 
						|
if  [ ! -e "$OUTPUT_DIR" ]
 | 
						|
then
 | 
						|
	git clone git://git.minix3.org/u-boot -b minix $OUTPUT_DIR
 | 
						|
fi
 | 
						|
 | 
						|
(
 | 
						|
	cd  "$OUTPUT_DIR"
 | 
						|
 | 
						|
	#
 | 
						|
	# perform an update
 | 
						|
	#
 | 
						|
	CURRENT_VERSION=`git rev-parse HEAD`
 | 
						|
	if [ "$CURRENT_VERSION" !=  "$GIT_VERSION" ]
 | 
						|
	then
 | 
						|
		echo "Current version $CURRENT_VERSION does not match wanted $GIT_VERSION performing update and checkout"	
 | 
						|
		git fetch -v 
 | 
						|
		git checkout $GIT_VERSION
 | 
						|
	fi
 | 
						|
)
 |