freebsd kernel with SKQ
Go to file
marius bfe21aa400 MFC: sys/conf/files.sparc64 1.83; sys/conf/options.sparc64 1.24;
sys/dev/uart/uart_kbd_sun.c 1.10, 1.11 (partial), 1.13;
     sys/dev/uart/uart_kbd_sun.h 1.3; sys/sparc64/conf/NOTES 1.30

- In sunkbd_probe_keyboard() don't bother to determine the keyboard layout
  as we have no use for that info. Instead let this function return the
  keyboard ID and verify at its invocation in sunkbd_configure() that we're
  talking to a Sun type 4/5/6 keyboard, i.e. a keyboard supported by this
  driver.
- Add an option SUNKBD_EMULATE_ATKBD whose code is based on the respective
  code in ukbd(4) and like UKBD_EMULATE_ATSCANCODE causes this driver to
  emit AT keyboard/KB_101 compatible scan codes in K_RAW mode as assumed by
  kbdmux(4). Unlike UKBD_EMULATE_ATSCANCODE, SUNKBD_EMULATE_ATKBD also
  triggers the use of AT keyboard maps and thus allows to use the map files
  in share/syscons/keymaps with this driver at the cost of an additional
  translation (in ukbd(4) this just is the way of operation).
- Implement an option SUNKBD_DFLT_KEYMAP, which like the equivalent options
  of the other keyboard drivers allows to specify the default in-kernel
  keyboard map. For obvious reasons this made to only work when also using
  SUNKBD_EMULATE_ATKBD.
- Implement sunkbd_check(), sunkbd_check_char() and sunkbd_clear_state(),
  which are also required for interoperability with kbdmux(4).
- Implement K_CODE mode and FreeBSD keypad compose.
- As a minor hack define KBD_DFLT_KEYMAP also in the !SUNKBD_EMULATE_ATKBD
  case so we can obtain fkey_tab from <dev/kbd/kbdtables.h> rather than
  having to duplicate it and #ifdef some more code.
- Don't use the TX-buffer for writing the two command bytes for setting the
  keyboard LEDs as this consequently requires a hardware FIFO that is at
  least two bytes in depth, which the NMOS-variant of the Zilog SCCs doesn't
  have. Thus use an inlined version of uart_putc() to consecutively write
  the command bytes (a cleaner approach would be to do this via the soft
  interrupt handler but that variant wouldn't work while in ddb(4)). [1]
- Fix some minor style(9) bugs.

PR:		90316 [1]
2007-09-30 19:33:19 +00:00
bin MFC 1.29: 2007-05-24 22:52:46 +00:00
contrib MFC 1.9-1.12: restore various historical behaviors. 2007-09-05 15:47:07 +00:00
crypto InstaMFC: OpenSSH 4.5p1 2006-11-11 00:51:29 +00:00
etc MFC: 2007-09-26 11:02:28 +00:00
games MFC: rev1.22 2007-03-30 20:33:55 +00:00
gnu MFC: Fix man(1) to allow .so to reference a compressed file 2007-09-28 02:31:57 +00:00
include MFC rev. 1.3 from HEAD, 2007-02-09 14:24:48 +00:00
kerberos5
lib MFC: (1.6) childerr needs to be volatile. 2007-09-28 07:04:35 +00:00
libexec MFC rtld.c revision 1.124 2007-07-14 19:04:00 +00:00
release MFC: camcontrol(8) readcap. 2007-09-28 05:08:34 +00:00
rescue MFC: Replace gzip(1) with the BSD licensed version found in -HEAD. 2007-02-20 08:33:32 +00:00
sbin MFC revs. 1.38, 1.39: need to reboot the system after tuning 2007-09-29 16:31:44 +00:00
secure Ugh, I accidentally sent des@ a patch that included some test 2006-10-11 09:49:12 +00:00
share MFC rev1.5: 2007-09-28 11:10:37 +00:00
sys MFC: sys/conf/files.sparc64 1.83; sys/conf/options.sparc64 1.24; 2007-09-30 19:33:19 +00:00
tools This commit was manufactured by cvs2svn to create branch 'RELENG_6'. 2007-05-13 09:33:36 +00:00
usr.bin Fix another nit in an earlier MFC so that we properly warn if we can't 2007-09-28 19:45:18 +00:00
usr.sbin MFC: consume kld_isloaded(3). 2007-09-21 17:25:03 +00:00
COPYRIGHT Welcome to 2007 2006-12-31 16:35:29 +00:00
LOCKS MFC: 1.3: RELENG_6_* commit constraints. 2006-02-06 16:39:06 +00:00
MAINTAINERS MFC: pick up maintainer stragglers. 2006-07-09 22:06:28 +00:00
Makefile MFC: Add powerpc to the universe. In rev. 1.339 I accidentally 2007-03-28 08:46:02 +00:00
Makefile.inc1 MFC, the UNAME_ and OSVERSION environment over rides. This makes 2007-05-16 21:39:44 +00:00
ObsoleteFiles.inc MFC ObsoleteFiles.inc 1.91, 1.92, and 1.93: 2007-07-21 00:01:09 +00:00
README Correct yypo in the last commit. 2006-03-04 17:27:08 +00:00
UPDATING The path_cost field should have been increased to 32bits when RSTP support was 2007-08-06 10:16:01 +00:00

This is the top level of the FreeBSD source directory.  This file
was last revised on:
$FreeBSD$

For copyright information, please see the file COPYRIGHT in this
directory (additional copyright information also exists for some
sources in this tree - please see the specific source directories for
more information).

The Makefile in this directory supports a number of targets for
building components (or all) of the FreeBSD source tree, the most
commonly used one being ``world'', which rebuilds and installs
everything in the FreeBSD system from the source tree except the
kernel, the kernel-modules and the contents of /etc.  The
``buildkernel'' and ``installkernel'' targets build and install
the kernel and the modules (see below).  Please see the top of
the Makefile in this directory for more information on the
standard build targets and compile-time flags.

Building a kernel is a somewhat more involved process, documentation
for which can be found at:
   http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig.html
And in the config(8) man page.
Note: If you want to build and install the kernel with the
``buildkernel'' and ``installkernel'' targets, you might need to build
world before.  More information is available in the handbook.

The sample kernel configuration files reside in the sys/<arch>/conf
sub-directory (assuming that you've installed the kernel sources), the
file named GENERIC being the one used to build your initial installation
kernel.  The file NOTES contains entries and documentation for all possible
devices, not just those commonly used.  It is the successor of the ancient
LINT file, but in contrast to LINT, it is not buildable as a kernel but a
pure reference and documentation file.


Source Roadmap:
---------------
bin		System/user commands.

contrib		Packages contributed by 3rd parties.

crypto		Cryptography stuff (see crypto/README).

etc		Template files for /etc.

games		Amusements.

gnu		Various commands and libraries under the GNU Public License.
		Please see gnu/COPYING* for more information.

include		System include files.

kerberos5	Kerberos5 (Heimdal) package.

lib		System libraries.

libexec		System daemons.

release		Release building Makefile & associated tools.

rescue		Build system for statically linked /rescue utilities.

sbin		System commands.

secure		Cryptographic libraries and commands.

share		Shared resources.

sys		Kernel sources.

tools		Utilities for regression testing and miscellaneous tasks.

usr.bin		User commands.

usr.sbin	System administration commands.


For information on synchronizing your source tree with one or more of
the FreeBSD Project's development branches, please see:

  http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/synching.html