mirror of https://github.com/ARMmbed/mbed-os.git
Sort the config parameters before printing them
parent
1c3469bfaa
commit
f1b45989db
|
@ -67,7 +67,7 @@ if __name__ == '__main__':
|
||||||
if params:
|
if params:
|
||||||
print "Configuration parameters"
|
print "Configuration parameters"
|
||||||
print "------------------------"
|
print "------------------------"
|
||||||
for p in params:
|
for p in sorted(params):
|
||||||
for s in options.prefix:
|
for s in options.prefix:
|
||||||
if p.startswith(s):
|
if p.startswith(s):
|
||||||
print(str(params[p]) if not options.verbose else params[p].get_verbose_description())
|
print(str(params[p]) if not options.verbose else params[p].get_verbose_description())
|
||||||
|
|
Loading…
Reference in New Issue