blob: ec8e20350a648ca0f47f152f9650f6fa6e421a0b [file] [log] [blame]
Masahiro Yamada0a9064f2014-07-30 14:08:13 +09001#!/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() {
24 rm -f $TMP_FILE
25 exit
26}
27trap clean_up HUP INT TERM
28
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"
34 echo " -r list redundant entries when merging fragments"
35 echo " -O dir to put generated output files"
36}
37
Masahiro Yamada9b5f0b12015-07-05 01:56:54 +090038RUNMAKE=true
Masahiro Yamada0a9064f2014-07-30 14:08:13 +090039ALLTARGET=alldefconfig
40WARNREDUN=false
41OUTPUT=.
42
43while true; do
44 case $1 in
45 "-n")
46 ALLTARGET=allnoconfig
47 shift
48 continue
49 ;;
50 "-m")
Masahiro Yamada9b5f0b12015-07-05 01:56:54 +090051 RUNMAKE=false
Masahiro Yamada0a9064f2014-07-30 14:08:13 +090052 shift
53 continue
54 ;;
55 "-h")
56 usage
57 exit
58 ;;
59 "-r")
60 WARNREDUN=true
61 shift
62 continue
63 ;;
64 "-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 ;;
74 *)
75 break
76 ;;
77 esac
78done
79
Masahiro Yamada9b5f0b12015-07-05 01:56:54 +090080if [ "$#" -lt 2 ] ; then
81 usage
82 exit
83fi
84
Masahiro Yamada0a9064f2014-07-30 14:08:13 +090085INITFILE=$1
86shift;
87
Masahiro Yamada9b5f0b12015-07-05 01:56:54 +090088if [ ! -r "$INITFILE" ]; then
89 echo "The base file '$INITFILE' does not exist. Exit." >&2
90 exit 1
91fi
92
Masahiro Yamada0a9064f2014-07-30 14:08:13 +090093MERGE_LIST=$*
94SED_CONFIG_EXP="s/^\(# \)\{0,1\}\(CONFIG_[a-zA-Z0-9_]*\)[= ].*/\2/p"
95TMP_FILE=$(mktemp ./.tmp.config.XXXXXXXXXX)
96
97echo "Using $INITFILE as base"
98cat $INITFILE > $TMP_FILE
99
Robert P. J. Day5699ea62014-10-21 16:44:32 -0400100# Merge files, printing warnings on overridden values
Masahiro Yamada0a9064f2014-07-30 14:08:13 +0900101for MERGE_FILE in $MERGE_LIST ; do
102 echo "Merging $MERGE_FILE"
103 CFG_LIST=$(sed -n "$SED_CONFIG_EXP" $MERGE_FILE)
104
105 for CFG in $CFG_LIST ; do
Masahiro Yamada9b5f0b12015-07-05 01:56:54 +0900106 grep -q -w $CFG $TMP_FILE || continue
107 PREV_VAL=$(grep -w $CFG $TMP_FILE)
108 NEW_VAL=$(grep -w $CFG $MERGE_FILE)
109 if [ "x$PREV_VAL" != "x$NEW_VAL" ] ; then
Masahiro Yamada0a9064f2014-07-30 14:08:13 +0900110 echo Value of $CFG is redefined by fragment $MERGE_FILE:
111 echo Previous value: $PREV_VAL
112 echo New value: $NEW_VAL
113 echo
Masahiro Yamada9b5f0b12015-07-05 01:56:54 +0900114 elif [ "$WARNREDUN" = "true" ]; then
Masahiro Yamada0a9064f2014-07-30 14:08:13 +0900115 echo Value of $CFG is redundant by fragment $MERGE_FILE:
Masahiro Yamada0a9064f2014-07-30 14:08:13 +0900116 fi
Masahiro Yamada9b5f0b12015-07-05 01:56:54 +0900117 sed -i "/$CFG[ =]/d" $TMP_FILE
Masahiro Yamada0a9064f2014-07-30 14:08:13 +0900118 done
119 cat $MERGE_FILE >> $TMP_FILE
120done
121
Masahiro Yamada9b5f0b12015-07-05 01:56:54 +0900122if [ "$RUNMAKE" = "false" ]; then
Masahiro Yamada0a9064f2014-07-30 14:08:13 +0900123 cp $TMP_FILE $OUTPUT/.config
124 echo "#"
125 echo "# merged configuration written to $OUTPUT/.config (needs make)"
126 echo "#"
127 clean_up
128 exit
129fi
130
131# If we have an output dir, setup the O= argument, otherwise leave
132# it blank, since O=. will create an unnecessary ./source softlink
133OUTPUT_ARG=""
134if [ "$OUTPUT" != "." ] ; then
135 OUTPUT_ARG="O=$OUTPUT"
136fi
137
138
139# Use the merged file as the starting point for:
140# alldefconfig: Fills in any missing symbols with Kconfig default
141# allnoconfig: Fills in any missing symbols with # CONFIG_* is not set
142make KCONFIG_ALLCONFIG=$TMP_FILE $OUTPUT_ARG $ALLTARGET
143
144
145# Check all specified config values took (might have missed-dependency issues)
146for CFG in $(sed -n "$SED_CONFIG_EXP" $TMP_FILE); do
147
148 REQUESTED_VAL=$(grep -w -e "$CFG" $TMP_FILE)
149 ACTUAL_VAL=$(grep -w -e "$CFG" $OUTPUT/.config)
150 if [ "x$REQUESTED_VAL" != "x$ACTUAL_VAL" ] ; then
151 echo "Value requested for $CFG not in final .config"
152 echo "Requested value: $REQUESTED_VAL"
153 echo "Actual value: $ACTUAL_VAL"
154 echo ""
155 fi
156done
157
158clean_up