Update makefiles, kernel.c moved to libzpool
This commit is contained in:
parent
4caa960910
commit
eb4c9bf039
|
@ -1,5 +1,5 @@
|
||||||
subdir-m += include
|
subdir-m += include
|
||||||
DISTFILES = kernel.c mkdirp.c strlcpy.c taskq.c util.c
|
DISTFILES = mkdirp.c strlcpy.c taskq.c util.c
|
||||||
DISTFILES += list.c strlcat.c strnlen.c u8_textprep.c
|
DISTFILES += list.c strlcat.c strnlen.c u8_textprep.c
|
||||||
|
|
||||||
LIBRARY := libzport
|
LIBRARY := libzport
|
||||||
|
@ -17,7 +17,6 @@ always := $(hostprogs-y)
|
||||||
|
|
||||||
zu-objs := zu.o ${LIBRARY}.so
|
zu-objs := zu.o ${LIBRARY}.so
|
||||||
|
|
||||||
${LIBRARY}-objs += kernel.o
|
|
||||||
${LIBRARY}-objs += mkdirp.o
|
${LIBRARY}-objs += mkdirp.o
|
||||||
${LIBRARY}-objs += strlcpy.o
|
${LIBRARY}-objs += strlcpy.o
|
||||||
${LIBRARY}-objs += taskq.o
|
${LIBRARY}-objs += taskq.o
|
||||||
|
|
|
@ -93,5 +93,5 @@ ${MODULE}-objs += zfs_znode.o # Vnode to znode mapping
|
||||||
# Traversal
|
# Traversal
|
||||||
${MODULE}-objs += dmu_traverse.o# Traversal code
|
${MODULE}-objs += dmu_traverse.o# Traversal code
|
||||||
|
|
||||||
# SPL (Solaris Porting Layer)
|
# Kernel or User Space Integration
|
||||||
${MODULE}-objs += spl.o # Linux kernel glue and misc support
|
${MODULE}-objs += kernel.o # Linux kernel/user glue and misc support
|
||||||
|
|
Loading…
Reference in New Issue