Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

scripts: get_feat.pl: change the group by order

Right now, arch compatibility is grouped by status at the
alphabetical order from A to Z, and then from a to z, e. g:.

---
TODO
ok

Revert the order, in order to print first the OK results,
then TODO, and, finally, the not compatible ones.

Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
Link: https://lore.kernel.org/r/46d53d138eab8e4a55124323ceb5b212c6eedd08.1607095090.git.mchehab+huawei@kernel.org
Signed-off-by: Jonathan Corbet <corbet@lwn.net>

authored by

Mauro Carvalho Chehab and committed by
Jonathan Corbet
4fa32f87 dbb90902

+1 -1
+1 -1
scripts/get_feat.pl
··· 397 397 my @lines; 398 398 my $line = ""; 399 399 foreach my $arch (sort { 400 - ($arch_table{$a} cmp $arch_table{$b}) or 400 + ($arch_table{$b} cmp $arch_table{$a}) or 401 401 ("\L$a" cmp "\L$b") 402 402 } keys %arch_table) { 403 403