File tree Expand file tree Collapse file tree 4 files changed +12
-7
lines changed Expand file tree Collapse file tree 4 files changed +12
-7
lines changed Original file line number Diff line number Diff line change 1
1
[ -r build/config/options ] && . build/config/options
2
- [ -r build/config/options-doozer ] && . build/config/options-doozer
3
- [ -r build/config/options-jenkins ] && . build/config/options-jenkins
2
+
4
3
. config/path
Original file line number Diff line number Diff line change 2
2
3
3
set -e
4
4
5
+ # ################################
6
+ # Global settings #
7
+ # ################################
8
+
9
+ [ -r build/config/global-settings ] && . build/config/global-settings
10
+
5
11
# ################################
6
12
# Target system path definition #
7
13
# ################################
Original file line number Diff line number Diff line change @@ -52,10 +52,10 @@ echo "######################"
52
52
# Build with the maximum speed (maybe we should try too without MAKECFLAGS set)
53
53
DOOZER_CONCURRENCY_MAKE_LEVEL=$( echo $MAKEFLAGS | cut -d, -f2)
54
54
echo " Using DOOZER_CONCURRENCY_MAKE_LEVEL=$DOOZER_CONCURRENCY_MAKE_LEVEL : MAKEFLAGS was $MAKEFLAGS "
55
- echo DOOZER_CONCURRENCY_MAKE_LEVEL=$DOOZER_CONCURRENCY_MAKE_LEVEL >> build/config/options-doozer
56
- echo " NO_DEBUG_PKG=yes" >> build/config/options-doozer
57
- echo " DOOZER_TARGET_CCACHE=/project/.ccache-$1 " >> build/config/options-doozer
58
- echo " DO_NOT_SET_ROOT=yes" >> build/config/options-doozer
55
+ echo DOOZER_CONCURRENCY_MAKE_LEVEL=$DOOZER_CONCURRENCY_MAKE_LEVEL >> build/config/global-settings
56
+ echo " NO_DEBUG_PKG=yes" >> build/config/global-settings
57
+ echo " DOOZER_TARGET_CCACHE=/project/.ccache-$1 " >> build/config/global-settings
58
+ echo " DO_NOT_SET_ROOT=yes" >> build/config/global-settings
59
59
60
60
61
61
./scripts/loadcfg $1 || exit 1
Original file line number Diff line number Diff line change @@ -51,5 +51,5 @@ cd $BUILD/kconfig-frontends-*
51
51
# conf --silentoldconfig needs these folders
52
52
mkdir -p include/config include/generated
53
53
54
- ${conf_tool} ${conf_tool_options} ../../.. /config/Kconfig.main
54
+ ${conf_tool} ${conf_tool_options} $ROOT /config/Kconfig.main
55
55
You can’t perform that action at this time.
0 commit comments