]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.sbin/bsdinstall/partedit/partedit_arm64.c
MFV: r362286
[FreeBSD/FreeBSD.git] / usr.sbin / bsdinstall / partedit / partedit_arm64.c
1 /*
2  * Copyright (C) 2016 Cavium Inc.
3  * All rights reserved.
4  *
5  * Developed by Semihalf.
6  * Based on work by Nathan Whitehorn.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
18  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
21  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27  * SUCH DAMAGE.
28  *
29  * $FreeBSD$
30  */
31
32 #include <sys/types.h>
33 #include <string.h>
34
35 #include "partedit.h"
36
37 /* EFI partition size in bytes */
38 #define EFI_BOOTPART_SIZE       (260 * 1024 * 1024)
39
40 const char *
41 default_scheme(void)
42 {
43
44         return ("GPT");
45 }
46
47 int
48 is_scheme_bootable(const char *part_type)
49 {
50
51         if (strcmp(part_type, "GPT") == 0)
52                 return (1);
53
54         return (0);
55 }
56
57 int
58 is_fs_bootable(const char *part_type, const char *fs)
59 {
60
61         if (strcmp(fs, "freebsd-ufs") == 0)
62                 return (1);
63
64         return (0);
65 }
66
67 size_t
68 bootpart_size(const char *scheme)
69 {
70
71         /* We only support GPT with EFI */
72         if (strcmp(scheme, "GPT") != 0)
73                 return (0);
74
75         return (EFI_BOOTPART_SIZE);
76 }
77
78 const char *
79 bootpart_type(const char *scheme, const char **mountpoint)
80 {
81
82         /* Only EFI is supported as boot partition */
83         return ("efi");
84 }
85
86 const char *
87 bootcode_path(const char *part_type)
88 {
89
90         return (NULL);
91 }
92
93 const char *
94 partcode_path(const char *part_type, const char *fs_type)
95 {
96
97         /* No boot partition data for ARM64 */
98         return (NULL);
99 }
100