Lines Matching refs:config
50 def print_config(op, config, value, new_value): argument
56 print("# CONFIG_%s is not set" % config)
58 print("CONFIG_%s=%s" % (config, new_value))
61 print("-%s %s" % (config, value))
63 print("+%s %s" % (config, new_value))
65 print(" %s %s -> %s" % (config, value, new_value))
105 for config in a:
106 if config not in b:
107 old.append(config)
109 for config in old:
110 print_config("-", config, a[config], None)
111 del a[config]
115 for config in a:
116 if a[config] != b[config]:
117 changed.append(config)
119 del b[config]
121 for config in changed:
122 print_config("->", config, a[config], b[config])
123 del b[config]
128 for config in new:
129 print_config("+", config, None, b[config])