diff options
| author | David E. O'Brien <obrien@FreeBSD.org> | 2025-10-23 22:27:06 +0000 |
|---|---|---|
| committer | David E. O'Brien <obrien@FreeBSD.org> | 2025-10-23 23:17:19 +0000 |
| commit | d1ca01059d5d756a4aef09d955e98aa59a284344 (patch) | |
| tree | c5912cd0f7172e1e7f306f68ba51c45904f6b84b /sys/modules/Makefile | |
| parent | 0d589ecbc7aa916537fd21c0344919491cfcb293 (diff) | |
padlock(4)/nehemiah: move i386-only entropy source to MD files
Reviewed by: khng
Differential Revision: https://reviews.freebsd.org/D53309
Diffstat (limited to 'sys/modules/Makefile')
| -rw-r--r-- | sys/modules/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/modules/Makefile b/sys/modules/Makefile index 9bc743c0c6d1..cde4c1c0e9ac 100644 --- a/sys/modules/Makefile +++ b/sys/modules/Makefile @@ -819,7 +819,6 @@ _nfe= nfe _nvram= nvram .if ${MK_CRYPT} != "no" || defined(ALL_MODULES) _padlock= padlock -_padlock_rng= padlock_rng _rdrand_rng= rdrand_rng _rdseed_rng= rdseed_rng .endif @@ -892,6 +891,9 @@ _glxsb= glxsb _pcfclock= pcfclock _pst= pst _sbni= sbni +.if ${MK_CRYPT} != "no" || defined(ALL_MODULES) +_padlock_rng= padlock_rng +.endif .endif .if ${MACHINE_ARCH} == "armv7" |
