blob: c12a640166e1d2fe7d81fa7d32254801f9a44280 [file] [log] [blame]
xiaobo gue6c46862018-01-10 18:58:09 +08001
2declare UBOOT_SRC_FOLDER="bl33"
3declare MAIN_FOLDER=""
4export UBOOT_SRC_FOLDER MAIN_FOLDER
5
6# build environment
7BUILD_FOLDER="build/"
8FIP_FOLDER="fip/"
9MANIFEST=".repo/manifest.xml"
10FIP_BUILD_FOLDER="fip/build/"
11
12# include uboot pre-build defines
13SOURCE_FILE=("bl33/build/.config")
14CONFIG_FILE=("bl33/build/include/autoconf.mk")
15
16# variables
17declare BOARD_DIR=""
18declare CUR_SOC=""
19
20# current branch/path/rev/name/remote in xml
21declare -a GIT_INFO=("branch", "path", "rev", "name", "remote")
22
23function export_variables() {
24 export BUILD_FOLDER
25 export FIP_FOLDER
26 export MANIFEST
27 export CUR_SOC
28 export BOARD_DIR
29}