[PATCH 07/10] MAKEALL: support Kconfig fragments
Sascha Hauer
s.hauer at pengutronix.de
Tue May 2 00:39:22 PDT 2023
Add the ability to add kconfig fragments before building a defconfig.
The fragments can be added by either the -k option or by setting
the KCONFIG_ADD envrionment variable to a list of filenames.
Signed-off-by: Sascha Hauer <s.hauer at pengutronix.de>
---
MAKEALL | 26 ++++++++++++++++++--------
1 file changed, 18 insertions(+), 8 deletions(-)
diff --git a/MAKEALL b/MAKEALL
index 75f2f63a1d..3ea0087a29 100755
--- a/MAKEALL
+++ b/MAKEALL
@@ -43,13 +43,14 @@ usage() {
echo "CONFIG=./MAKEALL.cfg ./MAKEALL"
echo ""
echo "you can specify via env or option"
- echo "env option"
- echo "ARCH -a arch"
- echo "CONFIG -c config"
- echo "JOBS -j jobs"
- echo "BUILDDIR -O build dir"
- echo "LOGDIR -l log dir"
- echo "REGEX -e regex"
+ echo "env option"
+ echo "ARCH -a arch"
+ echo "CONFIG -c config"
+ echo "JOBS -j jobs"
+ echo "BUILDDIR -O build dir"
+ echo "LOGDIR -l log dir"
+ echo "REGEX -e regex"
+ echo "KCONFIG_ADD -k kconfig fragment"
echo ""
}
@@ -91,6 +92,12 @@ do_build_target() {
MAKE="make -j${JOBS} ARCH=${arch} O=${BUILDDIR}"
${MAKE} ${target} 2>&1 > "${log_report}" | tee "${log_err}"
+ for i in ${KCONFIG_ADD}; do
+ ./scripts/kconfig/merge_config.sh -m -O \
+ ${BUILDDIR} ${BUILDDIR}/.config $i \
+ 2>&1 > "${log_report}" | tee "${log_err}"
+ done
+ ${MAKE} olddefconfig 2>&1 > "${log_report}" | tee "${log_err}"
check_pipe_status
configure_result="$?"
@@ -182,7 +189,7 @@ do_build_all() {
return $build_target
}
-while getopts "hc:j:O:l:a:e:" Option
+while getopts "hc:j:O:l:a:e:k:" Option
do
case $Option in
a )
@@ -203,6 +210,9 @@ case $Option in
e )
REGEX=${OPTARG}
;;
+ k )
+ KCONFIG_ADD="${KCONFIG_ADD} ${OPTARG}"
+ ;;
h )
usage
exit 0
--
2.39.2
More information about the barebox
mailing list