1295943Ssobomax/*
2295943Ssobomax * Copyright (c) 2004-2016 Maxim Sobolev <sobomax@FreeBSD.org>
3295943Ssobomax * Copyright (c) 2011 Aleksandr Rybalko <ray@ddteam.net>
4295943Ssobomax * All rights reserved.
5295943Ssobomax *
6295943Ssobomax * Redistribution and use in source and binary forms, with or without
7295943Ssobomax * modification, are permitted provided that the following conditions
8295943Ssobomax * are met:
9295943Ssobomax * 1. Redistributions of source code must retain the above copyright
10295943Ssobomax *    notice, this list of conditions and the following disclaimer.
11295943Ssobomax * 2. Redistributions in binary form must reproduce the above copyright
12295943Ssobomax *    notice, this list of conditions and the following disclaimer in the
13295943Ssobomax *    documentation and/or other materials provided with the distribution.
14295943Ssobomax *
15295943Ssobomax * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16295943Ssobomax * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17295943Ssobomax * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18295943Ssobomax * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
19295943Ssobomax * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20295943Ssobomax * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21295943Ssobomax * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22295943Ssobomax * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23295943Ssobomax * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24295943Ssobomax * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25295943Ssobomax * SUCH DAMAGE.
26295943Ssobomax *
27295943Ssobomax * $FreeBSD: releng/11.0/usr.bin/mkuzip/mkuz_lzma.h 298504 2016-04-23 07:23:43Z sobomax $
28295943Ssobomax */
29295943Ssobomax
30295943Ssobomax/* Format L3.0, since we move to XZ API */
31295943Ssobomax#define CLOOP_MAGIC_LZMA \
32295943Ssobomax    "#!/bin/sh\n" \
33295943Ssobomax    "#L3.0\n" \
34295943Ssobomax    "n=uncompress\n" \
35295943Ssobomax    "m=geom_$n\n" \
36295943Ssobomax    "(kldstat -m $m 2>&-||kldload $m)>&-&&" \
37295943Ssobomax        "mount_cd9660 /dev/`mdconfig -af $0`.$n $1\n" \
38295943Ssobomax    "exit $?\n"
39295943Ssobomax#define DEFAULT_SUFX_LZMA   ".ulzma"
40295943Ssobomax
41295943Ssobomaxvoid *mkuz_lzma_init(uint32_t);
42298504Ssobomaxstruct mkuz_blk *mkuz_lzma_compress(void *, const struct mkuz_blk *);
43