From owner-freebsd-hackers Sun Apr 14 18:12:24 1996 Return-Path: owner-hackers Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id SAA29625 for hackers-outgoing; Sun, 14 Apr 1996 18:12:24 -0700 (PDT) Received: from ki.net (root@ki.net [205.150.102.1]) by freefall.freebsd.org (8.7.3/8.7.3) with ESMTP id SAA29613 for ; Sun, 14 Apr 1996 18:12:20 -0700 (PDT) Received: from localhost (scrappy@localhost) by ki.net (8.7.4/8.7.4) with SMTP id VAA28382; Sun, 14 Apr 1996 21:12:25 -0400 (EDT) Date: Sun, 14 Apr 1996 21:12:22 -0400 (EDT) From: "Marc G. Fournier" To: Kim Culhan cc: hackers@FreeBSD.org Subject: Re: -current works fine -minor complaint on bootup In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-hackers@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk On Sun, 14 Apr 1996, Kim Culhan wrote: > > This system was updated to -current from an origonal 2.1 cd install > months ago (and updated often since) yet still shows this error on bootup: > > screen saver: Undefined entry symbol '_saver_init' > Hi Kim... Just checked this on my -current machine, and I'm not 100% certain whether this is correct or not, so hopefully someone will confirm for me, but, in /etc/rc.i386, right at the bottom, is this line: # screen saver 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 Which, I believe, should be changed to: # screen saver if [ "X${saver}" != X"NO" ] ; then echo -n ' screensaver: ' modstat | grep _saver || modload -u -o /tmp/saver_mod -e \ ${saver}_saver_mod -q /lkm/${saver}_saver_mod.o fi I've issued the above on my -current machine, and turned the blanktime down to 10secs, and the screen saver loaded up right. Can someone please confirm for me whether this is correct or not... will commit the change if I'm right, but don't know enough about lkm to risk doing so without confirmation :) Marc G. Fournier scrappy@ki.net Systems Administrator @ ki.net scrappy@freebsd.org