mirror of
https://git.FreeBSD.org/src.git
synced 2024-11-27 08:00:11 +00:00
Connect padlock(4) to amd64 build for VIA Nano processors.
This commit is contained in:
parent
8efe053612
commit
9045c73682
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=187112
@ -128,6 +128,9 @@ amd64/pci/pci_bus.c optional pci
|
||||
amd64/pci/pci_cfgreg.c optional pci
|
||||
crypto/blowfish/bf_enc.c optional crypto | ipsec
|
||||
crypto/des/des_enc.c optional crypto | ipsec | netsmb
|
||||
crypto/via/padlock.c optional padlock
|
||||
crypto/via/padlock_cipher.c optional padlock
|
||||
crypto/via/padlock_hash.c optional padlock
|
||||
dev/acpica/acpi_if.m standard
|
||||
dev/agp/agp_amd64.c optional agp
|
||||
dev/agp/agp_i810.c optional agp
|
||||
|
@ -35,7 +35,7 @@ __FBSDID("$FreeBSD$");
|
||||
#include <sys/rwlock.h>
|
||||
#include <sys/malloc.h>
|
||||
#include <sys/libkern.h>
|
||||
#if defined(__i386__) && !defined(PC98)
|
||||
#if defined(__amd64__) || (defined(__i386__) && !defined(PC98))
|
||||
#include <machine/cpufunc.h>
|
||||
#include <machine/cputypes.h>
|
||||
#include <machine/md_var.h>
|
||||
@ -85,7 +85,7 @@ padlock_probe(device_t dev)
|
||||
{
|
||||
char capp[256];
|
||||
|
||||
#if defined(__i386__) && !defined(PC98)
|
||||
#if defined(__amd64__) || (defined(__i386__) && !defined(PC98))
|
||||
/* If there is no AES support, we has nothing to do here. */
|
||||
if (!(via_feature_xcrypt & VIA_HAS_AES)) {
|
||||
device_printf(dev, "No ACE support.\n");
|
||||
|
@ -34,7 +34,7 @@ __FBSDID("$FreeBSD$");
|
||||
#include <sys/malloc.h>
|
||||
#include <sys/libkern.h>
|
||||
#include <sys/endian.h>
|
||||
#if defined(__i386__) && !defined(PC98)
|
||||
#if defined(__amd64__) || (defined(__i386__) && !defined(PC98))
|
||||
#include <machine/cpufunc.h>
|
||||
#include <machine/cputypes.h>
|
||||
#include <machine/md_var.h>
|
||||
|
@ -553,6 +553,11 @@ _nxge= nxge
|
||||
.if ${MK_CDDL} != "no" || defined(ALL_MODULES)
|
||||
_opensolaris= opensolaris
|
||||
.endif
|
||||
.if ${MK_CRYPT} != "no" || defined(ALL_MODULES)
|
||||
.if exists(${.CURDIR}/../crypto/via)
|
||||
_padlock= padlock
|
||||
.endif
|
||||
.endif
|
||||
_pccard= pccard
|
||||
_rdma= rdma
|
||||
_safe= safe
|
||||
|
Loading…
Reference in New Issue
Block a user