From bb8c3b811d9a971519e5ec1a9246cdfcf758cae0 Mon Sep 17 00:00:00 2001 From: emaste Date: Thu, 7 Apr 2016 20:12:45 +0000 Subject: Add option to specify built-in keymap for kbdmux PR: 153459 Submitted by: swell.k@gmail.com --- sys/conf/NOTES | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'sys/conf/NOTES') diff --git a/sys/conf/NOTES b/sys/conf/NOTES index c9fce2e..42570fe 100644 --- a/sys/conf/NOTES +++ b/sys/conf/NOTES @@ -1409,6 +1409,10 @@ options MSGBUF_SIZE=40960 options KBD_DISABLE_KEYMAP_LOAD # refuse to load a keymap options KBD_INSTALL_CDEV # install a CDEV entry in /dev +device kbdmux # keyboard multiplexer +options KBDMUX_DFLT_KEYMAP # specify the built-in keymap +makeoptions KBDMUX_DFLT_KEYMAP=it.iso + options FB_DEBUG # Frame buffer debugging device splash # Splash screen and screen saver support -- cgit v1.1 From 6beb82443a9241c4c9035f9b1df9d1358154592c Mon Sep 17 00:00:00 2001 From: jhb Date: Sat, 9 Apr 2016 13:58:04 +0000 Subject: Add more fine-grained kernel options for NUMA support. VM_NUMA_ALLOC is used to enable use of domain-aware memory allocation in the virtual memory system. DEVICE_NUMA is used to enable affinity reporting for devices such as bus_get_domain(). MAXMEMDOM must still be set to a value greater than for any NUMA support to be effective. Note that 'cpuset -gd' always works if MAXMEMDOM is enabled and the system supports NUMA. Reviewed by: kib Differential Revision: https://reviews.freebsd.org/D5782 --- sys/conf/NOTES | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'sys/conf/NOTES') diff --git a/sys/conf/NOTES b/sys/conf/NOTES index 42570fe..ec5618c 100644 --- a/sys/conf/NOTES +++ b/sys/conf/NOTES @@ -229,7 +229,15 @@ options MAXCPU=32 # MAXMEMDOM defines the maximum number of memory domains that can boot in the # system. A default value should already be defined by every architecture. -options MAXMEMDOM=1 +options MAXMEMDOM=2 + +# VM_NUMA_ALLOC enables use of memory domain-aware allocation in the VM +# system. +options VM_NUMA_ALLOC + +# DEVICE_NUMA enables reporting of domain affinity of I/O devices via +# bus_get_domain(), etc. +options DEVICE_NUMA # ADAPTIVE_MUTEXES changes the behavior of blocking mutexes to spin # if the thread that currently owns the mutex is executing on another -- cgit v1.1