metadata.pl: use alphabetical order for menuconfig categories, also fixes random ordering of symbols in .config

SVN-Revision: 37369
v19.07.3_mercusys_ac12_duma
Jo-Philipp Wich 11 years ago
parent ccdd6e8215
commit 24f345dbe4

@ -616,7 +616,7 @@ EOF
}
print_package_features();
print_package_config_category 'Base system';
foreach my $cat (keys %category) {
foreach my $cat (sort {uc($a) cmp uc($b)} keys %category) {
print_package_config_category $cat;
}
}

Loading…
Cancel
Save