Date: Sun, 5 May 1996 14:08:26 -0500 (CDT) From: Alex Nash <alex@zen.nash.org> To: kimc@w8hd.org Cc: stable@freebsd.org Subject: upgraded stabel from snap -small hitch Message-ID: <199605051908.OAA01837@zen.nash.org>
next in thread | raw e-mail | index | archive | help
> At boot time this error appears on the console:
>
>
> /lkm/snake_saver_mod.o: Undefined symbol 'scrn_blanked' referenced from text
> segment.
>
> /etc/rc.i386 included with -stable sup looks like:
>
> if [ "X${saver}" != X"NO" ] ; then
> echo -n ' screensaver: '
> modstat | grep _saver || modload -u -o /tmp/saver_mod -e \
> saver_init -q /lkm/${saver}_saver_mod.o
> fi
scrn_blanked is a variable in syscons.c which is compiled in if:
#if NSC > 0
Do you have the sc0 device enabled?
> One other boot complaint:
>
> Just after 'clearing /tmp':
>
> Usage: dumpon [some usage suggestion]
>
> Its not clear what is passing the dumpon command incorrectly..
/etc/rc:
if [ "X${dumpdev}" != X"NO" ]; then
dumpon ${dumpdev}
fi
${dumpdev} comes from /etc/sysconfig:
# Set to the name of the device for kernel crashdumps, or `off' to
# disable any statically configured dumpdev, or NO for no change.
# The device should normally be one of the swap devices specified
# in /etc/fstab.
dumpdev=/dev/sd0s2b
Alex
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199605051908.OAA01837>
