Changeset aca97582 in mainline
- Timestamp:
- 2019-06-30T11:12:32Z (6 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 5a5269d
- Parents:
- d22be89
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tools/config.py
rd22be89 raca97582 42 42 import random 43 43 44 RULES_FILE = sys.argv[1] 44 ARGPOS_RULES = 1 45 ARGPOS_CHOICE = 2 46 ARGPOS_PRESET = 3 47 48 RULES_FILE = sys.argv[ARGPOS_RULES] 45 49 MAKEFILE = 'Makefile.config' 46 50 MACROS = 'config.h' … … 676 680 parse_rules(RULES_FILE, rules) 677 681 682 if len(sys.argv) > ARGPOS_CHOICE: 683 choice = sys.argv[ARGPOS_CHOICE] 684 else: 685 choice = None 686 687 if len(sys.argv) > ARGPOS_PRESET: 688 preset = sys.argv[ARGPOS_PRESET] 689 else: 690 preset = None 691 678 692 # Input configuration file can be specified on command line 679 693 # otherwise configuration from previous run is used. 680 if len(sys.argv) >= 4:681 profile = parse_profile_name( sys.argv[3])694 if preset is not None: 695 profile = parse_profile_name(preset) 682 696 read_presets(profile, config) 683 697 elif os.path.exists(MAKEFILE): … … 685 699 686 700 # Default mode: check values and regenerate configuration files 687 if (len(sys.argv) >= 3) and (sys.argv[2] == 'default'):701 if choice == 'default': 688 702 if (infer_verify_choices(config, rules)): 689 703 preprocess_config(config, rules) … … 693 707 # Hands-off mode: check values and regenerate configuration files, 694 708 # but no interactive fallback 695 if (len(sys.argv) >= 3) and (sys.argv[2] == 'hands-off'):696 # We deliberately test sys.argv >= 4because we do not want709 if choice == 'hands-off': 710 # We deliberately test this because we do not want 697 711 # to read implicitly any possible previous run configuration 698 if len(sys.argv) < 4:712 if preset is None: 699 713 sys.stderr.write("Configuration error: No presets specified\n") 700 714 return 2 … … 709 723 710 724 # Check mode: only check configuration 711 if (len(sys.argv) >= 3) and (sys.argv[2] == 'check'):725 if choice == 'check': 712 726 if infer_verify_choices(config, rules): 713 727 return 0 … … 715 729 716 730 # Random mode 717 if (len(sys.argv) == 3) and (sys.argv[2] == 'random'):731 if choice == 'random': 718 732 ok = random_choices(config, rules, 0) 719 733 if not ok:
Note:
See TracChangeset
for help on using the changeset viewer.