blob: 0a2e88dc5eb59c0a78ae90b7d9d4dad25cac9a78 (
plain)
1
2
3
4
5
6
7
8
9
|
#!/bin/sh
post_upgrade() {
if [ "$(vercmp 9-2 "$2")" -eq 1 ]; then
echo "==> Kernel modules are now only read from /usr/lib/modules, all custom"
echo " built kernels and modules must be moved there before rebooting."
fi
}
|