aboutsummaryrefslogtreecommitdiff
path: root/sys/modules/geom
diff options
context:
space:
mode:
authorMaxim Sobolev <sobomax@FreeBSD.org>2016-02-24 00:39:36 +0000
committerMaxim Sobolev <sobomax@FreeBSD.org>2016-02-24 00:39:36 +0000
commit5497acc527bc4cb3360da4699afa0872599e35b7 (patch)
treed648a3c5a9492053898ce9ba17760eb93da53df6 /sys/modules/geom
parent361e1fb408f94d4496e077a63d4fc180cae7733c (diff)
downloadsrc-5497acc527bc4cb3360da4699afa0872599e35b7.tar.gz
src-5497acc527bc4cb3360da4699afa0872599e35b7.zip
Obsolete mkulzma(8) and geom_uncompress(4), their functionality
is now provided by mkuzip(8) and geom_uzip(4) respectively. MFC after: 1 month
Notes
Notes: svn path=/head/; revision=295945
Diffstat (limited to 'sys/modules/geom')
-rw-r--r--sys/modules/geom/Makefile1
-rw-r--r--sys/modules/geom/geom_uncompress/Makefile17
2 files changed, 0 insertions, 18 deletions
diff --git a/sys/modules/geom/Makefile b/sys/modules/geom/Makefile
index f54a3e83c8a1..8d7e3c6deb3f 100644
--- a/sys/modules/geom/Makefile
+++ b/sys/modules/geom/Makefile
@@ -21,7 +21,6 @@ SUBDIR= geom_bde \
geom_sched \
geom_shsec \
geom_stripe \
- geom_uncompress \
geom_uzip \
geom_vinum \
geom_virstor \
diff --git a/sys/modules/geom/geom_uncompress/Makefile b/sys/modules/geom/geom_uncompress/Makefile
deleted file mode 100644
index 1bebeb5f012b..000000000000
--- a/sys/modules/geom/geom_uncompress/Makefile
+++ /dev/null
@@ -1,17 +0,0 @@
-# $FreeBSD$
-
-.PATH: ${.CURDIR}/../../../geom/uncompress \
- ${.CURDIR}/../../../contrib/xz-embedded/freebsd/ \
- ${.CURDIR}/../../../contrib/xz-embedded/linux/lib/xz/ \
- ${.CURDIR}/../../../contrib/xz-embedded/linux/include/linux/ \
- ${.CURDIR}/../../../net
-
-KMOD= geom_uncompress
-CFLAGS+= -I${.CURDIR}/../../../geom/uncompress/ \
- -I${.CURDIR}/../../../contrib/xz-embedded/freebsd \
- -I${.CURDIR}/../../../contrib/xz-embedded/linux/lib/xz/
-SRCS= g_uncompress.c xz_crc32.c xz_dec_bcj.c xz_dec_lzma2.c xz_dec_stream.c \
- xz_malloc.c
-SRCS+= xz.h xz_config.h xz_lzma2.h xz_malloc.h xz_private.h xz_stream.h
-
-.include <bsd.kmod.mk>