-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.quartz64.sh
46 lines (39 loc) · 1.41 KB
/
setup.quartz64.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#! /bin/bash
if [ $# -lt 1 ]; then
echo usage :
me=`basename "$0"`
echo " " $me path.to.buildroot.neo
echo for example :
echo " " $me /home/flatmax.unencrypted/buildroot.quartz64
else
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )"
CUSTOM_PATH=$DIR
BR_REPO_PATH=$1
BR_DEFCONFIG=''
BR_RK3566_DEFCONFIG=quartz64_defconfig
if [ ! -d "$BR_REPO_PATH" ]; then
echo Can\'t find the directory $BR_REPO_PATH please correct the bash script.
return;
fi
if [ ! -d "$CUSTOM_PATH" ]; then
echo Can\'t find the directory $CUSTOM_PATH please correct the bash script.
return;
fi
if [ ! -e $CUSTOM_PATH/configs/$BR_RK3566_DEFCONFIG ]; then
echo can\'t find the file $CUSTOM_PATH/configs/$BR_RK3566_DEFCONFIG
echo please fix this script
return;
fi
echo The setup script is in this directory $1
cd $BR_REPO_PATH
if [ ! -z $BR_DEFCONFIG ]; then
echo using defined defconfig $BR_DEFCONFIG
echo "###### DON'T EDIT THIS FILE, EDIT $BR_RK3566_DEFCONFIG INSTEAD" > $CUSTOM_PATH/configs/$BR_DEFCONFIG
cat $BR_REPO_PATH/configs/$BR_DEFCONFIG >> $CUSTOM_PATH/configs/$BR_DEFCONFIG
cat $CUSTOM_PATH/configs/$BR_RK3566_DEFCONFIG >> $CUSTOM_PATH/configs/$BR_DEFCONFIG
make BR2_EXTERNAL=$CUSTOM_PATH $BR_DEFCONFIG
else
echo No original defconfig defined, no problem using $BR_RK3566_DEFCONFIG
make BR2_EXTERNAL=$CUSTOM_PATH $BR_RK3566_DEFCONFIG
fi
fi