diff options
Diffstat (limited to 'sys/modules')
| -rw-r--r-- | sys/modules/Makefile | 4 | ||||
| -rw-r--r-- | sys/modules/random/Makefile | 13 | ||||
| -rw-r--r-- | sys/modules/randomdev/Makefile | 13 |
3 files changed, 28 insertions, 2 deletions
diff --git a/sys/modules/Makefile b/sys/modules/Makefile index 198f6d96dcd1..16a805aa0ef0 100644 --- a/sys/modules/Makefile +++ b/sys/modules/Makefile @@ -6,8 +6,8 @@ SUBDIR= accf_data accf_http agp aha amr an aue \ ccd cd9660 coda cue dc fdesc fxp if_disc if_ef \ if_ppp if_sl if_tun ipfilter ipfw ispfw joy kernfs kue \ md mfs mii mlx msdos ncp netgraph nfs ntfs nullfs \ - nwfs oldcard pccard pcic portal procfs rl rp sf sis sk sn ste syscons \ - ti tl twe tx \ + nwfs oldcard pccard pcic portal procfs randomdev \ + rl rp sf sis sk sn ste syscons ti tl twe tx \ udbp ugen uhid ukbd ulpt umapfs umass umodem ums union urio usb \ vinum vn vpo vr wb wx xl diff --git a/sys/modules/random/Makefile b/sys/modules/random/Makefile new file mode 100644 index 000000000000..93b978999f14 --- /dev/null +++ b/sys/modules/random/Makefile @@ -0,0 +1,13 @@ +# $FreeBSD$ + +.PATH: ${.CURDIR}/../../dev/randomdev +.PATH: ${.CURDIR}/../../crypto/blowfish +#.PATH: ${.CURDIR}/../../crypto/des +KMOD = randomdev +SRCS = bus_if.h device_if.h randomdev.c yarrow.c +SRCS += bf_cbc.c bf_skey.c bf_enc.c +CFLAGS += -I${.CURDIR}/../../dev/randomdev +#SRCS += sha1.c des_setkey.c des_ecb.c +NOMAN = yes + +.include <bsd.kmod.mk> diff --git a/sys/modules/randomdev/Makefile b/sys/modules/randomdev/Makefile new file mode 100644 index 000000000000..93b978999f14 --- /dev/null +++ b/sys/modules/randomdev/Makefile @@ -0,0 +1,13 @@ +# $FreeBSD$ + +.PATH: ${.CURDIR}/../../dev/randomdev +.PATH: ${.CURDIR}/../../crypto/blowfish +#.PATH: ${.CURDIR}/../../crypto/des +KMOD = randomdev +SRCS = bus_if.h device_if.h randomdev.c yarrow.c +SRCS += bf_cbc.c bf_skey.c bf_enc.c +CFLAGS += -I${.CURDIR}/../../dev/randomdev +#SRCS += sha1.c des_setkey.c des_ecb.c +NOMAN = yes + +.include <bsd.kmod.mk> |
