1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-11-24 07:40:52 +00:00
freebsd/sys
Emmanuel Vadot 13d00a43cb conf: Add usbhid and hidbus to GENERIC* kernel configs
Include the new unified HID stack by default in generic.
This will allow us to migrate to the multi-stack hkbd and hms instead of
relying on the older ukbd and ums which only work with USB.
To test those drivers just add hw.usb.usbhid.enable=1 in loader.conf

Differential Revision:	https://reviews.freebsd.org/D45658
Reviewed by:	emaste, imp, wulf (all older version)
Sponsored by:	Beckhoff Automation GmbH & Co. KG
2024-07-10 08:05:25 +02:00
..
amd64 conf: Add usbhid and hidbus to GENERIC* kernel configs 2024-07-10 08:05:25 +02:00
arm conf: Add usbhid and hidbus to GENERIC* kernel configs 2024-07-10 08:05:25 +02:00
arm64 conf: Add usbhid and hidbus to GENERIC* kernel configs 2024-07-10 08:05:25 +02:00
bsm
cam
cddl sdt: Fix aframe handling after commit ddf0ed09bd 2024-07-08 11:40:24 -04:00
compat LinuxKPI: Add DEFINE_DEBUGFS_ATTRIBUTE_SIGNED to linux/debugfs.h 2024-06-26 23:51:34 +03:00
conf riscv: support PV_STATS pmap option 2024-07-08 11:44:10 -03:00
contrib Mark the zfs.mount_snapshot jail parameter as boolean. 2024-06-24 13:00:49 -07:00
crypto ossl: Add support for powerpc64/powerpc64le 2024-06-21 03:29:04 -04:00
ddb ddb: make db_error reliably no-return 2024-07-09 10:59:27 -07:00
dev sound: drop midistat lock in error path 2024-07-09 11:20:59 -08:00
dts
fs ext4_ext_tree_init: correct memset initialization 2024-06-25 10:41:11 -07:00
gdb
geom
gnu
i386 conf: Add usbhid and hidbus to GENERIC* kernel configs 2024-07-10 08:05:25 +02:00
isa
kern kdb_sysctl_trap: suppress gcc -Warray-bounds 2024-07-09 10:58:21 -07:00
kgssapi
libkern gsb_crc32.c: avoid gcc -Wunused-const-variable in user build 2024-07-02 12:12:22 -07:00
modules Stop forcing -g in mpi3mr module because it breaks non-debug install. 2024-07-07 05:43:29 -06:00
net ethernet: Retire M_HASFCS 2024-07-05 00:53:51 +08:00
net80211 net: Remove unneeded NULL check for the allocated ifnet 2024-06-28 18:16:29 +08:00
netgraph bluetooth socket sysinit: correct memset initialization 2024-07-01 08:22:31 -07:00
netinet tcp: minor cleanup 2024-06-29 11:06:35 +02:00
netinet6
netipsec
netlink netlink/route: provide pre-2.6.19 Linux compat shim 2024-06-20 16:10:39 -07:00
netpfil if_pfsync: lock buckets during pfsync_drop() 2024-07-09 22:07:13 +02:00
netsmb
nfs
nfsclient
nfsserver
nlm
ofed net: Remove unneeded NULL check for the allocated ifnet 2024-06-28 18:16:29 +08:00
opencrypto ktls: Remove the socket parameter to ktls_ocf_try() 2024-07-08 12:10:48 -04:00
powerpc conf: Add usbhid and hidbus to GENERIC* kernel configs 2024-07-10 08:05:25 +02:00
riscv conf: Add usbhid and hidbus to GENERIC* kernel configs 2024-07-10 08:05:25 +02:00
rpc
security
sys sx: avoid gcc -Wunused-value 2024-07-09 11:43:57 -07:00
teken
tests
tools
ufs
vm swap_pager: speedup meta_transfer 2024-07-07 18:19:22 -05:00
x86 busdma: avoid buflen underflow 2024-07-08 11:51:31 -03:00
xdr
xen
Makefile
README.md man filesystems: fix more xrefs after move to s4 2024-06-27 18:32:05 -06:00

FreeBSD Kernel Source:

This directory contains the source files and build glue that make up the FreeBSD kernel and its modules, including both original and contributed software.

Kernel configuration files are located in the conf/ subdirectory of each architecture. GENERIC is the configuration used in release builds. NOTES contains documentation of all possible entries. LINT is a compile-only configuration used to maximize build coverage and detect regressions.

Documentation:

Source code documentation is maintained in a set of man pages, under section 9. These pages are located in share/man/man9, from the top-level of the src tree. Consult intro(9) for an overview of existing pages.

Some additional high-level documentation of the kernel is maintained in the Architecture Handbook.

Source Roadmap:

Directory Description
amd64 AMD64 (64-bit x86) architecture support
arm 32-bit ARM architecture support
arm64 64-bit ARM (AArch64) architecture support
cam Common Access Method storage subsystem - cam(4) and ctl(4)
cddl CDDL-licensed optional sources such as DTrace
conf kernel build glue
compat Linux compatibility layer, FreeBSD 32-bit compatibility
contrib 3rd-party imported software such as OpenZFS
crypto crypto drivers
ddb interactive kernel debugger - ddb(4)
fs most filesystems, excluding UFS, NFS, and ZFS
dev device drivers and other arch independent code
gdb kernel remote GDB stub - gdb(4)
geom GEOM framework - geom(4)
i386 i386 (32-bit x86) architecture support
kern main part of the kernel
libkern libc-like and other support functions for kernel use
modules kernel module infrastructure
net core networking code
net80211 wireless networking (IEEE 802.11) - net80211(4)
netgraph graph-based networking subsystem - netgraph(4)
netinet IPv4 protocol implementation - inet(4)
netinet6 IPv6 protocol implementation - inet6(4)
netipsec IPsec protocol implementation - ipsec(4)
netpfil packet filters - ipfw(4), pf(4), and ipfilter(4)
opencrypto OpenCrypto framework - crypto(7)
powerpc PowerPC/POWER (32 and 64-bit) architecture support
riscv 64-bit RISC-V architecture support
security security facilities - audit(4) and mac(4)
sys kernel headers
tests kernel unit tests
ufs Unix File System - ffs(4)
vm virtual memory system
x86 code shared by AMD64 and i386 architectures