xref: /src/sys/dev/md/embedfs.S (revision 8a6ab0f71f1857037233fae19991b972b430d83c)
1f54c6ef1SJohn Baldwin/*-
2f54c6ef1SJohn Baldwin * SPDX-License-Identifier: BSD-2-Clause
3f54c6ef1SJohn Baldwin *
4f54c6ef1SJohn Baldwin * Copyright (c) 2020 John Baldwin <jhb@FreeBSD.org>
5f54c6ef1SJohn Baldwin *
6f54c6ef1SJohn Baldwin * This software was developed by SRI International and the University of
7f54c6ef1SJohn Baldwin * Cambridge Computer Laboratory (Department of Computer Science and
8f54c6ef1SJohn Baldwin * Technology) under DARPA contract HR0011-18-C-0016 ("ECATS"), as part of the
9f54c6ef1SJohn Baldwin * DARPA SSITH research programme.
10f54c6ef1SJohn Baldwin *
11f54c6ef1SJohn Baldwin * Redistribution and use in source and binary forms, with or without
12f54c6ef1SJohn Baldwin * modification, are permitted provided that the following conditions
13f54c6ef1SJohn Baldwin * are met:
14f54c6ef1SJohn Baldwin * 1. Redistributions of source code must retain the above copyright
15f54c6ef1SJohn Baldwin *    notice, this list of conditions and the following disclaimer.
16f54c6ef1SJohn Baldwin * 2. Redistributions in binary form must reproduce the above copyright
17f54c6ef1SJohn Baldwin *    notice, this list of conditions and the following disclaimer in the
18f54c6ef1SJohn Baldwin *    documentation and/or other materials provided with the distribution.
19f54c6ef1SJohn Baldwin *
20f54c6ef1SJohn Baldwin * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
21f54c6ef1SJohn Baldwin * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22f54c6ef1SJohn Baldwin * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23f54c6ef1SJohn Baldwin * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
24f54c6ef1SJohn Baldwin * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25f54c6ef1SJohn Baldwin * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26f54c6ef1SJohn Baldwin * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27f54c6ef1SJohn Baldwin * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28f54c6ef1SJohn Baldwin * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29f54c6ef1SJohn Baldwin * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30f54c6ef1SJohn Baldwin * SUCH DAMAGE.
31f54c6ef1SJohn Baldwin *
32f54c6ef1SJohn Baldwin * $FreeBSD$
33f54c6ef1SJohn Baldwin */
34f54c6ef1SJohn Baldwin
35f54c6ef1SJohn Baldwin#include <sys/cdefs.h>
36f54c6ef1SJohn Baldwin
37f54c6ef1SJohn Baldwin	.section mfs, "a", %progbits
38f54c6ef1SJohn Baldwin	.globl	mfs_root
39f54c6ef1SJohn Baldwin	.type	mfs_root, %object
40f54c6ef1SJohn Baldwinmfs_root:
418a6ab0f7SJessica Clarke	.incbin	MFS_IMAGE
42f54c6ef1SJohn Baldwin	.size	mfs_root, . - mfs_root
43f54c6ef1SJohn Baldwin	.globl	mfs_root_end
44f54c6ef1SJohn Baldwin	.type	mfs_root_end, %object
45f54c6ef1SJohn Baldwinmfs_root_end:
46f54c6ef1SJohn Baldwin	.size	mfs_root_end, . - mfs_root_end
47