Skip to content
Snippets Groups Projects
moveconfig.py 34.1 KiB
Newer Older
  • Learn to ignore specific revisions
  •                       help='show any build errors as boards are built')
    
        (options, configs) = parser.parse_args()
    
        if len(configs) == 0 and not options.force_sync:
    
        # prefix the option name with CONFIG_ if missing
        configs = [ config if config.startswith('CONFIG_') else 'CONFIG_' + config
                    for config in configs ]
    
        update_cross_compile(options.color)
    
        if not options.cleanup_headers_only:
    
        if configs:
            cleanup_headers(configs, options.dry_run)