#
8415a654 |
| 18-Jul-2024 |
Jessica Clarke <jrtc27@FreeBSD.org> |
Retire non-NEW_PCIB code and remove config option
All architectures enable NEW_PCIB in DEFAULTS (arm being the most recent to do so in 121be555997b (arm: Set NEW_PCIB in DEFAULTS rather than a subse
Retire non-NEW_PCIB code and remove config option
All architectures enable NEW_PCIB in DEFAULTS (arm being the most recent to do so in 121be555997b (arm: Set NEW_PCIB in DEFAULTS rather than a subset of kernel configs")), so it's time we removed the legacy code that no longer sees much testing and has a significant maintenance burden.
Reviewed by: jhb, andrew, emaste Differential Revision: https://reviews.freebsd.org/D32954
show more ...
|
Revision tags: release/14.1.0 |
|
#
68cbb072 |
| 25-Apr-2024 |
Brooks Davis <brooks@FreeBSD.org> |
Revert "config.mk: Add MK_VIMAGE knob"
This commit broke "make makeman" checks in github CI due to a lack of option description files. The split between VIMAGE and VIMAGE_SUPPORT is not clearly jus
Revert "config.mk: Add MK_VIMAGE knob"
This commit broke "make makeman" checks in github CI due to a lack of option description files. The split between VIMAGE and VIMAGE_SUPPORT is not clearly justified and the code is broken because there is no opt_vimage.h (it's in opt_global.h).
This reverts commit 22ca6db50f4e6bd75a141f57cf953d8de6531a06.
show more ...
|
#
22ca6db5 |
| 09-Apr-2024 |
Stephen J. Kiernan <stevek@FreeBSD.org> |
config.mk: Add MK_VIMAGE knob
Default to VIMAGE as yes. Add VIMAGE to __DEFAULT_DEPENDENT_OPTIONS (to define VIMAGE_SUPPORT)
Only output VIMAGE to opt_global.h when VIMAGE support is wanted.
Obtai
config.mk: Add MK_VIMAGE knob
Default to VIMAGE as yes. Add VIMAGE to __DEFAULT_DEPENDENT_OPTIONS (to define VIMAGE_SUPPORT)
Only output VIMAGE to opt_global.h when VIMAGE support is wanted.
Obtained from: Juniper Networks, Inc. Differential Revision: https://reviews.freebsd.org/D39636
show more ...
|
Revision tags: release/13.3.0, release/14.0.0 |
|
#
031beb4e |
| 16-Aug-2023 |
Warner Losh <imp@FreeBSD.org> |
sys: Remove $FreeBSD$: one-line sh pattern
Remove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
|
Revision tags: release/13.2.0, release/12.4.0 |
|
#
4355ab6f |
| 24-Oct-2022 |
Warner Losh <imp@FreeBSD.org> |
config.mk: All options in DEFAULTS are now defined in opt_global.h
To simplify management of all the options that should be enabled for the different architectures, adopt the convention that all opt
config.mk: All options in DEFAULTS are now defined in opt_global.h
To simplify management of all the options that should be enabled for the different architectures, adopt the convention that all options listed in DEFAULTS will be #defined to 1 in opt_global.h for untied builds. Except for GEOM_* and ISAPNP, they are all in opt_global.h. ISAPNP is a opt_dontuse.h, so only filter GEOM_*.
Sponsored by: Netflix Reviewed by: kevans Differential Revision: https://reviews.freebsd.org/D37108
show more ...
|
Revision tags: release/13.1.0 |
|
#
ff8d9d9c |
| 05-Apr-2022 |
Warner Losh <imp@FreeBSD.org> |
config.mk: Add opt_platform.h support
opt_platform.h is now included from miivar.h, so add support for generating it in the standalone build case.
Sponsored by: Netflix
|
#
c09981f1 |
| 31-Dec-2021 |
Warner Losh <imp@FreeBSD.org> |
mips: Remove sys/mips
Remove sys/mips as the next step of decomissioning mips from the tree. Remove mips special cases from the kernel make files. Remove the mips specific linker scripts.
Sponsored
mips: Remove sys/mips
Remove sys/mips as the next step of decomissioning mips from the tree. Remove mips special cases from the kernel make files. Remove the mips specific linker scripts.
Sponsored by: Netflix
show more ...
|
Revision tags: release/12.3.0, release/13.0.0, release/12.2.0 |
|
#
79ddb55c |
| 25-Jun-2020 |
Mark Johnston <markj@FreeBSD.org> |
Add SCTP_SUPPORT handling to config.mk.
Reviewed by: jhb, tuexen MFC after: 2 weeks Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D25402
|
Revision tags: release/11.4.0 |
|
#
1319a761 |
| 30-May-2020 |
John Baldwin <jhb@FreeBSD.org> |
Only build ipsec modules if the kernel includes IPSEC_SUPPORT.
Honoring the kernel-supplied opt_ipsec.h in r361632 causes builds of ipsec modules to fail if the kernel doesn't include IPSEC_SUPPORT.
Only build ipsec modules if the kernel includes IPSEC_SUPPORT.
Honoring the kernel-supplied opt_ipsec.h in r361632 causes builds of ipsec modules to fail if the kernel doesn't include IPSEC_SUPPORT. However, the module can never be loaded into such a kernel, so only build the modules if the kernel includes IPSEC_SUPPORT.
Reviewed by: imp Differential Revision: https://reviews.freebsd.org/D25059
show more ...
|
#
4bcbd26f |
| 29-May-2020 |
John Baldwin <jhb@FreeBSD.org> |
Honor opt_ipsec.h from kernel builds.
To make this simpler, set the default contents of opt_ipsec.h for standalone modules in sys/conf/config.mk.
Reviewed by: imp MFC after: 2 weeks Sponsored by: N
Honor opt_ipsec.h from kernel builds.
To make this simpler, set the default contents of opt_ipsec.h for standalone modules in sys/conf/config.mk.
Reviewed by: imp MFC after: 2 weeks Sponsored by: Netflix Differential Revision: https://reviews.freebsd.org/D25046
show more ...
|
#
483d953a |
| 05-May-2020 |
John Baldwin <jhb@FreeBSD.org> |
Initial support for bhyve save and restore.
Save and restore (also known as suspend and resume) permits a snapshot to be taken of a guest's state that can later be resumed. In the current implement
Initial support for bhyve save and restore.
Save and restore (also known as suspend and resume) permits a snapshot to be taken of a guest's state that can later be resumed. In the current implementation, bhyve(8) creates a UNIX domain socket that is used by bhyvectl(8) to send a request to save a snapshot (and optionally exit after the snapshot has been taken). A snapshot currently consists of two files: the first holds a copy of guest RAM, and the second file holds other guest state such as vCPU register values and device model state.
To resume a guest, bhyve(8) must be started with a matching pair of command line arguments to instantiate the same set of device models as well as a pointer to the saved snapshot.
While the current implementation is useful for several uses cases, it has a few limitations. The file format for saving the guest state is tied to the ABI of internal bhyve structures and is not self-describing (in that it does not communicate the set of device models present in the system). In addition, the state saved for some device models closely matches the internal data structures which might prove a challenge for compatibility of snapshot files across a range of bhyve versions. The file format also does not currently support versioning of individual chunks of state. As a result, the current file format is not a fixed binary format and future revisions to save and restore will break binary compatiblity of snapshot files. The goal is to move to a more flexible format that adds versioning, etc. and at that point to commit to providing a reasonable level of compatibility. As a result, the current implementation is not enabled by default. It can be enabled via the WITH_BHYVE_SNAPSHOT=yes option for userland builds, and the kernel option BHYVE_SHAPSHOT.
Submitted by: Mihai Tiganus, Flavius Anton, Darius Mihai Submitted by: Elena Mihailescu, Mihai Carabas, Sergiu Weisz Relnotes: yes Sponsored by: University Politehnica of Bucharest Sponsored by: Matthew Grooms (student scholarships) Sponsored by: iXsystems Differential Revision: https://reviews.freebsd.org/D19495
show more ...
|
#
bc02c18c |
| 07-Feb-2020 |
Dimitry Andric <dim@FreeBSD.org> |
Merge ^/head r357408 through r357661.
|
#
a4b3b535 |
| 05-Feb-2020 |
Mark Johnston <markj@FreeBSD.org> |
Define SMP for standalone module builds.
Suggested and reviewed by: kevans Differential Revision: https://reviews.freebsd.org/D23519
|
#
59abbffa |
| 31-Jan-2020 |
Dimitry Andric <dim@FreeBSD.org> |
Merge ^/head r357270 through r357349.
|
#
7df58aa8 |
| 29-Jan-2020 |
Kyle Evans <kevans@FreeBSD.org> |
config.mk: #define MAC as well
MAC is also almost universally a default; every GENERIC includes it, and it's std.armv[67]. mips is again the oddball here with it only being included in ERL/OCTEON1.
config.mk: #define MAC as well
MAC is also almost universally a default; every GENERIC includes it, and it's std.armv[67]. mips is again the oddball here with it only being included in ERL/OCTEON1.
The only module currently working around this one is mac_veriexec, but it looks like nothing it builds actually uses the MAC definition. Downstream consumers enabling MAC in mips using mac_veriexec may be advised to do something differently here in config.mk.
show more ...
|
#
bb1d0df5 |
| 29-Jan-2020 |
Dimitry Andric <dim@FreeBSD.org> |
Merge ^/head r357179 through r357269.
|
#
861526b5 |
| 29-Jan-2020 |
Kyle Evans <kevans@FreeBSD.org> |
mips: unbreak module builds after r357265
Touch opt_global.h to make sure it exists...
Pointy hat: kevans
|
#
0c4c5948 |
| 29-Jan-2020 |
Kyle Evans <kevans@FreeBSD.org> |
kmod build: start generating opt_global.h, include it
For untied module builds, we'll generate opt_foo headers if they're included in SRCS. However, options that would normally be represented in opt
kmod build: start generating opt_global.h, include it
For untied module builds, we'll generate opt_foo headers if they're included in SRCS. However, options that would normally be represented in opt_global.h aren't properly represented.
Start generating opt_global.h with #define VIMAGE for !mips since it's almost universally a project default and right now kmods must hack it in themselves in order to be properly compiled for the default kernel. For example, ^/sys/modules/pf/Makefile
Reviewed by: imp Differential Revision: https://reviews.freebsd.org/D23345
show more ...
|
Revision tags: release/12.1.0 |
|
#
a63915c2 |
| 28-Jul-2019 |
Alan Somers <asomers@FreeBSD.org> |
MFHead @r350386
Sponsored by: The FreeBSD Foundation
|
#
eec0e91e |
| 19-Jul-2019 |
Warner Losh <imp@FreeBSD.org> |
Add comments about KERN_OPT here.
|
Revision tags: release/11.3.0 |
|
#
88148a07 |
| 22-Jan-2019 |
Dimitry Andric <dim@FreeBSD.org> |
Merge ^/head r343202 through r343319.
|
#
4945f79a |
| 20-Jan-2019 |
Andriy Voskoboinyk <avos@FreeBSD.org> |
Remove IEEE80211_AMPDU_AGE config option.
It is noop since r297774.
|
Revision tags: release/12.0.0, release/11.2.0 |
|
#
d395e093 |
| 10-Mar-2018 |
Bryan Drewery <bdrewery@FreeBSD.org> |
Reduce overhead for simple 'make -V' lookups by avoiding 'find sys/'.
Setting -DNO_SKIP_MPATH can be used for debugging.
Reported by: bde MFC after: 2 weeks Sponsored by: Dell EMC
|
Revision tags: release/10.4.0, release/11.1.0 |
|
#
686fb94a |
| 10-Jun-2017 |
Dimitry Andric <dim@FreeBSD.org> |
Merge ^/head r319548 through r319778.
|
#
e2e6a2a1 |
| 04-Jun-2017 |
Dmitry Chagin <dchagin@FreeBSD.org> |
Revert r319053 due to lack of sence. As pointed out by kib@ opt_global.h contains such fundamental settings as e.g. SMP option and fake opt_global.h almost never match real configured kernels.
Repor
Revert r319053 due to lack of sence. As pointed out by kib@ opt_global.h contains such fundamental settings as e.g. SMP option and fake opt_global.h almost never match real configured kernels.
Reported by: kib@
show more ...
|