diff options
author | Peter Wemm <peter@FreeBSD.org> | 1999-01-17 20:36:14 +0000 |
---|---|---|
committer | Peter Wemm <peter@FreeBSD.org> | 1999-01-17 20:36:14 +0000 |
commit | 1e65ef01b0920004f60334662920bbbbd86581d0 (patch) | |
tree | 0b2eae408e0d831b4c5acbb334780a2eb409eedc | |
parent | 1fb37cbd06900e3a9f22394f5d7278df5c8db150 (diff) |
Notes
-rw-r--r-- | sys/alpha/linux/linux_sysvec.c | 5 | ||||
-rw-r--r-- | sys/i386/linux/imgact_linux.c | 6 | ||||
-rw-r--r-- | sys/i386/linux/linux_sysvec.c | 5 |
3 files changed, 5 insertions, 11 deletions
diff --git a/sys/alpha/linux/linux_sysvec.c b/sys/alpha/linux/linux_sysvec.c index da1d78fcbfd85..fd80f1d438e86 100644 --- a/sys/alpha/linux/linux_sysvec.c +++ b/sys/alpha/linux/linux_sysvec.c @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: linux_sysvec.c,v 1.42 1998/12/19 19:05:57 sos Exp $ + * $Id: linux_sysvec.c,v 1.43 1999/01/06 23:05:38 julian Exp $ */ /* XXX we use functions that might not exist. */ @@ -429,9 +429,6 @@ struct sysentvec elf_linux_sysvec = { elf_coredump }; -/* - * Installed either via SYSINIT() or via LKM stubs. - */ static Elf32_Brandinfo linux_brand = { "Linux", "/compat/linux", diff --git a/sys/i386/linux/imgact_linux.c b/sys/i386/linux/imgact_linux.c index 72f846cb447c3..59ee24737b737 100644 --- a/sys/i386/linux/imgact_linux.c +++ b/sys/i386/linux/imgact_linux.c @@ -28,7 +28,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: imgact_linux.c,v 1.29 1998/08/16 01:21:50 bde Exp $ + * $Id: imgact_linux.c,v 1.30 1998/10/16 03:55:00 peter Exp $ */ #include <sys/param.h> @@ -234,8 +234,8 @@ exec_linux_imgact(imgp) /* * Tell kern_execve.c about it, with a little help from the linker. * Since `const' objects end up in the text segment, TEXT_SET is the - * correct directive to use. Do not staticize; used by Linux LKM. + * correct directive to use. */ -const struct execsw linux_execsw = { exec_linux_imgact, "linux a.out" }; +static const struct execsw linux_execsw = { exec_linux_imgact, "linux a.out" }; EXEC_SET(linuxaout, linux_execsw); diff --git a/sys/i386/linux/linux_sysvec.c b/sys/i386/linux/linux_sysvec.c index da1d78fcbfd85..fd80f1d438e86 100644 --- a/sys/i386/linux/linux_sysvec.c +++ b/sys/i386/linux/linux_sysvec.c @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: linux_sysvec.c,v 1.42 1998/12/19 19:05:57 sos Exp $ + * $Id: linux_sysvec.c,v 1.43 1999/01/06 23:05:38 julian Exp $ */ /* XXX we use functions that might not exist. */ @@ -429,9 +429,6 @@ struct sysentvec elf_linux_sysvec = { elf_coredump }; -/* - * Installed either via SYSINIT() or via LKM stubs. - */ static Elf32_Brandinfo linux_brand = { "Linux", "/compat/linux", |