Comment 7 for bug 1962225

Revision history for this message
Nic Doye (nic) wrote :

The workaround I'm using is taken from here: https://support.aqueos.net/index.php?/Knowledgebase/Article/View/your-kernel-version-indicates-a-revision-number-of-255-or-greater

mv /bin/uname /bin/uname.orig
and copy in the script below as /bin/uname (with the correct permissions),
----
#!/bin/bash

if [[ $1 == "-r" ]] ;then
  echo '4.9.250'
  exit
else
  uname.orig "$@"
fi