"J . A . Magallon" <[EMAIL PROTECTED]> writes:

> And yes, think I got a bug now that 8.0 iso out. installkernel removes
> links for System.map and config, but does not create the new ones. Patch
> inlined:

the bug is that he remove the default config, your patches is wrong
since theses thing should be done at boot process :

/etc/rc.d/rc.sysinit:839:

# 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


-- 
MandrakeSoft Inc                     http://www.chmouel.org
                      --Chmouel

Reply via email to