Christopher Molnar <[EMAIL PROTECTED]> writes:
> It seems to have fixed vmlinuz, but the links for System.map and config
> are still messed up. (I take it the post in rpm should be running the
> installkernel?)
this is normal, it is updated every reboot :
# Adjust symlinks as necessary in /boot to keep system services from
# spewing messages about mismatched System maps and so on.
if [ -L /boot/System.map -a -r /boot/System.map-`uname -r` ] ; then
ln -sf System.map-`uname -r` /boot/System.map 2>/dev/null
fi
if [ ! -e /boot/System.map -a -r /boot/System.map-`uname -r` ] ; then
ln -sf System.map-`uname -r` /boot/System.map 2>/dev/null
fi
# Adjust symlinks as necessary in /boot to have the default config
if [ -L /boot/config -a -r /boot/config-`uname -r` ] ; then
ln -sf config-`uname -r` /boot/config 2>/dev/null
fi
if [ ! -e /boot/config -a -r /boot/config-`uname -r` ] ; then
ln -sf config-`uname -r` /boot/config 2>/dev/null
fi