Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 1 | #!/usr/bin/env python2 |
| 2 | # |
| 3 | # Author: Masahiro Yamada <yamada.masahiro@socionext.com> |
| 4 | # |
| 5 | # SPDX-License-Identifier: GPL-2.0+ |
| 6 | # |
| 7 | |
| 8 | """ |
| 9 | Move config options from headers to defconfig files. |
| 10 | |
| 11 | Since Kconfig was introduced to U-Boot, we have worked on moving |
| 12 | config options from headers to Kconfig (defconfig). |
| 13 | |
| 14 | This tool intends to help this tremendous work. |
| 15 | |
| 16 | |
| 17 | Usage |
| 18 | ----- |
| 19 | |
Masahiro Yamada | b6ef393 | 2016-05-19 15:51:58 +0900 | [diff] [blame] | 20 | First, you must edit the Kconfig to add the menu entries for the configs |
Joe Hershberger | 96464ba | 2015-05-19 13:21:17 -0500 | [diff] [blame] | 21 | you are moving. |
| 22 | |
Masahiro Yamada | b6ef393 | 2016-05-19 15:51:58 +0900 | [diff] [blame] | 23 | And then run this tool giving CONFIG names you want to move. |
| 24 | For example, if you want to move CONFIG_CMD_USB and CONFIG_SYS_TEXT_BASE, |
| 25 | simply type as follows: |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 26 | |
Masahiro Yamada | b6ef393 | 2016-05-19 15:51:58 +0900 | [diff] [blame] | 27 | $ tools/moveconfig.py CONFIG_CMD_USB CONFIG_SYS_TEXT_BASE |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 28 | |
Masahiro Yamada | b6ef393 | 2016-05-19 15:51:58 +0900 | [diff] [blame] | 29 | The tool walks through all the defconfig files and move the given CONFIGs. |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 30 | |
| 31 | The log is also displayed on the terminal. |
| 32 | |
Masahiro Yamada | 1d08556 | 2016-05-19 15:52:02 +0900 | [diff] [blame] | 33 | The log is printed for each defconfig as follows: |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 34 | |
Masahiro Yamada | 1d08556 | 2016-05-19 15:52:02 +0900 | [diff] [blame] | 35 | <defconfig_name> |
| 36 | <action1> |
| 37 | <action2> |
| 38 | <action3> |
| 39 | ... |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 40 | |
Masahiro Yamada | 1d08556 | 2016-05-19 15:52:02 +0900 | [diff] [blame] | 41 | <defconfig_name> is the name of the defconfig. |
| 42 | |
| 43 | <action*> shows what the tool did for that defconfig. |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 44 | It looks like one of the followings: |
| 45 | |
| 46 | - Move 'CONFIG_... ' |
| 47 | This config option was moved to the defconfig |
| 48 | |
Masahiro Yamada | cc00829 | 2016-05-19 15:51:56 +0900 | [diff] [blame] | 49 | - CONFIG_... is not defined in Kconfig. Do nothing. |
| 50 | The entry for this CONFIG was not found in Kconfig. |
| 51 | There are two common cases: |
| 52 | - You forgot to create an entry for the CONFIG before running |
| 53 | this tool, or made a typo in a CONFIG passed to this tool. |
| 54 | - The entry was hidden due to unmet 'depends on'. |
| 55 | This is correct behavior. |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 56 | |
Masahiro Yamada | cc00829 | 2016-05-19 15:51:56 +0900 | [diff] [blame] | 57 | - 'CONFIG_...' is the same as the define in Kconfig. Do nothing. |
| 58 | The define in the config header matched the one in Kconfig. |
| 59 | We do not need to touch it. |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 60 | |
| 61 | - Undefined. Do nothing. |
| 62 | This config option was not found in the config header. |
| 63 | Nothing to do. |
| 64 | |
Masahiro Yamada | 90ed6cb | 2016-05-19 15:51:53 +0900 | [diff] [blame] | 65 | - Compiler is missing. Do nothing. |
| 66 | The compiler specified for this architecture was not found |
| 67 | in your PATH environment. |
| 68 | (If -e option is passed, the tool exits immediately.) |
| 69 | |
| 70 | - Failed to process. |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 71 | An error occurred during processing this defconfig. Skipped. |
| 72 | (If -e option is passed, the tool exits immediately on error.) |
| 73 | |
| 74 | Finally, you will be asked, Clean up headers? [y/n]: |
| 75 | |
| 76 | If you say 'y' here, the unnecessary config defines are removed |
| 77 | from the config headers (include/configs/*.h). |
| 78 | It just uses the regex method, so you should not rely on it. |
| 79 | Just in case, please do 'git diff' to see what happened. |
| 80 | |
| 81 | |
Masahiro Yamada | b6ef393 | 2016-05-19 15:51:58 +0900 | [diff] [blame] | 82 | How does it work? |
| 83 | ----------------- |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 84 | |
| 85 | This tool runs configuration and builds include/autoconf.mk for every |
| 86 | defconfig. The config options defined in Kconfig appear in the .config |
| 87 | file (unless they are hidden because of unmet dependency.) |
| 88 | On the other hand, the config options defined by board headers are seen |
| 89 | in include/autoconf.mk. The tool looks for the specified options in both |
Masahiro Yamada | b6ef393 | 2016-05-19 15:51:58 +0900 | [diff] [blame] | 90 | of them to decide the appropriate action for the options. If the given |
| 91 | config option is found in the .config, but its value does not match the |
| 92 | one from the board header, the config option in the .config is replaced |
| 93 | with the define in the board header. Then, the .config is synced by |
| 94 | "make savedefconfig" and the defconfig is updated with it. |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 95 | |
| 96 | For faster processing, this tool handles multi-threading. It creates |
| 97 | separate build directories where the out-of-tree build is run. The |
| 98 | temporary build directories are automatically created and deleted as |
| 99 | needed. The number of threads are chosen based on the number of the CPU |
| 100 | cores of your system although you can change it via -j (--jobs) option. |
| 101 | |
| 102 | |
| 103 | Toolchains |
| 104 | ---------- |
| 105 | |
| 106 | Appropriate toolchain are necessary to generate include/autoconf.mk |
| 107 | for all the architectures supported by U-Boot. Most of them are available |
| 108 | at the kernel.org site, some are not provided by kernel.org. |
| 109 | |
| 110 | The default per-arch CROSS_COMPILE used by this tool is specified by |
| 111 | the list below, CROSS_COMPILE. You may wish to update the list to |
| 112 | use your own. Instead of modifying the list directly, you can give |
| 113 | them via environments. |
| 114 | |
| 115 | |
| 116 | Available options |
| 117 | ----------------- |
| 118 | |
| 119 | -c, --color |
| 120 | Surround each portion of the log with escape sequences to display it |
| 121 | in color on the terminal. |
| 122 | |
Joe Hershberger | 91040e8 | 2015-05-19 13:21:19 -0500 | [diff] [blame] | 123 | -d, --defconfigs |
| 124 | Specify a file containing a list of defconfigs to move |
| 125 | |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 126 | -n, --dry-run |
Masahiro Yamada | b6ef393 | 2016-05-19 15:51:58 +0900 | [diff] [blame] | 127 | Perform a trial run that does not make any changes. It is useful to |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 128 | see what is going to happen before one actually runs it. |
| 129 | |
| 130 | -e, --exit-on-error |
| 131 | Exit immediately if Make exits with a non-zero status while processing |
| 132 | a defconfig file. |
| 133 | |
Joe Hershberger | 2144f88 | 2015-05-19 13:21:20 -0500 | [diff] [blame] | 134 | -H, --headers-only |
| 135 | Only cleanup the headers; skip the defconfig processing |
| 136 | |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 137 | -j, --jobs |
| 138 | Specify the number of threads to run simultaneously. If not specified, |
| 139 | the number of threads is the same as the number of CPU cores. |
| 140 | |
Joe Hershberger | 95bf9c7 | 2015-05-19 13:21:24 -0500 | [diff] [blame] | 141 | -v, --verbose |
| 142 | Show any build errors as boards are built |
| 143 | |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 144 | To see the complete list of supported options, run |
| 145 | |
| 146 | $ tools/moveconfig.py -h |
| 147 | |
| 148 | """ |
| 149 | |
| 150 | import fnmatch |
| 151 | import multiprocessing |
| 152 | import optparse |
| 153 | import os |
| 154 | import re |
| 155 | import shutil |
| 156 | import subprocess |
| 157 | import sys |
| 158 | import tempfile |
| 159 | import time |
| 160 | |
| 161 | SHOW_GNU_MAKE = 'scripts/show-gnu-make' |
| 162 | SLEEP_TIME=0.03 |
| 163 | |
| 164 | # Here is the list of cross-tools I use. |
| 165 | # Most of them are available at kernel.org |
| 166 | # (https://www.kernel.org/pub/tools/crosstool/files/bin/), except the followings: |
| 167 | # arc: https://github.com/foss-for-synopsys-dwc-arc-processors/toolchain/releases |
| 168 | # blackfin: http://sourceforge.net/projects/adi-toolchain/files/ |
Bin Meng | 4440ece | 2015-09-25 01:22:39 -0700 | [diff] [blame] | 169 | # nds32: http://osdk.andestech.com/packages/nds32le-linux-glibc-v1.tgz |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 170 | # nios2: https://sourcery.mentor.com/GNUToolchain/subscription42545 |
| 171 | # sh: http://sourcery.mentor.com/public/gnu_toolchain/sh-linux-gnu |
Bin Meng | e8aebc4 | 2016-02-21 21:18:02 -0800 | [diff] [blame] | 172 | # |
| 173 | # openrisc kernel.org toolchain is out of date, download latest one from |
| 174 | # http://opencores.org/or1k/OpenRISC_GNU_tool_chain#Prebuilt_versions |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 175 | CROSS_COMPILE = { |
| 176 | 'arc': 'arc-linux-', |
| 177 | 'aarch64': 'aarch64-linux-', |
| 178 | 'arm': 'arm-unknown-linux-gnueabi-', |
| 179 | 'avr32': 'avr32-linux-', |
| 180 | 'blackfin': 'bfin-elf-', |
| 181 | 'm68k': 'm68k-linux-', |
| 182 | 'microblaze': 'microblaze-linux-', |
| 183 | 'mips': 'mips-linux-', |
| 184 | 'nds32': 'nds32le-linux-', |
| 185 | 'nios2': 'nios2-linux-gnu-', |
Bin Meng | e8aebc4 | 2016-02-21 21:18:02 -0800 | [diff] [blame] | 186 | 'openrisc': 'or1k-elf-', |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 187 | 'powerpc': 'powerpc-linux-', |
| 188 | 'sh': 'sh-linux-gnu-', |
| 189 | 'sparc': 'sparc-linux-', |
| 190 | 'x86': 'i386-linux-' |
| 191 | } |
| 192 | |
| 193 | STATE_IDLE = 0 |
| 194 | STATE_DEFCONFIG = 1 |
| 195 | STATE_AUTOCONF = 2 |
Joe Hershberger | 96464ba | 2015-05-19 13:21:17 -0500 | [diff] [blame] | 196 | STATE_SAVEDEFCONFIG = 3 |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 197 | |
| 198 | ACTION_MOVE = 0 |
Masahiro Yamada | cc00829 | 2016-05-19 15:51:56 +0900 | [diff] [blame] | 199 | ACTION_NO_ENTRY = 1 |
| 200 | ACTION_NO_CHANGE = 2 |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 201 | |
| 202 | COLOR_BLACK = '0;30' |
| 203 | COLOR_RED = '0;31' |
| 204 | COLOR_GREEN = '0;32' |
| 205 | COLOR_BROWN = '0;33' |
| 206 | COLOR_BLUE = '0;34' |
| 207 | COLOR_PURPLE = '0;35' |
| 208 | COLOR_CYAN = '0;36' |
| 209 | COLOR_LIGHT_GRAY = '0;37' |
| 210 | COLOR_DARK_GRAY = '1;30' |
| 211 | COLOR_LIGHT_RED = '1;31' |
| 212 | COLOR_LIGHT_GREEN = '1;32' |
| 213 | COLOR_YELLOW = '1;33' |
| 214 | COLOR_LIGHT_BLUE = '1;34' |
| 215 | COLOR_LIGHT_PURPLE = '1;35' |
| 216 | COLOR_LIGHT_CYAN = '1;36' |
| 217 | COLOR_WHITE = '1;37' |
| 218 | |
| 219 | ### helper functions ### |
| 220 | def get_devnull(): |
| 221 | """Get the file object of '/dev/null' device.""" |
| 222 | try: |
| 223 | devnull = subprocess.DEVNULL # py3k |
| 224 | except AttributeError: |
| 225 | devnull = open(os.devnull, 'wb') |
| 226 | return devnull |
| 227 | |
| 228 | def check_top_directory(): |
| 229 | """Exit if we are not at the top of source directory.""" |
| 230 | for f in ('README', 'Licenses'): |
| 231 | if not os.path.exists(f): |
| 232 | sys.exit('Please run at the top of source directory.') |
| 233 | |
Masahiro Yamada | bd63e5b | 2016-05-19 15:51:54 +0900 | [diff] [blame] | 234 | def check_clean_directory(): |
| 235 | """Exit if the source tree is not clean.""" |
| 236 | for f in ('.config', 'include/config'): |
| 237 | if os.path.exists(f): |
| 238 | sys.exit("source tree is not clean, please run 'make mrproper'") |
| 239 | |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 240 | def get_make_cmd(): |
| 241 | """Get the command name of GNU Make. |
| 242 | |
| 243 | U-Boot needs GNU Make for building, but the command name is not |
| 244 | necessarily "make". (for example, "gmake" on FreeBSD). |
| 245 | Returns the most appropriate command name on your system. |
| 246 | """ |
| 247 | process = subprocess.Popen([SHOW_GNU_MAKE], stdout=subprocess.PIPE) |
| 248 | ret = process.communicate() |
| 249 | if process.returncode: |
| 250 | sys.exit('GNU Make not found') |
| 251 | return ret[0].rstrip() |
| 252 | |
| 253 | def color_text(color_enabled, color, string): |
| 254 | """Return colored string.""" |
| 255 | if color_enabled: |
Masahiro Yamada | 1d08556 | 2016-05-19 15:52:02 +0900 | [diff] [blame] | 256 | # LF should not be surrounded by the escape sequence. |
| 257 | # Otherwise, additional whitespace or line-feed might be printed. |
| 258 | return '\n'.join([ '\033[' + color + 'm' + s + '\033[0m' if s else '' |
| 259 | for s in string.split('\n') ]) |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 260 | else: |
| 261 | return string |
| 262 | |
Masahiro Yamada | 90ed6cb | 2016-05-19 15:51:53 +0900 | [diff] [blame] | 263 | def update_cross_compile(color_enabled): |
Robert P. J. Day | 1cc0a9f | 2016-05-04 04:47:31 -0400 | [diff] [blame] | 264 | """Update per-arch CROSS_COMPILE via environment variables |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 265 | |
| 266 | The default CROSS_COMPILE values are available |
| 267 | in the CROSS_COMPILE list above. |
| 268 | |
Robert P. J. Day | 1cc0a9f | 2016-05-04 04:47:31 -0400 | [diff] [blame] | 269 | You can override them via environment variables |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 270 | CROSS_COMPILE_{ARCH}. |
| 271 | |
| 272 | For example, if you want to override toolchain prefixes |
| 273 | for ARM and PowerPC, you can do as follows in your shell: |
| 274 | |
| 275 | export CROSS_COMPILE_ARM=... |
| 276 | export CROSS_COMPILE_POWERPC=... |
Masahiro Yamada | 90ed6cb | 2016-05-19 15:51:53 +0900 | [diff] [blame] | 277 | |
| 278 | Then, this function checks if specified compilers really exist in your |
| 279 | PATH environment. |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 280 | """ |
| 281 | archs = [] |
| 282 | |
| 283 | for arch in os.listdir('arch'): |
| 284 | if os.path.exists(os.path.join('arch', arch, 'Makefile')): |
| 285 | archs.append(arch) |
| 286 | |
| 287 | # arm64 is a special case |
| 288 | archs.append('aarch64') |
| 289 | |
| 290 | for arch in archs: |
| 291 | env = 'CROSS_COMPILE_' + arch.upper() |
| 292 | cross_compile = os.environ.get(env) |
Masahiro Yamada | 90ed6cb | 2016-05-19 15:51:53 +0900 | [diff] [blame] | 293 | if not cross_compile: |
| 294 | cross_compile = CROSS_COMPILE.get(arch, '') |
| 295 | |
| 296 | for path in os.environ["PATH"].split(os.pathsep): |
| 297 | gcc_path = os.path.join(path, cross_compile + 'gcc') |
| 298 | if os.path.isfile(gcc_path) and os.access(gcc_path, os.X_OK): |
| 299 | break |
| 300 | else: |
| 301 | print >> sys.stderr, color_text(color_enabled, COLOR_YELLOW, |
| 302 | 'warning: %sgcc: not found in PATH. %s architecture boards will be skipped' |
| 303 | % (cross_compile, arch)) |
| 304 | cross_compile = None |
| 305 | |
| 306 | CROSS_COMPILE[arch] = cross_compile |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 307 | |
| 308 | def cleanup_one_header(header_path, patterns, dry_run): |
| 309 | """Clean regex-matched lines away from a file. |
| 310 | |
| 311 | Arguments: |
| 312 | header_path: path to the cleaned file. |
| 313 | patterns: list of regex patterns. Any lines matching to these |
| 314 | patterns are deleted. |
| 315 | dry_run: make no changes, but still display log. |
| 316 | """ |
| 317 | with open(header_path) as f: |
| 318 | lines = f.readlines() |
| 319 | |
| 320 | matched = [] |
| 321 | for i, line in enumerate(lines): |
| 322 | for pattern in patterns: |
| 323 | m = pattern.search(line) |
| 324 | if m: |
| 325 | print '%s: %s: %s' % (header_path, i + 1, line), |
| 326 | matched.append(i) |
| 327 | break |
| 328 | |
| 329 | if dry_run or not matched: |
| 330 | return |
| 331 | |
| 332 | with open(header_path, 'w') as f: |
| 333 | for i, line in enumerate(lines): |
| 334 | if not i in matched: |
| 335 | f.write(line) |
| 336 | |
Masahiro Yamada | b134bc1 | 2016-05-19 15:51:57 +0900 | [diff] [blame] | 337 | def cleanup_headers(configs, dry_run): |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 338 | """Delete config defines from board headers. |
| 339 | |
| 340 | Arguments: |
Masahiro Yamada | b134bc1 | 2016-05-19 15:51:57 +0900 | [diff] [blame] | 341 | configs: A list of CONFIGs to remove. |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 342 | dry_run: make no changes, but still display log. |
| 343 | """ |
| 344 | while True: |
| 345 | choice = raw_input('Clean up headers? [y/n]: ').lower() |
| 346 | print choice |
| 347 | if choice == 'y' or choice == 'n': |
| 348 | break |
| 349 | |
| 350 | if choice == 'n': |
| 351 | return |
| 352 | |
| 353 | patterns = [] |
Masahiro Yamada | b134bc1 | 2016-05-19 15:51:57 +0900 | [diff] [blame] | 354 | for config in configs: |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 355 | patterns.append(re.compile(r'#\s*define\s+%s\W' % config)) |
| 356 | patterns.append(re.compile(r'#\s*undef\s+%s\W' % config)) |
| 357 | |
Joe Hershberger | 60727f5 | 2015-05-19 13:21:21 -0500 | [diff] [blame] | 358 | for dir in 'include', 'arch', 'board': |
| 359 | for (dirpath, dirnames, filenames) in os.walk(dir): |
| 360 | for filename in filenames: |
| 361 | if not fnmatch.fnmatch(filename, '*~'): |
| 362 | cleanup_one_header(os.path.join(dirpath, filename), |
| 363 | patterns, dry_run) |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 364 | |
| 365 | ### classes ### |
Masahiro Yamada | c5e60fd | 2016-05-19 15:51:55 +0900 | [diff] [blame] | 366 | class Progress: |
| 367 | |
| 368 | """Progress Indicator""" |
| 369 | |
| 370 | def __init__(self, total): |
| 371 | """Create a new progress indicator. |
| 372 | |
| 373 | Arguments: |
| 374 | total: A number of defconfig files to process. |
| 375 | """ |
| 376 | self.current = 0 |
| 377 | self.total = total |
| 378 | |
| 379 | def inc(self): |
| 380 | """Increment the number of processed defconfig files.""" |
| 381 | |
| 382 | self.current += 1 |
| 383 | |
| 384 | def show(self): |
| 385 | """Display the progress.""" |
| 386 | print ' %d defconfigs out of %d\r' % (self.current, self.total), |
| 387 | sys.stdout.flush() |
| 388 | |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 389 | class KconfigParser: |
| 390 | |
| 391 | """A parser of .config and include/autoconf.mk.""" |
| 392 | |
| 393 | re_arch = re.compile(r'CONFIG_SYS_ARCH="(.*)"') |
| 394 | re_cpu = re.compile(r'CONFIG_SYS_CPU="(.*)"') |
| 395 | |
Masahiro Yamada | 522e8dc | 2016-05-19 15:52:01 +0900 | [diff] [blame] | 396 | def __init__(self, configs, options, build_dir): |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 397 | """Create a new parser. |
| 398 | |
| 399 | Arguments: |
Masahiro Yamada | b134bc1 | 2016-05-19 15:51:57 +0900 | [diff] [blame] | 400 | configs: A list of CONFIGs to move. |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 401 | options: option flags. |
| 402 | build_dir: Build directory. |
| 403 | """ |
Masahiro Yamada | b134bc1 | 2016-05-19 15:51:57 +0900 | [diff] [blame] | 404 | self.configs = configs |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 405 | self.options = options |
Masahiro Yamada | 1f16992 | 2016-05-19 15:52:00 +0900 | [diff] [blame] | 406 | self.dotconfig = os.path.join(build_dir, '.config') |
| 407 | self.autoconf = os.path.join(build_dir, 'include', 'autoconf.mk') |
| 408 | self.config_autoconf = os.path.join(build_dir, 'include', 'config', |
| 409 | 'auto.conf') |
Masahiro Yamada | 5da4f85 | 2016-05-19 15:52:06 +0900 | [diff] [blame^] | 410 | self.defconfig = os.path.join(build_dir, 'defconfig') |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 411 | |
| 412 | def get_cross_compile(self): |
| 413 | """Parse .config file and return CROSS_COMPILE. |
| 414 | |
| 415 | Returns: |
| 416 | A string storing the compiler prefix for the architecture. |
Masahiro Yamada | 90ed6cb | 2016-05-19 15:51:53 +0900 | [diff] [blame] | 417 | Return a NULL string for architectures that do not require |
| 418 | compiler prefix (Sandbox and native build is the case). |
| 419 | Return None if the specified compiler is missing in your PATH. |
| 420 | Caller should distinguish '' and None. |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 421 | """ |
| 422 | arch = '' |
| 423 | cpu = '' |
Masahiro Yamada | 1f16992 | 2016-05-19 15:52:00 +0900 | [diff] [blame] | 424 | for line in open(self.dotconfig): |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 425 | m = self.re_arch.match(line) |
| 426 | if m: |
| 427 | arch = m.group(1) |
| 428 | continue |
| 429 | m = self.re_cpu.match(line) |
| 430 | if m: |
| 431 | cpu = m.group(1) |
| 432 | |
Masahiro Yamada | 90ed6cb | 2016-05-19 15:51:53 +0900 | [diff] [blame] | 433 | if not arch: |
| 434 | return None |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 435 | |
| 436 | # fix-up for aarch64 |
| 437 | if arch == 'arm' and cpu == 'armv8': |
| 438 | arch = 'aarch64' |
| 439 | |
Masahiro Yamada | 90ed6cb | 2016-05-19 15:51:53 +0900 | [diff] [blame] | 440 | return CROSS_COMPILE.get(arch, None) |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 441 | |
Masahiro Yamada | b134bc1 | 2016-05-19 15:51:57 +0900 | [diff] [blame] | 442 | def parse_one_config(self, config, dotconfig_lines, autoconf_lines): |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 443 | """Parse .config, defconfig, include/autoconf.mk for one config. |
| 444 | |
| 445 | This function looks for the config options in the lines from |
| 446 | defconfig, .config, and include/autoconf.mk in order to decide |
| 447 | which action should be taken for this defconfig. |
| 448 | |
| 449 | Arguments: |
Masahiro Yamada | b134bc1 | 2016-05-19 15:51:57 +0900 | [diff] [blame] | 450 | config: CONFIG name to parse. |
Masahiro Yamada | cc00829 | 2016-05-19 15:51:56 +0900 | [diff] [blame] | 451 | dotconfig_lines: lines from the .config file. |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 452 | autoconf_lines: lines from the include/autoconf.mk file. |
| 453 | |
| 454 | Returns: |
| 455 | A tupple of the action for this defconfig and the line |
| 456 | matched for the config. |
| 457 | """ |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 458 | not_set = '# %s is not set' % config |
| 459 | |
Masahiro Yamada | cc00829 | 2016-05-19 15:51:56 +0900 | [diff] [blame] | 460 | for line in dotconfig_lines: |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 461 | line = line.rstrip() |
| 462 | if line.startswith(config + '=') or line == not_set: |
Masahiro Yamada | cc00829 | 2016-05-19 15:51:56 +0900 | [diff] [blame] | 463 | old_val = line |
| 464 | break |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 465 | else: |
Masahiro Yamada | cc00829 | 2016-05-19 15:51:56 +0900 | [diff] [blame] | 466 | return (ACTION_NO_ENTRY, config) |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 467 | |
| 468 | for line in autoconf_lines: |
| 469 | line = line.rstrip() |
| 470 | if line.startswith(config + '='): |
Masahiro Yamada | cc00829 | 2016-05-19 15:51:56 +0900 | [diff] [blame] | 471 | new_val = line |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 472 | break |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 473 | else: |
Masahiro Yamada | cc00829 | 2016-05-19 15:51:56 +0900 | [diff] [blame] | 474 | new_val = not_set |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 475 | |
Masahiro Yamada | cc00829 | 2016-05-19 15:51:56 +0900 | [diff] [blame] | 476 | if old_val == new_val: |
| 477 | return (ACTION_NO_CHANGE, new_val) |
| 478 | |
| 479 | # If this CONFIG is neither bool nor trisate |
| 480 | if old_val[-2:] != '=y' and old_val[-2:] != '=m' and old_val != not_set: |
| 481 | # tools/scripts/define2mk.sed changes '1' to 'y'. |
| 482 | # This is a problem if the CONFIG is int type. |
| 483 | # Check the type in Kconfig and handle it correctly. |
| 484 | if new_val[-2:] == '=y': |
| 485 | new_val = new_val[:-1] + '1' |
| 486 | |
| 487 | return (ACTION_MOVE, new_val) |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 488 | |
Masahiro Yamada | 1d08556 | 2016-05-19 15:52:02 +0900 | [diff] [blame] | 489 | def update_dotconfig(self): |
Masahiro Yamada | 6ff36d2 | 2016-05-19 15:51:50 +0900 | [diff] [blame] | 490 | """Parse files for the config options and update the .config. |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 491 | |
Masahiro Yamada | cc00829 | 2016-05-19 15:51:56 +0900 | [diff] [blame] | 492 | This function parses the generated .config and include/autoconf.mk |
| 493 | searching the target options. |
Masahiro Yamada | 6ff36d2 | 2016-05-19 15:51:50 +0900 | [diff] [blame] | 494 | Move the config option(s) to the .config as needed. |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 495 | |
| 496 | Arguments: |
| 497 | defconfig: defconfig name. |
Masahiro Yamada | 522e8dc | 2016-05-19 15:52:01 +0900 | [diff] [blame] | 498 | |
| 499 | Returns: |
Masahiro Yamada | 7fb0bac | 2016-05-19 15:52:04 +0900 | [diff] [blame] | 500 | Return a tuple of (updated flag, log string). |
| 501 | The "updated flag" is True if the .config was updated, False |
| 502 | otherwise. The "log string" shows what happend to the .config. |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 503 | """ |
| 504 | |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 505 | results = [] |
Masahiro Yamada | 7fb0bac | 2016-05-19 15:52:04 +0900 | [diff] [blame] | 506 | updated = False |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 507 | |
Masahiro Yamada | 1f16992 | 2016-05-19 15:52:00 +0900 | [diff] [blame] | 508 | with open(self.dotconfig) as f: |
Masahiro Yamada | cc00829 | 2016-05-19 15:51:56 +0900 | [diff] [blame] | 509 | dotconfig_lines = f.readlines() |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 510 | |
Masahiro Yamada | 1f16992 | 2016-05-19 15:52:00 +0900 | [diff] [blame] | 511 | with open(self.autoconf) as f: |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 512 | autoconf_lines = f.readlines() |
| 513 | |
Masahiro Yamada | b134bc1 | 2016-05-19 15:51:57 +0900 | [diff] [blame] | 514 | for config in self.configs: |
| 515 | result = self.parse_one_config(config, dotconfig_lines, |
Joe Hershberger | 96464ba | 2015-05-19 13:21:17 -0500 | [diff] [blame] | 516 | autoconf_lines) |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 517 | results.append(result) |
| 518 | |
| 519 | log = '' |
| 520 | |
| 521 | for (action, value) in results: |
| 522 | if action == ACTION_MOVE: |
| 523 | actlog = "Move '%s'" % value |
| 524 | log_color = COLOR_LIGHT_GREEN |
Masahiro Yamada | cc00829 | 2016-05-19 15:51:56 +0900 | [diff] [blame] | 525 | elif action == ACTION_NO_ENTRY: |
| 526 | actlog = "%s is not defined in Kconfig. Do nothing." % value |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 527 | log_color = COLOR_LIGHT_BLUE |
Masahiro Yamada | cc00829 | 2016-05-19 15:51:56 +0900 | [diff] [blame] | 528 | elif action == ACTION_NO_CHANGE: |
| 529 | actlog = "'%s' is the same as the define in Kconfig. Do nothing." \ |
| 530 | % value |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 531 | log_color = COLOR_LIGHT_PURPLE |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 532 | else: |
| 533 | sys.exit("Internal Error. This should not happen.") |
| 534 | |
Masahiro Yamada | 1d08556 | 2016-05-19 15:52:02 +0900 | [diff] [blame] | 535 | log += color_text(self.options.color, log_color, actlog) + '\n' |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 536 | |
Masahiro Yamada | 1f16992 | 2016-05-19 15:52:00 +0900 | [diff] [blame] | 537 | with open(self.dotconfig, 'a') as f: |
Masahiro Yamada | e423d17 | 2016-05-19 15:51:49 +0900 | [diff] [blame] | 538 | for (action, value) in results: |
| 539 | if action == ACTION_MOVE: |
| 540 | f.write(value + '\n') |
Masahiro Yamada | 7fb0bac | 2016-05-19 15:52:04 +0900 | [diff] [blame] | 541 | updated = True |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 542 | |
Masahiro Yamada | 5da4f85 | 2016-05-19 15:52:06 +0900 | [diff] [blame^] | 543 | self.results = results |
Masahiro Yamada | 1f16992 | 2016-05-19 15:52:00 +0900 | [diff] [blame] | 544 | os.remove(self.config_autoconf) |
| 545 | os.remove(self.autoconf) |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 546 | |
Masahiro Yamada | 7fb0bac | 2016-05-19 15:52:04 +0900 | [diff] [blame] | 547 | return (updated, log) |
Masahiro Yamada | 522e8dc | 2016-05-19 15:52:01 +0900 | [diff] [blame] | 548 | |
Masahiro Yamada | 5da4f85 | 2016-05-19 15:52:06 +0900 | [diff] [blame^] | 549 | def check_defconfig(self): |
| 550 | """Check the defconfig after savedefconfig |
| 551 | |
| 552 | Returns: |
| 553 | Return additional log if moved CONFIGs were removed again by |
| 554 | 'make savedefconfig'. |
| 555 | """ |
| 556 | |
| 557 | log = '' |
| 558 | |
| 559 | with open(self.defconfig) as f: |
| 560 | defconfig_lines = f.readlines() |
| 561 | |
| 562 | for (action, value) in self.results: |
| 563 | if action != ACTION_MOVE: |
| 564 | continue |
| 565 | if not value + '\n' in defconfig_lines: |
| 566 | log += color_text(self.options.color, COLOR_YELLOW, |
| 567 | "'%s' was removed by savedefconfig.\n" % |
| 568 | value) |
| 569 | |
| 570 | return log |
| 571 | |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 572 | class Slot: |
| 573 | |
| 574 | """A slot to store a subprocess. |
| 575 | |
| 576 | Each instance of this class handles one subprocess. |
| 577 | This class is useful to control multiple threads |
| 578 | for faster processing. |
| 579 | """ |
| 580 | |
Masahiro Yamada | b134bc1 | 2016-05-19 15:51:57 +0900 | [diff] [blame] | 581 | def __init__(self, configs, options, progress, devnull, make_cmd): |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 582 | """Create a new process slot. |
| 583 | |
| 584 | Arguments: |
Masahiro Yamada | b134bc1 | 2016-05-19 15:51:57 +0900 | [diff] [blame] | 585 | configs: A list of CONFIGs to move. |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 586 | options: option flags. |
Masahiro Yamada | c5e60fd | 2016-05-19 15:51:55 +0900 | [diff] [blame] | 587 | progress: A progress indicator. |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 588 | devnull: A file object of '/dev/null'. |
| 589 | make_cmd: command name of GNU Make. |
| 590 | """ |
| 591 | self.options = options |
Masahiro Yamada | c5e60fd | 2016-05-19 15:51:55 +0900 | [diff] [blame] | 592 | self.progress = progress |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 593 | self.build_dir = tempfile.mkdtemp() |
| 594 | self.devnull = devnull |
| 595 | self.make_cmd = (make_cmd, 'O=' + self.build_dir) |
Masahiro Yamada | 522e8dc | 2016-05-19 15:52:01 +0900 | [diff] [blame] | 596 | self.parser = KconfigParser(configs, options, self.build_dir) |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 597 | self.state = STATE_IDLE |
| 598 | self.failed_boards = [] |
| 599 | |
| 600 | def __del__(self): |
| 601 | """Delete the working directory |
| 602 | |
| 603 | This function makes sure the temporary directory is cleaned away |
| 604 | even if Python suddenly dies due to error. It should be done in here |
| 605 | because it is guranteed the destructor is always invoked when the |
| 606 | instance of the class gets unreferenced. |
| 607 | |
| 608 | If the subprocess is still running, wait until it finishes. |
| 609 | """ |
| 610 | if self.state != STATE_IDLE: |
| 611 | while self.ps.poll() == None: |
| 612 | pass |
| 613 | shutil.rmtree(self.build_dir) |
| 614 | |
Masahiro Yamada | c5e60fd | 2016-05-19 15:51:55 +0900 | [diff] [blame] | 615 | def add(self, defconfig): |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 616 | """Assign a new subprocess for defconfig and add it to the slot. |
| 617 | |
| 618 | If the slot is vacant, create a new subprocess for processing the |
| 619 | given defconfig and add it to the slot. Just returns False if |
| 620 | the slot is occupied (i.e. the current subprocess is still running). |
| 621 | |
| 622 | Arguments: |
| 623 | defconfig: defconfig name. |
| 624 | |
| 625 | Returns: |
| 626 | Return True on success or False on failure |
| 627 | """ |
| 628 | if self.state != STATE_IDLE: |
| 629 | return False |
| 630 | cmd = list(self.make_cmd) |
| 631 | cmd.append(defconfig) |
Joe Hershberger | 2540009 | 2015-05-19 13:21:23 -0500 | [diff] [blame] | 632 | self.ps = subprocess.Popen(cmd, stdout=self.devnull, |
| 633 | stderr=subprocess.PIPE) |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 634 | self.defconfig = defconfig |
| 635 | self.state = STATE_DEFCONFIG |
Masahiro Yamada | 1d08556 | 2016-05-19 15:52:02 +0900 | [diff] [blame] | 636 | self.log = '' |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 637 | return True |
| 638 | |
| 639 | def poll(self): |
| 640 | """Check the status of the subprocess and handle it as needed. |
| 641 | |
| 642 | Returns True if the slot is vacant (i.e. in idle state). |
| 643 | If the configuration is successfully finished, assign a new |
| 644 | subprocess to build include/autoconf.mk. |
| 645 | If include/autoconf.mk is generated, invoke the parser to |
Masahiro Yamada | 7fb0bac | 2016-05-19 15:52:04 +0900 | [diff] [blame] | 646 | parse the .config and the include/autoconf.mk, moving |
| 647 | config options to the .config as needed. |
| 648 | If the .config was updated, run "make savedefconfig" to sync |
| 649 | it, update the original defconfig, and then set the slot back |
| 650 | to the idle state. |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 651 | |
| 652 | Returns: |
| 653 | Return True if the subprocess is terminated, False otherwise |
| 654 | """ |
| 655 | if self.state == STATE_IDLE: |
| 656 | return True |
| 657 | |
| 658 | if self.ps.poll() == None: |
| 659 | return False |
| 660 | |
| 661 | if self.ps.poll() != 0: |
Masahiro Yamada | 1d08556 | 2016-05-19 15:52:02 +0900 | [diff] [blame] | 662 | self.log += color_text(self.options.color, COLOR_LIGHT_RED, |
| 663 | "Failed to process.\n") |
Joe Hershberger | 95bf9c7 | 2015-05-19 13:21:24 -0500 | [diff] [blame] | 664 | if self.options.verbose: |
Masahiro Yamada | 1d08556 | 2016-05-19 15:52:02 +0900 | [diff] [blame] | 665 | self.log += color_text(self.options.color, COLOR_LIGHT_CYAN, |
| 666 | self.ps.stderr.read()) |
Masahiro Yamada | 4efef99 | 2016-05-19 15:52:03 +0900 | [diff] [blame] | 667 | self.finish(False) |
Masahiro Yamada | ff8725b | 2016-05-19 15:51:51 +0900 | [diff] [blame] | 668 | return True |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 669 | |
| 670 | if self.state == STATE_AUTOCONF: |
Masahiro Yamada | 7fb0bac | 2016-05-19 15:52:04 +0900 | [diff] [blame] | 671 | (updated, log) = self.parser.update_dotconfig() |
| 672 | self.log += log |
Joe Hershberger | 96464ba | 2015-05-19 13:21:17 -0500 | [diff] [blame] | 673 | |
Masahiro Yamada | 7fb0bac | 2016-05-19 15:52:04 +0900 | [diff] [blame] | 674 | if not updated: |
| 675 | self.finish(True) |
| 676 | return True |
Masahiro Yamada | c1c4d0f | 2016-05-19 15:52:05 +0900 | [diff] [blame] | 677 | self.log += color_text(self.options.color, COLOR_LIGHT_GREEN, |
| 678 | "Syncing by savedefconfig...\n") |
Joe Hershberger | 96464ba | 2015-05-19 13:21:17 -0500 | [diff] [blame] | 679 | cmd = list(self.make_cmd) |
| 680 | cmd.append('savedefconfig') |
| 681 | self.ps = subprocess.Popen(cmd, stdout=self.devnull, |
Joe Hershberger | 2540009 | 2015-05-19 13:21:23 -0500 | [diff] [blame] | 682 | stderr=subprocess.PIPE) |
Joe Hershberger | 96464ba | 2015-05-19 13:21:17 -0500 | [diff] [blame] | 683 | self.state = STATE_SAVEDEFCONFIG |
| 684 | return False |
| 685 | |
| 686 | if self.state == STATE_SAVEDEFCONFIG: |
Masahiro Yamada | 5da4f85 | 2016-05-19 15:52:06 +0900 | [diff] [blame^] | 687 | self.log += self.parser.check_defconfig() |
Masahiro Yamada | e423d17 | 2016-05-19 15:51:49 +0900 | [diff] [blame] | 688 | if not self.options.dry_run: |
| 689 | shutil.move(os.path.join(self.build_dir, 'defconfig'), |
| 690 | os.path.join('configs', self.defconfig)) |
Masahiro Yamada | 4efef99 | 2016-05-19 15:52:03 +0900 | [diff] [blame] | 691 | self.finish(True) |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 692 | return True |
| 693 | |
Joe Hershberger | 2540009 | 2015-05-19 13:21:23 -0500 | [diff] [blame] | 694 | self.cross_compile = self.parser.get_cross_compile() |
Masahiro Yamada | 90ed6cb | 2016-05-19 15:51:53 +0900 | [diff] [blame] | 695 | if self.cross_compile is None: |
Masahiro Yamada | 1d08556 | 2016-05-19 15:52:02 +0900 | [diff] [blame] | 696 | self.log += color_text(self.options.color, COLOR_YELLOW, |
| 697 | "Compiler is missing. Do nothing.\n") |
Masahiro Yamada | 4efef99 | 2016-05-19 15:52:03 +0900 | [diff] [blame] | 698 | self.finish(False) |
Masahiro Yamada | 90ed6cb | 2016-05-19 15:51:53 +0900 | [diff] [blame] | 699 | return True |
| 700 | |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 701 | cmd = list(self.make_cmd) |
Joe Hershberger | 2540009 | 2015-05-19 13:21:23 -0500 | [diff] [blame] | 702 | if self.cross_compile: |
| 703 | cmd.append('CROSS_COMPILE=%s' % self.cross_compile) |
Joe Hershberger | 7740f65 | 2015-05-19 13:21:18 -0500 | [diff] [blame] | 704 | cmd.append('KCONFIG_IGNORE_DUPLICATES=1') |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 705 | cmd.append('include/config/auto.conf') |
Joe Hershberger | 2540009 | 2015-05-19 13:21:23 -0500 | [diff] [blame] | 706 | self.ps = subprocess.Popen(cmd, stdout=self.devnull, |
Joe Hershberger | 2540009 | 2015-05-19 13:21:23 -0500 | [diff] [blame] | 707 | stderr=subprocess.PIPE) |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 708 | self.state = STATE_AUTOCONF |
| 709 | return False |
| 710 | |
Masahiro Yamada | 4efef99 | 2016-05-19 15:52:03 +0900 | [diff] [blame] | 711 | def finish(self, success): |
| 712 | """Display log along with progress and go to the idle state. |
Masahiro Yamada | 1d08556 | 2016-05-19 15:52:02 +0900 | [diff] [blame] | 713 | |
| 714 | Arguments: |
Masahiro Yamada | 4efef99 | 2016-05-19 15:52:03 +0900 | [diff] [blame] | 715 | success: Should be True when the defconfig was processed |
| 716 | successfully, or False when it fails. |
Masahiro Yamada | 1d08556 | 2016-05-19 15:52:02 +0900 | [diff] [blame] | 717 | """ |
| 718 | # output at least 30 characters to hide the "* defconfigs out of *". |
| 719 | log = self.defconfig.ljust(30) + '\n' |
| 720 | |
| 721 | log += '\n'.join([ ' ' + s for s in self.log.split('\n') ]) |
| 722 | # Some threads are running in parallel. |
| 723 | # Print log atomically to not mix up logs from different threads. |
Masahiro Yamada | 4efef99 | 2016-05-19 15:52:03 +0900 | [diff] [blame] | 724 | print >> (sys.stdout if success else sys.stderr), log |
| 725 | |
| 726 | if not success: |
| 727 | if self.options.exit_on_error: |
| 728 | sys.exit("Exit on error.") |
| 729 | # If --exit-on-error flag is not set, skip this board and continue. |
| 730 | # Record the failed board. |
| 731 | self.failed_boards.append(self.defconfig) |
| 732 | |
Masahiro Yamada | 1d08556 | 2016-05-19 15:52:02 +0900 | [diff] [blame] | 733 | self.progress.inc() |
| 734 | self.progress.show() |
Masahiro Yamada | 4efef99 | 2016-05-19 15:52:03 +0900 | [diff] [blame] | 735 | self.state = STATE_IDLE |
Masahiro Yamada | 1d08556 | 2016-05-19 15:52:02 +0900 | [diff] [blame] | 736 | |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 737 | def get_failed_boards(self): |
| 738 | """Returns a list of failed boards (defconfigs) in this slot. |
| 739 | """ |
| 740 | return self.failed_boards |
| 741 | |
| 742 | class Slots: |
| 743 | |
| 744 | """Controller of the array of subprocess slots.""" |
| 745 | |
Masahiro Yamada | b134bc1 | 2016-05-19 15:51:57 +0900 | [diff] [blame] | 746 | def __init__(self, configs, options, progress): |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 747 | """Create a new slots controller. |
| 748 | |
| 749 | Arguments: |
Masahiro Yamada | b134bc1 | 2016-05-19 15:51:57 +0900 | [diff] [blame] | 750 | configs: A list of CONFIGs to move. |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 751 | options: option flags. |
Masahiro Yamada | c5e60fd | 2016-05-19 15:51:55 +0900 | [diff] [blame] | 752 | progress: A progress indicator. |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 753 | """ |
| 754 | self.options = options |
| 755 | self.slots = [] |
| 756 | devnull = get_devnull() |
| 757 | make_cmd = get_make_cmd() |
| 758 | for i in range(options.jobs): |
Masahiro Yamada | b134bc1 | 2016-05-19 15:51:57 +0900 | [diff] [blame] | 759 | self.slots.append(Slot(configs, options, progress, devnull, |
Masahiro Yamada | c5e60fd | 2016-05-19 15:51:55 +0900 | [diff] [blame] | 760 | make_cmd)) |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 761 | |
Masahiro Yamada | c5e60fd | 2016-05-19 15:51:55 +0900 | [diff] [blame] | 762 | def add(self, defconfig): |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 763 | """Add a new subprocess if a vacant slot is found. |
| 764 | |
| 765 | Arguments: |
| 766 | defconfig: defconfig name to be put into. |
| 767 | |
| 768 | Returns: |
| 769 | Return True on success or False on failure |
| 770 | """ |
| 771 | for slot in self.slots: |
Masahiro Yamada | c5e60fd | 2016-05-19 15:51:55 +0900 | [diff] [blame] | 772 | if slot.add(defconfig): |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 773 | return True |
| 774 | return False |
| 775 | |
| 776 | def available(self): |
| 777 | """Check if there is a vacant slot. |
| 778 | |
| 779 | Returns: |
| 780 | Return True if at lease one vacant slot is found, False otherwise. |
| 781 | """ |
| 782 | for slot in self.slots: |
| 783 | if slot.poll(): |
| 784 | return True |
| 785 | return False |
| 786 | |
| 787 | def empty(self): |
| 788 | """Check if all slots are vacant. |
| 789 | |
| 790 | Returns: |
| 791 | Return True if all the slots are vacant, False otherwise. |
| 792 | """ |
| 793 | ret = True |
| 794 | for slot in self.slots: |
| 795 | if not slot.poll(): |
| 796 | ret = False |
| 797 | return ret |
| 798 | |
| 799 | def show_failed_boards(self): |
| 800 | """Display all of the failed boards (defconfigs).""" |
| 801 | failed_boards = [] |
| 802 | |
| 803 | for slot in self.slots: |
| 804 | failed_boards += slot.get_failed_boards() |
| 805 | |
| 806 | if len(failed_boards) > 0: |
| 807 | msg = [ "The following boards were not processed due to error:" ] |
| 808 | msg += failed_boards |
| 809 | for line in msg: |
| 810 | print >> sys.stderr, color_text(self.options.color, |
| 811 | COLOR_LIGHT_RED, line) |
| 812 | |
Joe Hershberger | 2559cd8 | 2015-05-19 13:21:22 -0500 | [diff] [blame] | 813 | with open('moveconfig.failed', 'w') as f: |
| 814 | for board in failed_boards: |
| 815 | f.write(board + '\n') |
| 816 | |
Masahiro Yamada | b134bc1 | 2016-05-19 15:51:57 +0900 | [diff] [blame] | 817 | def move_config(configs, options): |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 818 | """Move config options to defconfig files. |
| 819 | |
| 820 | Arguments: |
Masahiro Yamada | b134bc1 | 2016-05-19 15:51:57 +0900 | [diff] [blame] | 821 | configs: A list of CONFIGs to move. |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 822 | options: option flags |
| 823 | """ |
Masahiro Yamada | b134bc1 | 2016-05-19 15:51:57 +0900 | [diff] [blame] | 824 | if len(configs) == 0: |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 825 | print 'Nothing to do. exit.' |
| 826 | sys.exit(0) |
| 827 | |
Masahiro Yamada | b134bc1 | 2016-05-19 15:51:57 +0900 | [diff] [blame] | 828 | print 'Move %s (jobs: %d)' % (', '.join(configs), options.jobs) |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 829 | |
Joe Hershberger | 91040e8 | 2015-05-19 13:21:19 -0500 | [diff] [blame] | 830 | if options.defconfigs: |
| 831 | defconfigs = [line.strip() for line in open(options.defconfigs)] |
| 832 | for i, defconfig in enumerate(defconfigs): |
| 833 | if not defconfig.endswith('_defconfig'): |
| 834 | defconfigs[i] = defconfig + '_defconfig' |
| 835 | if not os.path.exists(os.path.join('configs', defconfigs[i])): |
| 836 | sys.exit('%s - defconfig does not exist. Stopping.' % |
| 837 | defconfigs[i]) |
| 838 | else: |
| 839 | # All the defconfig files to be processed |
| 840 | defconfigs = [] |
| 841 | for (dirpath, dirnames, filenames) in os.walk('configs'): |
| 842 | dirpath = dirpath[len('configs') + 1:] |
| 843 | for filename in fnmatch.filter(filenames, '*_defconfig'): |
| 844 | defconfigs.append(os.path.join(dirpath, filename)) |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 845 | |
Masahiro Yamada | c5e60fd | 2016-05-19 15:51:55 +0900 | [diff] [blame] | 846 | progress = Progress(len(defconfigs)) |
Masahiro Yamada | b134bc1 | 2016-05-19 15:51:57 +0900 | [diff] [blame] | 847 | slots = Slots(configs, options, progress) |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 848 | |
| 849 | # Main loop to process defconfig files: |
| 850 | # Add a new subprocess into a vacant slot. |
| 851 | # Sleep if there is no available slot. |
Masahiro Yamada | c5e60fd | 2016-05-19 15:51:55 +0900 | [diff] [blame] | 852 | for defconfig in defconfigs: |
| 853 | while not slots.add(defconfig): |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 854 | while not slots.available(): |
| 855 | # No available slot: sleep for a while |
| 856 | time.sleep(SLEEP_TIME) |
| 857 | |
| 858 | # wait until all the subprocesses finish |
| 859 | while not slots.empty(): |
| 860 | time.sleep(SLEEP_TIME) |
| 861 | |
Joe Hershberger | 2e2ce6c | 2015-05-19 13:21:25 -0500 | [diff] [blame] | 862 | print '' |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 863 | slots.show_failed_boards() |
| 864 | |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 865 | def main(): |
| 866 | try: |
| 867 | cpu_count = multiprocessing.cpu_count() |
| 868 | except NotImplementedError: |
| 869 | cpu_count = 1 |
| 870 | |
| 871 | parser = optparse.OptionParser() |
| 872 | # Add options here |
| 873 | parser.add_option('-c', '--color', action='store_true', default=False, |
| 874 | help='display the log in color') |
Joe Hershberger | 91040e8 | 2015-05-19 13:21:19 -0500 | [diff] [blame] | 875 | parser.add_option('-d', '--defconfigs', type='string', |
| 876 | help='a file containing a list of defconfigs to move') |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 877 | parser.add_option('-n', '--dry-run', action='store_true', default=False, |
| 878 | help='perform a trial run (show log with no changes)') |
| 879 | parser.add_option('-e', '--exit-on-error', action='store_true', |
| 880 | default=False, |
| 881 | help='exit immediately on any error') |
Joe Hershberger | 2144f88 | 2015-05-19 13:21:20 -0500 | [diff] [blame] | 882 | parser.add_option('-H', '--headers-only', dest='cleanup_headers_only', |
| 883 | action='store_true', default=False, |
| 884 | help='only cleanup the headers') |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 885 | parser.add_option('-j', '--jobs', type='int', default=cpu_count, |
| 886 | help='the number of jobs to run simultaneously') |
Joe Hershberger | 95bf9c7 | 2015-05-19 13:21:24 -0500 | [diff] [blame] | 887 | parser.add_option('-v', '--verbose', action='store_true', default=False, |
| 888 | help='show any build errors as boards are built') |
Masahiro Yamada | b6ef393 | 2016-05-19 15:51:58 +0900 | [diff] [blame] | 889 | parser.usage += ' CONFIG ...' |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 890 | |
Masahiro Yamada | b6ef393 | 2016-05-19 15:51:58 +0900 | [diff] [blame] | 891 | (options, configs) = parser.parse_args() |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 892 | |
Masahiro Yamada | b6ef393 | 2016-05-19 15:51:58 +0900 | [diff] [blame] | 893 | if len(configs) == 0: |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 894 | parser.print_usage() |
| 895 | sys.exit(1) |
| 896 | |
Masahiro Yamada | b6ef393 | 2016-05-19 15:51:58 +0900 | [diff] [blame] | 897 | # prefix the option name with CONFIG_ if missing |
| 898 | configs = [ config if config.startswith('CONFIG_') else 'CONFIG_' + config |
| 899 | for config in configs ] |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 900 | |
Joe Hershberger | 2144f88 | 2015-05-19 13:21:20 -0500 | [diff] [blame] | 901 | check_top_directory() |
| 902 | |
Masahiro Yamada | bd63e5b | 2016-05-19 15:51:54 +0900 | [diff] [blame] | 903 | check_clean_directory() |
| 904 | |
Masahiro Yamada | 90ed6cb | 2016-05-19 15:51:53 +0900 | [diff] [blame] | 905 | update_cross_compile(options.color) |
Masahiro Yamada | 4b430c9 | 2016-05-19 15:51:52 +0900 | [diff] [blame] | 906 | |
Joe Hershberger | 2144f88 | 2015-05-19 13:21:20 -0500 | [diff] [blame] | 907 | if not options.cleanup_headers_only: |
Masahiro Yamada | b134bc1 | 2016-05-19 15:51:57 +0900 | [diff] [blame] | 908 | move_config(configs, options) |
Joe Hershberger | 2144f88 | 2015-05-19 13:21:20 -0500 | [diff] [blame] | 909 | |
Masahiro Yamada | b134bc1 | 2016-05-19 15:51:57 +0900 | [diff] [blame] | 910 | cleanup_headers(configs, options.dry_run) |
Masahiro Yamada | 5a27c73 | 2015-05-20 11:36:07 +0900 | [diff] [blame] | 911 | |
| 912 | if __name__ == '__main__': |
| 913 | main() |