diff options
| author | Warner Losh <imp@FreeBSD.org> | 2026-07-10 04:04:04 +0000 |
|---|---|---|
| committer | Warner Losh <imp@FreeBSD.org> | 2026-07-10 04:09:40 +0000 |
| commit | f273414c11e46c1e388aebc6bd45f83e91beeb11 (patch) | |
| tree | d6a09a4c56c1c5b0865a3c7414e9942ae592127c | |
| parent | 5792a639ab950fb7e6add09352e1cd41f1809bc2 (diff) | |
MINIMAL: Add device md
This can't be a loadable module, so add it to MINIMAL
Sponsored by: Netflix
Differential Revision: https://reviews.freebsd.org/D58067
| -rw-r--r-- | sys/amd64/conf/MINIMAL | 1 | ||||
| -rw-r--r-- | sys/i386/conf/MINIMAL | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/sys/amd64/conf/MINIMAL b/sys/amd64/conf/MINIMAL index bf371f79ed86..30a8dad75b7b 100644 --- a/sys/amd64/conf/MINIMAL +++ b/sys/amd64/conf/MINIMAL @@ -130,6 +130,7 @@ device uart # Generic UART driver # Pseudo devices. device loop # Network loopback device ether # Ethernet support +device md # Memory "disks" # The `bpf' device enables the Berkeley Packet Filter. # Be aware of the administrative consequences of enabling this! diff --git a/sys/i386/conf/MINIMAL b/sys/i386/conf/MINIMAL index ec46c91aaad2..e3ef9dddbea8 100644 --- a/sys/i386/conf/MINIMAL +++ b/sys/i386/conf/MINIMAL @@ -142,6 +142,7 @@ device loop # Network loopback device padlock_rng # VIA Padlock RNG device rdrand_rng # Intel Bull Mountain RNG device ether # Ethernet support +device md # Memory "disks" # The `bpf' device enables the Berkeley Packet Filter. # Be aware of the administrative consequences of enabling this! |
