merge_config.sh 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. #!/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. clean_up() {
  23. rm -f $TMP_FILE
  24. exit
  25. }
  26. trap clean_up HUP INT TERM
  27. usage() {
  28. echo "Usage: $0 [OPTIONS] [CONFIG [...]]"
  29. echo " -h display this help text"
  30. echo " -m only merge the fragments, do not execute the make command"
  31. echo " -n use allnoconfig instead of alldefconfig"
  32. echo " -r list redundant entries when merging fragments"
  33. echo " -O dir to put generated output files"
  34. echo " -e colon-separated list of br2-external trees to use (optional)"
  35. }
  36. MAKE=true
  37. ALLTARGET=alldefconfig
  38. WARNREDUN=false
  39. OUTPUT=.
  40. while true; do
  41. case $1 in
  42. "-n")
  43. ALLTARGET=allnoconfig
  44. shift
  45. continue
  46. ;;
  47. "-m")
  48. MAKE=false
  49. shift
  50. continue
  51. ;;
  52. "-h")
  53. usage
  54. exit
  55. ;;
  56. "-r")
  57. WARNREDUN=true
  58. shift
  59. continue
  60. ;;
  61. "-O")
  62. if [ -d $2 ];then
  63. OUTPUT=$(echo $2 | sed 's/\/*$//')
  64. else
  65. echo "output directory $2 does not exist" 1>&2
  66. exit 1
  67. fi
  68. shift 2
  69. continue
  70. ;;
  71. "-e")
  72. EXTERNAL_ARG="BR2_EXTERNAL=$2"
  73. shift 2
  74. continue
  75. ;;
  76. *)
  77. break
  78. ;;
  79. esac
  80. done
  81. INITFILE=$1
  82. shift;
  83. MERGE_LIST=$*
  84. SED_CONFIG_EXP="s/^\(# \)\{0,1\}\(CONFIG_[a-zA-Z0-9_]*\)[= ].*/\2/p"
  85. TMP_FILE=$(mktemp -t .tmp.config.XXXXXXXXXX)
  86. echo "Using $INITFILE as base"
  87. cat $INITFILE > $TMP_FILE
  88. # Merge files, printing warnings on overrided values
  89. for MERGE_FILE in $MERGE_LIST ; do
  90. echo "Merging $MERGE_FILE"
  91. CFG_LIST=$(sed -n "$SED_CONFIG_EXP" $MERGE_FILE)
  92. for CFG in $CFG_LIST ; do
  93. grep -q -w $CFG $TMP_FILE
  94. if [ $? -eq 0 ] ; then
  95. PREV_VAL=$(grep -w $CFG $TMP_FILE)
  96. NEW_VAL=$(grep -w $CFG $MERGE_FILE)
  97. if [ "x$PREV_VAL" != "x$NEW_VAL" ] ; then
  98. echo Value of $CFG is redefined by fragment $MERGE_FILE:
  99. echo Previous value: $PREV_VAL
  100. echo New value: $NEW_VAL
  101. echo
  102. elif [ "$WARNREDUN" = "true" ]; then
  103. echo Value of $CFG is redundant by fragment $MERGE_FILE:
  104. fi
  105. sed -i "/$CFG[ =]/d" $TMP_FILE
  106. fi
  107. done
  108. cat $MERGE_FILE >> $TMP_FILE
  109. done
  110. if [ "$MAKE" = "false" ]; then
  111. cp $TMP_FILE $OUTPUT/.config
  112. echo "#"
  113. echo "# merged configuration written to $OUTPUT/.config (needs make)"
  114. echo "#"
  115. clean_up
  116. exit
  117. fi
  118. # If we have an output dir, setup the O= argument, otherwise leave
  119. # it blank, since O=. will create an unnecessary ./source softlink
  120. OUTPUT_ARG=""
  121. if [ "$OUTPUT" != "." ] ; then
  122. OUTPUT_ARG="O=$OUTPUT"
  123. fi
  124. # Use the merged file as the starting point for:
  125. # alldefconfig: Fills in any missing symbols with Kconfig default
  126. # allnoconfig: Fills in any missing symbols with # CONFIG_* is not set
  127. make KCONFIG_ALLCONFIG=$TMP_FILE $EXTERNAL_ARG $OUTPUT_ARG $ALLTARGET
  128. # Check all specified config values took (might have missed-dependency issues)
  129. for CFG in $(sed -n "$SED_CONFIG_EXP" $TMP_FILE); do
  130. REQUESTED_VAL=$(grep -w -e "$CFG" $TMP_FILE)
  131. ACTUAL_VAL=$(grep -w -e "$CFG" $OUTPUT/.config)
  132. if [ "x$REQUESTED_VAL" != "x$ACTUAL_VAL" ] ; then
  133. echo "Value requested for $CFG not in final .config"
  134. echo "Requested value: $REQUESTED_VAL"
  135. echo "Actual value: $ACTUAL_VAL"
  136. echo ""
  137. fi
  138. done
  139. clean_up