Deleted Added
full compact
libuboot.h (256281) libuboot.h (265069)
1/*-
2 * Copyright (C) 2000 Benno Rice.
3 * Copyright (C) 2007 Semihalf, Rafal Jaworowski <raj@semihalf.com>
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:

--- 10 unchanged lines hidden (view full) ---

19 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25 * SUCH DAMAGE.
26 *
1/*-
2 * Copyright (C) 2000 Benno Rice.
3 * Copyright (C) 2007 Semihalf, Rafal Jaworowski <raj@semihalf.com>
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:

--- 10 unchanged lines hidden (view full) ---

19 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25 * SUCH DAMAGE.
26 *
27 * $FreeBSD: stable/10/sys/boot/uboot/lib/libuboot.h 240272 2012-09-09 11:30:45Z ae $
27 * $FreeBSD: stable/10/sys/boot/uboot/lib/libuboot.h 265069 2014-04-29 00:36:51Z ian $
28 */
29
30struct uboot_devdesc
31{
32 struct devsw *d_dev;
33 int d_type;
34 int d_unit;
35 union {

--- 28 unchanged lines hidden (view full) ---

64extern int uboot_autoload(void);
65
66struct preloaded_file;
67struct file_format;
68
69extern struct file_format uboot_elf;
70
71void reboot(void);
28 */
29
30struct uboot_devdesc
31{
32 struct devsw *d_dev;
33 int d_type;
34 int d_unit;
35 union {

--- 28 unchanged lines hidden (view full) ---

64extern int uboot_autoload(void);
65
66struct preloaded_file;
67struct file_format;
68
69extern struct file_format uboot_elf;
70
71void reboot(void);
72
73#if defined(LOADER_FDT_SUPPORT)
74extern int fdt_setup_fdtp();
75extern int fdt_copy(vm_offset_t);
76#endif
77