diff options
author | simokawa <simokawa@FreeBSD.org> | 2007-05-27 14:00:34 +0000 |
---|---|---|
committer | simokawa <simokawa@FreeBSD.org> | 2007-05-27 14:00:34 +0000 |
commit | 135548ec9b4ad638980577472e2db337f3e6c5b1 (patch) | |
tree | 4154e7b700cdd02f7eb897d6232169c8be77dc23 /sys/dev/dcons/dcons_crom.c | |
parent | 12d8c7f3b203c6f0e3688bf697d411d7b1d0e583 (diff) | |
download | FreeBSD-src-135548ec9b4ad638980577472e2db337f3e6c5b1.zip FreeBSD-src-135548ec9b4ad638980577472e2db337f3e6c5b1.tar.gz |
Change default value of hw.firewire.dcons_crom.force_console to 0
for least astonishment.
MFC after: 3 days
Diffstat (limited to 'sys/dev/dcons/dcons_crom.c')
-rw-r--r-- | sys/dev/dcons/dcons_crom.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/dcons/dcons_crom.c b/sys/dev/dcons/dcons_crom.c index bfa9146..57781b8 100644 --- a/sys/dev/dcons/dcons_crom.c +++ b/sys/dev/dcons/dcons_crom.c @@ -65,7 +65,7 @@ static bus_addr_t dcons_paddr; #if __FreeBSD_version >= 500000 -static int force_console = 1; +static int force_console = 0; TUNABLE_INT("hw.firewire.dcons_crom.force_console", &force_console); #endif |