blob: 2ab91b9b100dc6f6cfba663d05580e14930a3def [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"
Zhangfei Gao409f1172012-12-03 15:36:10 +080035 echo " -O dir to put generated output files"
john stultz4b5f7212012-01-10 15:41:08 -080036}
37
38MAKE=true
39ALLTARGET=alldefconfig
John Stultz9875c422012-03-23 12:52:08 -070040WARNREDUN=false
Zhangfei Gao409f1172012-12-03 15:36:10 +080041OUTPUT=.
john stultz4b5f7212012-01-10 15:41:08 -080042
43while true; do
44 case $1 in
45 "-n")
46 ALLTARGET=allnoconfig
47 shift
48 continue
49 ;;
50 "-m")
51 MAKE=false
52 shift
53 continue
54 ;;
55 "-h")
56 usage
57 exit
58 ;;
John Stultz9875c422012-03-23 12:52:08 -070059 "-r")
60 WARNREDUN=true
61 shift
62 continue
63 ;;
Zhangfei Gao409f1172012-12-03 15:36:10 +080064 "-O")
65 if [ -d $2 ];then
66 OUTPUT=$(echo $2 | sed 's/\/*$//')
67 else
68 echo "output directory $2 does not exist" 1>&2
69 exit 1
70 fi
71 shift 2
72 continue
73 ;;
john stultz4b5f7212012-01-10 15:41:08 -080074 *)
75 break
76 ;;
77 esac
78done
79
Olof Johansson09950bc2014-12-11 12:55:03 -080080if [ "$#" -lt 2 ] ; then
81 usage
82 exit
83fi
84
Josh Boyer09280612012-02-01 12:01:58 -050085INITFILE=$1
86shift;
john stultz4b5f7212012-01-10 15:41:08 -080087
88MERGE_LIST=$*
89SED_CONFIG_EXP="s/^\(# \)\{0,1\}\(CONFIG_[a-zA-Z0-9_]*\)[= ].*/\2/p"
90TMP_FILE=$(mktemp ./.tmp.config.XXXXXXXXXX)
91
Josh Boyer09280612012-02-01 12:01:58 -050092echo "Using $INITFILE as base"
93cat $INITFILE > $TMP_FILE
94
john stultz4b5f7212012-01-10 15:41:08 -080095# Merge files, printing warnings on overrided values
96for MERGE_FILE in $MERGE_LIST ; do
97 echo "Merging $MERGE_FILE"
98 CFG_LIST=$(sed -n "$SED_CONFIG_EXP" $MERGE_FILE)
99
100 for CFG in $CFG_LIST ; do
101 grep -q -w $CFG $TMP_FILE
102 if [ $? -eq 0 ] ; then
103 PREV_VAL=$(grep -w $CFG $TMP_FILE)
104 NEW_VAL=$(grep -w $CFG $MERGE_FILE)
105 if [ "x$PREV_VAL" != "x$NEW_VAL" ] ; then
106 echo Value of $CFG is redefined by fragment $MERGE_FILE:
107 echo Previous value: $PREV_VAL
108 echo New value: $NEW_VAL
109 echo
John Stultz9875c422012-03-23 12:52:08 -0700110 elif [ "$WARNREDUN" = "true" ]; then
111 echo Value of $CFG is redundant by fragment $MERGE_FILE:
john stultz4b5f7212012-01-10 15:41:08 -0800112 fi
113 sed -i "/$CFG[ =]/d" $TMP_FILE
114 fi
115 done
116 cat $MERGE_FILE >> $TMP_FILE
117done
118
119if [ "$MAKE" = "false" ]; then
Zhangfei Gao409f1172012-12-03 15:36:10 +0800120 cp $TMP_FILE $OUTPUT/.config
john stultz4b5f7212012-01-10 15:41:08 -0800121 echo "#"
Zhangfei Gao409f1172012-12-03 15:36:10 +0800122 echo "# merged configuration written to $OUTPUT/.config (needs make)"
john stultz4b5f7212012-01-10 15:41:08 -0800123 echo "#"
124 clean_up
125 exit
126fi
127
John Stultza45c7df2013-04-04 12:02:59 -0700128# If we have an output dir, setup the O= argument, otherwise leave
129# it blank, since O=. will create an unnecessary ./source softlink
130OUTPUT_ARG=""
131if [ "$OUTPUT" != "." ] ; then
132 OUTPUT_ARG="O=$OUTPUT"
133fi
134
135
john stultz4b5f7212012-01-10 15:41:08 -0800136# Use the merged file as the starting point for:
137# alldefconfig: Fills in any missing symbols with Kconfig default
138# allnoconfig: Fills in any missing symbols with # CONFIG_* is not set
John Stultza45c7df2013-04-04 12:02:59 -0700139make KCONFIG_ALLCONFIG=$TMP_FILE $OUTPUT_ARG $ALLTARGET
john stultz4b5f7212012-01-10 15:41:08 -0800140
141
142# Check all specified config values took (might have missed-dependency issues)
143for CFG in $(sed -n "$SED_CONFIG_EXP" $TMP_FILE); do
144
John Stultz320d41b2012-01-10 15:41:15 -0800145 REQUESTED_VAL=$(grep -w -e "$CFG" $TMP_FILE)
Zhangfei Gao409f1172012-12-03 15:36:10 +0800146 ACTUAL_VAL=$(grep -w -e "$CFG" $OUTPUT/.config)
john stultz4b5f7212012-01-10 15:41:08 -0800147 if [ "x$REQUESTED_VAL" != "x$ACTUAL_VAL" ] ; then
148 echo "Value requested for $CFG not in final .config"
149 echo "Requested value: $REQUESTED_VAL"
150 echo "Actual value: $ACTUAL_VAL"
151 echo ""
152 fi
153done
154
155clean_up