From mboxrd@z Thu Jan 1 00:00:00 1970 From: Paul Nasrat Subject: Re: CVS status Date: Fri, 12 Jul 2002 15:20:32 +0100 Sender: linux-8086-owner@vger.kernel.org Message-ID: <20020712142031.GA13282@raq465.uk2net.com> References: <1026478231.18875.9.camel@cool> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="82I3+IH0IqGh5yIs" Return-path: Content-Disposition: inline In-Reply-To: <1026478231.18875.9.camel@cool> List-Id: To: Linux-8086 --82I3+IH0IqGh5yIs Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Fri, Jul 12, 2002 at 03:51:32PM +0300, Harry Kalogirou wrote: Hi Harry > I tried the CVS version of elks this afternoon and it fails to load > init. Is there a known issue? Just updated my tree and trying to build a kernel with all the defaults, it errors with: undefined symbol: _rs_ops This was defined in a #ifdef for CONFIG_CONSOLE_SERIAL and a patch is attached which moves it outside. I'm just trying to get bochs set up in the office so I can do more testing in work without the laptop Paul --82I3+IH0IqGh5yIs Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="elks-rsops.patch" Index: serial.c =================================================================== RCS file: /cvsroot/elks/elks/arch/i86/drivers/char/serial.c,v retrieving revision 1.30 diff -u -r1.30 serial.c --- serial.c 22 Jun 2002 09:28:19 -0000 1.30 +++ serial.c 12 Jul 2002 14:10:56 -0000 @@ -432,6 +432,8 @@ /* Do something */ } +#endif + struct tty_ops rs_ops = { rs_open, rs_release, @@ -440,4 +442,3 @@ rs_ioctl }; -#endif --82I3+IH0IqGh5yIs--