#
834517ef |
| 02-Feb-2024 |
Mina Galić <freebsd@igalic.co> |
x86 & arm: remove CAM_DEBUG_FLAGS= from MMCCAM kernels
we leave `options CAMDEBUG` enabled, so that when needed, CAM debugging can be enabled *as needed*, rather than setting a default of everything
x86 & arm: remove CAM_DEBUG_FLAGS= from MMCCAM kernels
we leave `options CAMDEBUG` enabled, so that when needed, CAM debugging can be enabled *as needed*, rather than setting a default of everything.
Reviewed by: imp Pull Request: https://github.com/freebsd/freebsd-src/pull/798
show more ...
|
#
e32ef17d |
| 02-Feb-2024 |
Mina Galić <freebsd@igalic.co> |
arm: fix typo in GENERIC-MMCCAM
Reviewed by: imp Pull Request: https://github.com/freebsd/freebsd-src/pull/798
|
Revision tags: 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 |
|
#
91646fe5 |
| 23-Feb-2023 |
Mike Karels <karels@FreeBSD.org> |
arm kernel config: clean up whitespace
Most options in kernel config files use "options<space><tab>OPTION". This allows the option to be commented out without shifting columns. A few options had two
arm kernel config: clean up whitespace
Most options in kernel config files use "options<space><tab>OPTION". This allows the option to be commented out without shifting columns. A few options had two tabs, and some had spaces. Make them consistent.
show more ...
|
#
6b9acd1b |
| 08-Feb-2023 |
Mateusz Guzik <mjg@FreeBSD.org> |
Exclude MMCCAM kernels from make universe
They don't provide any value and are quite arbitrary.
Note arm64 GENERIC-MMCCAM was already excluded, just not the NODEBUG variant.
The option is already
Exclude MMCCAM kernels from make universe
They don't provide any value and are quite arbitrary.
Note arm64 GENERIC-MMCCAM was already excluded, just not the NODEBUG variant.
The option is already build-tested with arm64 LINT kernel.
Reviewed by: manu Differential Revision: https://reviews.freebsd.org/D38458
show more ...
|
Revision tags: release/12.4.0, release/13.1.0, release/12.3.0, release/13.0.0, release/12.2.0, release/11.4.0, release/12.1.0, release/11.3.0, release/12.0.0 |
|
#
3c8efd61 |
| 18-Oct-2018 |
Ruslan Bukin <br@FreeBSD.org> |
Revert r339421 due to unintended files included to commit.
Reported by: ian Approved by: re (gjb) Sponsored by: DARPA, AFRL
|
#
53c6ad1d |
| 18-Oct-2018 |
Ruslan Bukin <br@FreeBSD.org> |
Support RISC-V implementations that do not manage the A and D bits (e.g. RocketChip, lowRISC and derivatives).
RISC-V page table entries support A (accessed) and D (dirty) bits. The spec makes hardw
Support RISC-V implementations that do not manage the A and D bits (e.g. RocketChip, lowRISC and derivatives).
RISC-V page table entries support A (accessed) and D (dirty) bits. The spec makes hardware support for these bits optional. Implementations that do not manage these bits in hardware raise page faults for accesses to a valid page without A set and writes to a writable page without D set. Check for these types of faults when handling a page fault and fixup the PTE without calling vm_fault if they occur.
Reviewed by: jhb, markj Approved by: re (gjb) Sponsored by: DARPA, AFRL Differential Revision: https://reviews.freebsd.org/D17424
show more ...
|
Revision tags: release/11.2.0 |
|
#
1857bc79 |
| 08-Mar-2018 |
Emmanuel Vadot <manu@FreeBSD.org> |
arm: Add GENERIC-MMCCAM kernel config
MMCCAM is the new mmc stack currently developped by kibab@, add a kernel configuration file that include GENERIC so it's easier to test for people.
|