sys: Remove $FreeBSD$: one-line sh patternRemove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
Fix some modules to export more used symbolsand remove non-present symbols that are now reported by kmod_syms.awk.Reviewed by: emasteSponsored by: The FreeBSD FoundationMFC after: 1 weekDiffer
Fix some modules to export more used symbolsand remove non-present symbols that are now reported by kmod_syms.awk.Reviewed by: emasteSponsored by: The FreeBSD FoundationMFC after: 1 weekDifferential revision: https://reviews.freebsd.org/D32878
show more ...
sys/modules: normalize .CURDIR-relative paths to SRCTOPThis simplifies make output/logicTested with: `cd sys/modules; make ALL_MODULES=` on amd64MFC after: 1 monthSponsored by: Dell EMC Isilon
Follow up to r225203 refining break-to-debugger run-time configurationimprovements:(1) Implement new model in previously missed at91 UART driver(2) Move BREAK_TO_DEBUGGER and ALT_BREAK_TO_DEBUGGE
Follow up to r225203 refining break-to-debugger run-time configurationimprovements:(1) Implement new model in previously missed at91 UART driver(2) Move BREAK_TO_DEBUGGER and ALT_BREAK_TO_DEBUGGER from opt_comconsole.h to opt_kdb.h (spotted by np)(3) Garbage collect now-unused opt_comconsole.hMFC after: 3 weeksApproved by: re (bz)
Fix a breakage with "MODULES_WITH_WORLD=true make buildworld".PR: kern/11320
Let modules use the kernel's opt_*.h files if built along withthe kernel by wrapping all targets for fake opt_*.h files in.if defined(KERNBUILDDIR). Thus, such fake files won't becreated at all i
Let modules use the kernel's opt_*.h files if built along withthe kernel by wrapping all targets for fake opt_*.h files in.if defined(KERNBUILDDIR). Thus, such fake files won't becreated at all if modules are built with the kernel.Some modules undergo cleanup like removing unused or unneededoptions or .h files, without which they wouldn't build this wayor the other.Reviewed by: ruTested by: no binary changes in modules built aloneTested on: i386 sparc64 amd64
Add dcons_os.{c,h}.
Replace DDB with KDB.
Add dumb console driver and related bits.dcons(4): very simple console and gdb port driverdcons_crom(4): FireWire attachmentdconschat(8): User interface to dconsTested with: i386, i386-PAE, and
Add dumb console driver and related bits.dcons(4): very simple console and gdb port driverdcons_crom(4): FireWire attachmentdconschat(8): User interface to dconsTested with: i386, i386-PAE, and sparc64.