blob: 0ef906499646b57293bb85dea54234c601bfcafa [file] [log] [blame]
john stultz4b5f7212012-01-10 15:41:08 -08001#!/bin/sh
2# merge_config.sh - Takes a list of config fragment values, and merges
3# them one by one. Provides warnings on overridden values, and specified
4# values that did not make it to the resulting .config file (due to missed
5# dependencies or config symbol removal).
6#
7# Portions reused from kconf_check and generate_cfg:
8# http://git.yoctoproject.org/cgit/cgit.cgi/yocto-kernel-tools/tree/tools/kconf_check
9# http://git.yoctoproject.org/cgit/cgit.cgi/yocto-kernel-tools/tree/tools/generate_cfg
10#
11# Copyright (c) 2009-2010 Wind River Systems, Inc.
12# Copyright 2011 Linaro
13#
14# This program is free software; you can redistribute it and/or modify
15# it under the terms of the GNU General Public License version 2 as
16# published by the Free Software Foundation.
17#
18# This program is distributed in the hope that it will be useful,
19# but WITHOUT ANY WARRANTY; without even the implied warranty of
20# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
21# See the GNU General Public License for more details.
22
23clean_up() {
Darren Hartc0c0cda2012-01-10 15:41:12 -080024 rm -f $TMP_FILE
25 exit
john stultz4b5f7212012-01-10 15:41:08 -080026}
Darren Hart041b78c2012-01-10 15:41:10 -080027trap clean_up HUP INT TERM
john stultz4b5f7212012-01-10 15:41:08 -080028
29usage() {
30 echo "Usage: $0 [OPTIONS] [CONFIG [...]]"
31 echo " -h display this help text"
32 echo " -m only merge the fragments, do not execute the make command"
33 echo " -n use allnoconfig instead of alldefconfig"
John Stultz9875c422012-03-23 12:52:08 -070034 echo " -r list redundant entries when merging fragments"
Gabriel de Perthuised94fea2015-10-14 16:04:20 +020035 echo " -O dir to put generated output files. Consider setting \$KCONFIG_CONFIG instead."
Petr Vorel2cd3faf2018-10-29 22:10:58 +010036 echo
37 echo "Used prefix: '$CONFIG_PREFIX'. You can redefine it with \$CONFIG_ environment variable."
john stultz4b5f7212012-01-10 15:41:08 -080038}
39
Masahiro Yamadabc8f8f52015-03-13 15:21:42 +090040RUNMAKE=true
john stultz4b5f7212012-01-10 15:41:08 -080041ALLTARGET=alldefconfig
John Stultz9875c422012-03-23 12:52:08 -070042WARNREDUN=false
Zhangfei Gao409f1172012-12-03 15:36:10 +080043OUTPUT=.
Petr Vorel2cd3faf2018-10-29 22:10:58 +010044CONFIG_PREFIX=${CONFIG_-CONFIG_}
john stultz4b5f7212012-01-10 15:41:08 -080045
46while true; do
47 case $1 in
48 "-n")
49 ALLTARGET=allnoconfig
50 shift
51 continue
52 ;;
53 "-m")
Masahiro Yamadabc8f8f52015-03-13 15:21:42 +090054 RUNMAKE=false
john stultz4b5f7212012-01-10 15:41:08 -080055 shift
56 continue
57 ;;
58 "-h")
59 usage
60 exit
61 ;;
John Stultz9875c422012-03-23 12:52:08 -070062 "-r")
63 WARNREDUN=true
64 shift
65 continue
66 ;;
Zhangfei Gao409f1172012-12-03 15:36:10 +080067 "-O")
68 if [ -d $2 ];then
69 OUTPUT=$(echo $2 | sed 's/\/*$//')
70 else
71 echo "output directory $2 does not exist" 1>&2
72 exit 1
73 fi
74 shift 2
75 continue
76 ;;
john stultz4b5f7212012-01-10 15:41:08 -080077 *)
78 break
79 ;;
80 esac
81done
82
Gabriel de Perthuis2163e7b2015-10-14 16:04:21 +020083if [ "$#" -lt 1 ] ; then
Olof Johansson09950bc2014-12-11 12:55:03 -080084 usage
85 exit
86fi
87
Gabriel de Perthuised94fea2015-10-14 16:04:20 +020088if [ -z "$KCONFIG_CONFIG" ]; then
89 if [ "$OUTPUT" != . ]; then
90 KCONFIG_CONFIG=$(readlink -m -- "$OUTPUT/.config")
91 else
92 KCONFIG_CONFIG=.config
93 fi
94fi
95
Josh Boyer09280612012-02-01 12:01:58 -050096INITFILE=$1
97shift;
john stultz4b5f7212012-01-10 15:41:08 -080098
Masahiro Yamadab9fe99c2015-03-13 15:21:39 +090099if [ ! -r "$INITFILE" ]; then
100 echo "The base file '$INITFILE' does not exist. Exit." >&2
101 exit 1
102fi
103
john stultz4b5f7212012-01-10 15:41:08 -0800104MERGE_LIST=$*
Masahiro Yamada6bbe43852018-11-05 17:19:36 +0900105SED_CONFIG_EXP1="s/^\(${CONFIG_PREFIX}[a-zA-Z0-9_]*\)=.*/\1/p"
106SED_CONFIG_EXP2="s/^# \(${CONFIG_PREFIX}[a-zA-Z0-9_]*\) is not set$/\1/p"
Petr Vorel2cd3faf2018-10-29 22:10:58 +0100107
john stultz4b5f7212012-01-10 15:41:08 -0800108TMP_FILE=$(mktemp ./.tmp.config.XXXXXXXXXX)
109
Josh Boyer09280612012-02-01 12:01:58 -0500110echo "Using $INITFILE as base"
111cat $INITFILE > $TMP_FILE
112
Masahiro Yamada4980bdf2014-12-03 15:55:49 +0900113# Merge files, printing warnings on overridden values
john stultz4b5f7212012-01-10 15:41:08 -0800114for MERGE_FILE in $MERGE_LIST ; do
115 echo "Merging $MERGE_FILE"
Sam Bobroff78a68542015-07-20 15:12:19 +1000116 if [ ! -r "$MERGE_FILE" ]; then
117 echo "The merge file '$MERGE_FILE' does not exist. Exit." >&2
118 exit 1
119 fi
Masahiro Yamada6bbe43852018-11-05 17:19:36 +0900120 CFG_LIST=$(sed -n -e "$SED_CONFIG_EXP1" -e "$SED_CONFIG_EXP2" $MERGE_FILE)
john stultz4b5f7212012-01-10 15:41:08 -0800121
122 for CFG in $CFG_LIST ; do
Masahiro Yamada3a975b82015-03-13 15:21:41 +0900123 grep -q -w $CFG $TMP_FILE || continue
124 PREV_VAL=$(grep -w $CFG $TMP_FILE)
125 NEW_VAL=$(grep -w $CFG $MERGE_FILE)
126 if [ "x$PREV_VAL" != "x$NEW_VAL" ] ; then
john stultz4b5f7212012-01-10 15:41:08 -0800127 echo Value of $CFG is redefined by fragment $MERGE_FILE:
128 echo Previous value: $PREV_VAL
129 echo New value: $NEW_VAL
130 echo
Masahiro Yamada3a975b82015-03-13 15:21:41 +0900131 elif [ "$WARNREDUN" = "true" ]; then
John Stultz9875c422012-03-23 12:52:08 -0700132 echo Value of $CFG is redundant by fragment $MERGE_FILE:
john stultz4b5f7212012-01-10 15:41:08 -0800133 fi
Masahiro Yamada3a975b82015-03-13 15:21:41 +0900134 sed -i "/$CFG[ =]/d" $TMP_FILE
john stultz4b5f7212012-01-10 15:41:08 -0800135 done
136 cat $MERGE_FILE >> $TMP_FILE
137done
138
Masahiro Yamadabc8f8f52015-03-13 15:21:42 +0900139if [ "$RUNMAKE" = "false" ]; then
Gabriel de Perthuised94fea2015-10-14 16:04:20 +0200140 cp -T -- "$TMP_FILE" "$KCONFIG_CONFIG"
john stultz4b5f7212012-01-10 15:41:08 -0800141 echo "#"
Gabriel de Perthuised94fea2015-10-14 16:04:20 +0200142 echo "# merged configuration written to $KCONFIG_CONFIG (needs make)"
john stultz4b5f7212012-01-10 15:41:08 -0800143 echo "#"
144 clean_up
145 exit
146fi
147
John Stultza45c7df2013-04-04 12:02:59 -0700148# If we have an output dir, setup the O= argument, otherwise leave
149# it blank, since O=. will create an unnecessary ./source softlink
150OUTPUT_ARG=""
151if [ "$OUTPUT" != "." ] ; then
152 OUTPUT_ARG="O=$OUTPUT"
153fi
154
155
john stultz4b5f7212012-01-10 15:41:08 -0800156# Use the merged file as the starting point for:
157# alldefconfig: Fills in any missing symbols with Kconfig default
158# allnoconfig: Fills in any missing symbols with # CONFIG_* is not set
John Stultza45c7df2013-04-04 12:02:59 -0700159make KCONFIG_ALLCONFIG=$TMP_FILE $OUTPUT_ARG $ALLTARGET
john stultz4b5f7212012-01-10 15:41:08 -0800160
161
162# Check all specified config values took (might have missed-dependency issues)
Masahiro Yamada6bbe43852018-11-05 17:19:36 +0900163for CFG in $(sed -n -e "$SED_CONFIG_EXP1" -e "$SED_CONFIG_EXP2" $TMP_FILE); do
john stultz4b5f7212012-01-10 15:41:08 -0800164
John Stultz320d41bb2012-01-10 15:41:15 -0800165 REQUESTED_VAL=$(grep -w -e "$CFG" $TMP_FILE)
Gabriel de Perthuised94fea2015-10-14 16:04:20 +0200166 ACTUAL_VAL=$(grep -w -e "$CFG" "$KCONFIG_CONFIG")
john stultz4b5f7212012-01-10 15:41:08 -0800167 if [ "x$REQUESTED_VAL" != "x$ACTUAL_VAL" ] ; then
168 echo "Value requested for $CFG not in final .config"
169 echo "Requested value: $REQUESTED_VAL"
170 echo "Actual value: $ACTUAL_VAL"
171 echo ""
172 fi
173done
174
175clean_up