ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/src/trunk/usr.bin/mkuzip/mkuz_lzma.h
Revision: 11473
Committed: Sat Jul 7 17:19:29 2018 UTC (5 years, 9 months ago) by laffer1
Content type: text/plain
File size: 1957 byte(s)
Log Message:
sync with freebsd

File Contents

# Content
1 /* $MidnightBSD$ */
2 /*
3 * Copyright (c) 2004-2016 Maxim Sobolev <sobomax@FreeBSD.org>
4 * Copyright (c) 2011 Aleksandr Rybalko <ray@ddteam.net>
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 * SUCH DAMAGE.
27 *
28 * $FreeBSD: stable/10/usr.bin/mkuzip/mkuz_lzma.h 303095 2016-07-20 16:36:17Z sobomax $
29 */
30
31 /* Format L3.0, since we move to XZ API */
32 #define CLOOP_MAGIC_LZMA \
33 "#!/bin/sh\n" \
34 "#L3.0\n" \
35 "n=uncompress\n" \
36 "m=geom_$n\n" \
37 "(kldstat -m $m 2>&-||kldload $m)>&-&&" \
38 "mount_cd9660 /dev/`mdconfig -af $0`.$n $1\n" \
39 "exit $?\n"
40 #define DEFAULT_SUFX_LZMA ".ulzma"
41
42 void *mkuz_lzma_init(uint32_t);
43 struct mkuz_blk *mkuz_lzma_compress(void *, const struct mkuz_blk *);

Properties

Name Value
svn:eol-style native
svn:keywords MidnightBSD=%H
svn:mime-type text/plain