linux-rt: Fix incorrect sorting of kernel version numbers when determining latest version

When determining the latest linux-rt kernel version to update to, the list of filenames that `update-rt.sh` fetches from upstream is sorted lexicographically, while `update-rt.sh` assumes it's sorted in version order.  As a result, for example, 5.10.78 is considered newer than 5.10.100.  This change applies `sort --version-sort` to the extracted version numbers to properly identify the latest version.
This commit is contained in:
Faye 2022-02-21 16:26:23 -05:00
parent 0fca9900b1
commit a716a45b19

View File

@ -38,6 +38,7 @@ latest-rt-version() {
curl -sL "$mirror/projects/rt/$branch/sha256sums.asc" |
sed -ne '/.patch.xz/ { s/.*patch-\(.*\).patch.xz/\1/p}' |
grep -v '\-rc' |
sort --version-sort |
tail -n 1
}