|
You can exclude software from YUM upgrade in two ways, via the command line and via configuration file. Firstly, via command line use the --exclude option like so:
# yum --exclude kernel
You can also use the exclude option in the yum.conf configuration file, usually located in /etc. Add each package you want excluded to the option in the [main] section.
[main]
exclude=hal autofs kernel*
The danger of not updating the kernel is two-fold. You risk missing out on functionality, security updates or both. If there are kernel features or fixes in the version you are excluding, then you can miss out on them. Additionally, if there are security fixes in the new kernel, you will also not get those. I recommend reviewing the release notes for each kernel version and determine if any of the features, fixes or security updates applies to you. If so, then you should choose to upgrade your kernel, which would mean that you will have to reinstall your module.
|