diff options
author | jkim <jkim@FreeBSD.org> | 2012-01-09 23:20:30 +0000 |
---|---|---|
committer | jkim <jkim@FreeBSD.org> | 2012-01-09 23:20:30 +0000 |
commit | ff2010b86c6b67928c735d9fb6d3144308dda880 (patch) | |
tree | b9c025c2f7453938771168e50ec14dab97c83566 /sys/modules/random | |
parent | 7b24e933235fed8644759a8a95994a3e22dd0c2e (diff) | |
download | FreeBSD-src-ff2010b86c6b67928c735d9fb6d3144308dda880.zip FreeBSD-src-ff2010b86c6b67928c735d9fb6d3144308dda880.tar.gz |
Enable hardware RNG for VIA Nano processors.
PR: kern/163974
Diffstat (limited to 'sys/modules/random')
-rw-r--r-- | sys/modules/random/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/modules/random/Makefile b/sys/modules/random/Makefile index 37c4d82..746f45a 100644 --- a/sys/modules/random/Makefile +++ b/sys/modules/random/Makefile @@ -6,7 +6,7 @@ KMOD= random SRCS= randomdev.c probe.c -.if ${MACHINE} == "i386" +.if ${MACHINE} == "amd64" || ${MACHINE} == "i386" SRCS+= nehemiah.c .endif SRCS+= randomdev_soft.c yarrow.c hash.c |