diff options
| author | Konstantin Belousov <kib@FreeBSD.org> | 2018-10-23 23:11:38 +0000 |
|---|---|---|
| committer | Konstantin Belousov <kib@FreeBSD.org> | 2018-10-23 23:11:38 +0000 |
| commit | ad6f5f9ab52eeedca8cbdb325e78b33381bd0e2f (patch) | |
| tree | 00ecdbe9783352afefe2eb63b13b0ff245e7feb8 | |
| parent | 8ff7fad1d70ef7c6c43e1dd688ba1747c81077dd (diff) | |
Notes
| -rw-r--r-- | stand/libsa/Makefile | 4 | ||||
| -rw-r--r-- | stand/libsa/crc32_libkern.c | 3 |
2 files changed, 5 insertions, 2 deletions
diff --git a/stand/libsa/Makefile b/stand/libsa/Makefile index 69df6be894ad..d59db0fd51b9 100644 --- a/stand/libsa/Makefile +++ b/stand/libsa/Makefile @@ -155,9 +155,9 @@ SRCS+=ffs_subr.c ffs_tables.c CFLAGS.bzipfs.c+= -I${SRCTOP}/contrib/bzip2 -# explicit_bzero +# explicit_bzero and calculate_crc32c .PATH: ${SYSDIR}/libkern -SRCS+= explicit_bzero.c +SRCS+= explicit_bzero.c crc32_libkern.c # Maybe GELI .if ${MK_LOADER_GELI} == "yes" diff --git a/stand/libsa/crc32_libkern.c b/stand/libsa/crc32_libkern.c new file mode 100644 index 000000000000..995815294d58 --- /dev/null +++ b/stand/libsa/crc32_libkern.c @@ -0,0 +1,3 @@ +/* $FreeBSD$ */ + +#include "../../sys/libkern/crc32.c" |
