Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 5 Mar 2001 12:50:18 -0500 (EST)
From:      Andrew Gallatin <gallatin@cs.duke.edu>
To:        naddy@mips.inka.de (Christian Weisgerber)
Cc:        freebsd-alpha@FreeBSD.ORG
Subject:   Re: My list of -CURRENT problems
Message-ID:  <15011.53722.757140.878738@grasshopper.cs.duke.edu>
In-Reply-To: <9806fj$1si$1@kemoauc.mips.inka.de>
References:  <9806fj$1si$1@kemoauc.mips.inka.de>

next in thread | previous in thread | raw e-mail | index | archive | help

Christian Weisgerber writes:
 > I rebuilt my box from yesterdays' tree.  Here's my list of annoying
 > problems:
 > 
 > * [new]
 >   Installing ports/lang/compaq-cc panics the machine.  Actually,
 >   I think executing a Linux binary through the linuxulator triggers
 >   this.
 > 
 > * [new]
 >   If sysvipc is loaded as modules, the linuxulator module fails to
 >   load with "link_elf: symbol shmctl undefined".  This doesn't
 >   happen if sysvipc is compiled statically into the kernel.
 >   I reported this a couple of days ago on freebsd-emulation, but
 >   didn't get any affirmation or useful response.
 >   I wouldn't expect this to be specific to alpha, but I don't know.
 > 
 
I'm looking at these 2.  This fixes the second, but leaves me
mystified, because the code should be loaded, as the osfulator needs
it too, and the linux module won't load even after the sysV modules
are loaded (!):


Drew


Index: alpha/linux/linux_sysvec.c
===================================================================
RCS file: /home/ncvs/src/sys/alpha/linux/linux_sysvec.c,v
retrieving revision 1.72
diff -u -r1.72 linux_sysvec.c
--- alpha/linux/linux_sysvec.c	2001/01/24 10:26:13	1.72
+++ alpha/linux/linux_sysvec.c	2001/03/05 17:43:17
@@ -61,6 +61,9 @@
 
 MODULE_VERSION(linux, 1);
 MODULE_DEPEND(linux, osf1, 1, 1, 1);
+MODULE_DEPEND(linux, sysvmsg, 1, 1, 1);
+MODULE_DEPEND(linux, sysvsem, 1, 1, 1);
+MODULE_DEPEND(linux, sysvshm, 1, 1, 1);
 
 MALLOC_DEFINE(M_LINUX, "linux", "Linux mode structures");
 

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-alpha" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?15011.53722.757140.878738>