On Mon, 2002-10-14 at 01:28, Patrick wrote: > On Mon, 2002-10-14 at 03:42, Jack Bowling wrote: > > cp /usr/src/linux-2.4.19/System.map /boot/System.map-2.4.19 > > rm -f /boot/System.map > > ln -s System.map-2.4.19 System.map > > Iirc RH selects the proper System.map automagically at boot depending on > the kernel it used so no need to do the rm -f ... & ln -s ...
Yes, that is done in /etc/rc.sysinit on boot up, as shown here:
# 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` -a \
! /boot/System.map -ef /boot/System.map-`uname -r` ]; then
ln -s -f System.map-`uname -r` /boot/System.map
fi
if [ ! -e /boot/System.map -a -r /boot/System.map-`uname -r` ]; then
ln -s -f System.map-`uname -r` /boot/System.map
fi
--
Powered by Red Hat Linux 8.0 / Kernel 2.4.18-14
signature.asc
Description: This is a digitally signed message part
