diff options
| author | joerg <joerg@NetBSD.org> | 2017-12-01 22:14:52 +0000 |
|---|---|---|
| committer | joerg <joerg@NetBSD.org> | 2017-12-01 22:14:52 +0000 |
| commit | c3d0e172eefea0a6a120cc4bafb225c2d67e883c (patch) | |
| tree | 3bbcd53cdee62c0bdb7d470960a569f9e11b9b08 /sys/compat/linux | |
| parent | cec870baddd8e798bf959d84bedddaff6d0ebb84 (diff) | |
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.
Diffstat (limited to 'sys/compat/linux')
| -rw-r--r-- | sys/compat/linux/common/linux_mod.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/compat/linux/common/linux_mod.c b/sys/compat/linux/common/linux_mod.c index 088937c0b93..d6c3eb20419 100644 --- a/sys/compat/linux/common/linux_mod.c +++ b/sys/compat/linux/common/linux_mod.c @@ -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) |
