aboutsummarylogtreecommitdiffstats
path: root/symlink-latest-kernel
blob: 167a2513eacac01d512287aa7cf5a2b259382b40 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash -e

rm -f /usr/lib/modules/latest

readonly latest="$(
  cd /usr/lib/modules;
  find * -maxdepth 0 -type d |
  sort --version-sort --reverse |
  head --lines=1
)"

if [[ -n "$latest" ]]; then
  ln -s "$latest" /usr/lib/modules/latest
fi