Sat Jun 9 02:25:52 2018 UTC ()
set options ADBKBD_EMUL_USB by default
With this ADB and USB keyboards can coexist on the same mux, as needed by
built-in Bluetooth modules on some *Books
should fix PR53351


(macallan)
diff -r1.23 -r1.24 src/sys/arch/macppc/conf/std.macppc

cvs diff -r1.23 -r1.24 src/sys/arch/macppc/conf/std.macppc (expand / switch to unified diff)

--- src/sys/arch/macppc/conf/std.macppc 2008/12/11 05:42:18 1.23
+++ src/sys/arch/macppc/conf/std.macppc 2018/06/09 02:25:52 1.24
@@ -1,21 +1,26 @@ @@ -1,21 +1,26 @@
1# $NetBSD: std.macppc,v 1.23 2008/12/11 05:42:18 alc Exp $ 1# $NetBSD: std.macppc,v 1.24 2018/06/09 02:25:52 macallan Exp $
2# 2#
3# Standard/required options for NetBSD/macppc. 3# Standard/required options for NetBSD/macppc.
4 4
5machine macppc powerpc 5machine macppc powerpc
6include "conf/std" # MI standard options 6include "conf/std" # MI standard options
7 7
8# standard ("mandatory") kernel options. 8# standard ("mandatory") kernel options.
9options PPC_OEA # OEA class PowerPC chips 9options PPC_OEA # OEA class PowerPC chips
10makeoptions PPCDIR="oea" # Tell Makefile.powerpc what dir to use 10makeoptions PPCDIR="oea" # Tell Makefile.powerpc what dir to use
11makeoptions PPC_ARCH_MODE="ppc32" 11makeoptions PPC_ARCH_MODE="ppc32"
12 12
13# Executable support: 13# Executable support:
14options EXEC_ELF32 # (native) ELF32 binary support 14options EXEC_ELF32 # (native) ELF32 binary support
15options EXEC_AOUT # (native) a.out binary support (deprecated) 15options EXEC_AOUT # (native) a.out binary support (deprecated)
16options EXEC_SCRIPT # shell script support 16options EXEC_SCRIPT # shell script support
17 17
18options INTSTK=0x2000 18options INTSTK=0x2000
19 19
 20# some *Books have both ADB keyboards and Bluetooth modules which pose as USB
 21# HID devices - for them to coexist on the same mux we tell the adbkbd driver
 22# pose as a USB keyboard
 23options ADBKBD_EMUL_USB
 24
20# Atheros HAL options 25# Atheros HAL options
21include "external/isc/atheros_hal/conf/std.ath_hal" 26include "external/isc/atheros_hal/conf/std.ath_hal"