On Wed, Jan 31, 2024 at 05:29:56AM -0000, David Chmelik wrote: > Earlier this or last year I tried to use Devuan to report os-prober > detects in wrong order. It may detect current OS partition first, but if > you have more than 10, then it continues from 10, and (if this is all you > have) goes to the last in the tens but then continues somewhere in single- > digit partitions,
Sounds like someone's doing an alphanumeric sort on numbers. unicorn:~$ printf '%s\n' 1 2 3 11 12 13 | sort 1 11 12 13 2 3 It could be a result of filename globbing, e.g. /dev/sda[0-9]* which would give that kind of ordering. In any case, this isn't a Devuan mailing list. If you've reported a bug to Debian, then you should have the bug number, and the URL to its web page. If you've reported it to Devuan, then we can't help.

