forked from freebsd/crochet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
crochet.sh
executable file
·141 lines (122 loc) · 2.69 KB
/
crochet.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
#!/bin/sh
set -e
echo 'Starting at '`date`
# General configuration and useful definitions
TOPDIR=`cd \`dirname $0\`; pwd`
LIBDIR=${TOPDIR}/lib
WORKDIR=${TOPDIR}/work
CONFIGFILE=
BOARD=
UPDATE_SOURCE=
VERBOSE=0
# Load utility libraries: strategy.sh must go first
. ${LIBDIR}/strategy.sh
# Rest in alphabetic order
. ${LIBDIR}/board.sh
. ${LIBDIR}/config.sh
. ${LIBDIR}/customize.sh
. ${LIBDIR}/disk.sh
. ${LIBDIR}/email.sh
. ${LIBDIR}/freebsd.sh
. ${LIBDIR}/gpt.sh
. ${LIBDIR}/scm.sh
. ${LIBDIR}/uboot.sh
. ${LIBDIR}/util.sh
crochet_usage ( ) {
echo "Usage: sudo $0 [-b <board>|-c <configfile>]"
echo " -b <board>: Load standard configuration for board"
echo " (Equivalent to loading a config file that contains"
echo " only a single board_setup command.)"
echo " -c <file>: Load configuration from file"
echo " -e <email>: Email address to receive build status"
echo " -u: Update source tree"
echo " -v: Print more detailed progress information"
exit 2
}
# Parse command-line options
args=`getopt b:c:e:vu $*`
if [ $? -ne 0 ]; then
crochet_usage
fi
set -- $args
while true; do
case "$1" in
-b)
BOARD="$2"
shift; shift
;;
-c)
CONFIGFILE="$2"
shift; shift
;;
-e)
option Email "$2"
shift; shift
;;
-u)
UPDATE_SOURCETREE=yes
shift
;;
-v)
VERBOSE=$(($VERBOSE + 1))
shift
;;
--)
shift; break
;;
*)
crochet_usage
esac
done
#
# Load user configuration: This builds the strategy.
#
if [ -z "$BOARD" ] && [ -z "$CONFIGFILE" ]; then
crochet_usage
fi
if [ -n "$BOARD" ]; then
board_setup $BOARD
fi
if [ -n "$CONFIGFILE" ]; then
load_config $CONFIGFILE
fi
# Initialize the work directory, clean out old logs.
mkdir -p ${WORKDIR}
rm -f ${WORKDIR}/*.log
# Details for the email reports
BUILDCONFIG="TOPDIR: ${TOPDIR}
SOURCE TREE: ${FREEBSD_SRC}"
#
# What to do when things go wrong.
#
handle_trap ( ) {
disk_unmount_all
email_status "${BUILDCONFIG}" "Crochet build failed"
echo
echo 'ERROR: Exiting at '`date`
echo
exit 2
}
trap handle_trap INT QUIT KILL
if [ -n "${UPDATE_SOURCETREE}" ]; then
scm_update_sourcetree
fi
#
# show source revision
#
scm_get_revision
#
# get the OS version from the source tree
#
freebsd_src_version
#
# Run the strategy to do all of the work.
#
email_status "${BUILDCONFIG}" "Crochet build commenced"
run_strategy
# Clear the error exit handler
trap - INT QUIT KILL EXIT
# Clean up
disk_unmount_all
email_status "${BUILDCONFIG}" "Crochet build finished"
echo 'Finished at '`date`