1265625Smarcel/*-
2265625Smarcel * Copyright (c) 2014 Juniper Networks, Inc.
3265625Smarcel * All rights reserved.
4265625Smarcel *
5265625Smarcel * Redistribution and use in source and binary forms, with or without
6265625Smarcel * modification, are permitted provided that the following conditions
7265625Smarcel * are met:
8265625Smarcel * 1. Redistributions of source code must retain the above copyright
9265625Smarcel *    notice, this list of conditions and the following disclaimer.
10265625Smarcel * 2. Redistributions in binary form must reproduce the above copyright
11265625Smarcel *    notice, this list of conditions and the following disclaimer in the
12265625Smarcel *    documentation and/or other materials provided with the distribution.
13265625Smarcel *
14265625Smarcel * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15265625Smarcel * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16265625Smarcel * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17265625Smarcel * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18265625Smarcel * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19265625Smarcel * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20265625Smarcel * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21265625Smarcel * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22265625Smarcel * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23265625Smarcel * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24265625Smarcel * SUCH DAMAGE.
25265625Smarcel */
26265625Smarcel
27265625Smarcel#include <sys/cdefs.h>
28265625Smarcel__FBSDID("$FreeBSD$");
29265625Smarcel
30265625Smarcel#include <sys/types.h>
31265625Smarcel#include <sys/endian.h>
32265625Smarcel#include <sys/errno.h>
33265625Smarcel#include <stdlib.h>
34265625Smarcel#include <string.h>
35265625Smarcel#include <unistd.h>
36265625Smarcel
37266039Smarcel#include "image.h"
38265625Smarcel#include "format.h"
39265625Smarcel#include "mkimg.h"
40265625Smarcel
41265625Smarcelstatic int
42266039Smarcelraw_resize(lba_t imgsz __unused)
43266039Smarcel{
44266039Smarcel
45266039Smarcel	return (0);
46266039Smarcel}
47266039Smarcel
48266039Smarcelstatic int
49265718Smarcelraw_write(int fd)
50265625Smarcel{
51265625Smarcel
52265718Smarcel	return (image_copyout(fd));
53265625Smarcel}
54265625Smarcel
55265625Smarcelstatic struct mkimg_format raw_format = {
56265625Smarcel	.name = "raw",
57265625Smarcel	.description = "Raw Disk",
58266039Smarcel	.resize = raw_resize,
59265625Smarcel	.write = raw_write,
60265625Smarcel};
61265625Smarcel
62265625SmarcelFORMAT_DEFINE(raw_format);
63