Module Name: src Committed By: joerg Date: Fri Dec 1 22:14:52 UTC 2017
Modified Files: src/sys/compat/linux/common: linux_mod.c src/sys/compat/linux32/common: linux32_mod.c Log Message: Unbreak Linux emulation by default. While not loading it automatically is somewhat sensible, breaking functionality of GENERIC is not and has been objected to on a regular base. To generate a diff of this commit: cvs rdiff -u -r1.7 -r1.8 src/sys/compat/linux/common/linux_mod.c cvs rdiff -u -r1.8 -r1.9 src/sys/compat/linux32/common/linux32_mod.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/compat/linux/common/linux_mod.c diff -u src/sys/compat/linux/common/linux_mod.c:1.7 src/sys/compat/linux/common/linux_mod.c:1.8 --- src/sys/compat/linux/common/linux_mod.c:1.7 Fri Sep 29 17:08:00 2017 +++ src/sys/compat/linux/common/linux_mod.c Fri Dec 1 22:14:52 2017 @@ -1,4 +1,4 @@ -/* $NetBSD: linux_mod.c,v 1.7 2017/09/29 17:08:00 maxv Exp $ */ +/* $NetBSD: linux_mod.c,v 1.8 2017/12/01 22:14:52 joerg Exp $ */ /*- * Copyright (c) 2008 The NetBSD Foundation, Inc. @@ -30,7 +30,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: linux_mod.c,v 1.7 2017/09/29 17:08:00 maxv Exp $"); +__KERNEL_RCSID(0, "$NetBSD: linux_mod.c,v 1.8 2017/12/01 22:14:52 joerg Exp $"); #ifdef _KERNEL_OPT #include "opt_execfmt.h" @@ -119,7 +119,7 @@ static struct execsw linux_execsw[] = { #endif }; -int linux_enabled = 0; +int linux_enabled = 1; int linux_sysctl_enable(SYSCTLFN_ARGS) Index: src/sys/compat/linux32/common/linux32_mod.c diff -u src/sys/compat/linux32/common/linux32_mod.c:1.8 src/sys/compat/linux32/common/linux32_mod.c:1.9 --- src/sys/compat/linux32/common/linux32_mod.c:1.8 Fri Sep 29 17:47:29 2017 +++ src/sys/compat/linux32/common/linux32_mod.c Fri Dec 1 22:14:52 2017 @@ -1,4 +1,4 @@ -/* $NetBSD: linux32_mod.c,v 1.8 2017/09/29 17:47:29 maxv Exp $ */ +/* $NetBSD: linux32_mod.c,v 1.9 2017/12/01 22:14:52 joerg Exp $ */ /*- * Copyright (c) 2008 The NetBSD Foundation, Inc. @@ -30,7 +30,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: linux32_mod.c,v 1.8 2017/09/29 17:47:29 maxv Exp $"); +__KERNEL_RCSID(0, "$NetBSD: linux32_mod.c,v 1.9 2017/12/01 22:14:52 joerg Exp $"); #ifdef _KERNEL_OPT #include "opt_execfmt.h" @@ -78,7 +78,7 @@ static struct execsw linux32_execsw[] = #endif }; -int linux32_enabled = 0; +int linux32_enabled = 1; int linux32_sysctl_enable(SYSCTLFN_ARGS)