In order to prevent certain updates in yum, such as for kernels, you can add a line like this in "/etc/yum.conf":
exclude="kernel*"
By using the command "yum --disableexcludes=all update" it is possible to temporarily disable the excludes.
Note that such excludes will override those in "/etc/sysconfig/yum-autoupdate" (which is used when yum is called automatically from "/etc/cron.daily/yum-autoupdate"). IMPORTANT: This override happens even if commenting out the excludes in "/etc/yum.conf", because detection in "/etc/cron.daily/yum-autoupdate" is done based on simple grep!