blob: 817b7c8c76d58abe997e30b88a286dfc74002d06 [file] [log] [blame]
Patrick Delaunaydc280602017-01-27 11:00:35 +01001
2menu "Partition Types"
3
4config PARTITIONS
AKASHI Takahiro32025562022-04-19 10:01:58 +09005 bool
Patrick Delaunaydc280602017-01-27 11:00:35 +01006 help
7 Partition Labels (disklabels) Supported:
8 Zero or more of the following:
9 - CONFIG_MAC_PARTITION Apple's MacOS partition table.
10 - CONFIG_DOS_PARTITION MS Dos partition table, traditional on the
11 Intel architecture, USB sticks, etc.
12 - CONFIG_ISO_PARTITION ISO partition table, used on CDROM etc.
13 - CONFIG_EFI_PARTITION GPT partition table, common when EFI is the
14 bootloader. Note 2TB partition limit; see
15 disk/part_efi.c
16 - CONFIG_MTD_PARTITIONS Memory Technology Device partition table.
17 If IDE or SCSI support is enabled (CONFIG_CMD_IDE or CONFIG_SCSI)
18 you must configure support for at least one non-MTD partition type
19 as well.
20
Simon Glassd202cce2022-03-11 12:10:01 -070021config SPL_PARTITIONS
AKASHI Takahiro32025562022-04-19 10:01:58 +090022 bool
Simon Glassd202cce2022-03-11 12:10:01 -070023 select SPL_SPRINTF
24 select SPL_STRTO
25 help
26 Enable this for base partition support in SPL. The required
Simon Glass537075b2022-08-11 19:34:40 -060027 partition table types shold be enabled separately. This adds a
Simon Glassd202cce2022-03-11 12:10:01 -070028 small amount of size to SPL, typically 500 bytes.
29
30config TPL_PARTITIONS
AKASHI Takahiro32025562022-04-19 10:01:58 +090031 bool
Simon Glassd202cce2022-03-11 12:10:01 -070032 select TPL_SPRINTF
33 select TPL_STRTO
34 help
Simon Glass537075b2022-08-11 19:34:40 -060035 Enable this for base partition support in TPL. The required
36 partition table types shold be enabled separately. This adds a
37 small amount of size to TPL, typically 500 bytes.
Simon Glassd202cce2022-03-11 12:10:01 -070038
Patrick Delaunayc4bbbec2017-01-27 11:00:36 +010039config MAC_PARTITION
40 bool "Enable Apple's MacOS partition table"
AKASHI Takahiro32025562022-04-19 10:01:58 +090041 select PARTITIONS
Patrick Delaunayc4bbbec2017-01-27 11:00:36 +010042 help
43 Say Y here if you would like to use device under U-Boot which
44 were partitioned on a Macintosh.
45
46config SPL_MAC_PARTITION
47 bool "Enable Apple's MacOS partition table for SPL"
AKASHI Takahiro32025562022-04-19 10:01:58 +090048 depends on SPL
Patrick Delaunayc4bbbec2017-01-27 11:00:36 +010049 default y if MAC_PARTITION
AKASHI Takahiro32025562022-04-19 10:01:58 +090050 select SPL_PARTITIONS
Patrick Delaunayc4bbbec2017-01-27 11:00:36 +010051
Patrick Delaunayf7e07722017-01-27 11:00:37 +010052config DOS_PARTITION
53 bool "Enable MS Dos partition table"
Patrick Delaunayf7e07722017-01-27 11:00:37 +010054 default y if DISTRO_DEFAULTS
Tom Rinifef2bd12017-03-14 11:08:11 -040055 default y if x86 || CMD_FAT || USB_STORAGE
AKASHI Takahiro32025562022-04-19 10:01:58 +090056 select PARTITIONS
Patrick Delaunayf7e07722017-01-27 11:00:37 +010057 help
58 traditional on the Intel architecture, USB sticks, etc.
59
60config SPL_DOS_PARTITION
61 bool "Enable MS Dos partition table for SPL"
AKASHI Takahiro32025562022-04-19 10:01:58 +090062 depends on SPL
Pali Rohár3c5ce032022-05-24 10:58:42 +020063 default n if ARCH_MVEBU
Andre Przywara3130df52020-02-20 17:51:14 +000064 default n if ARCH_SUNXI
Patrick Delaunayf7e07722017-01-27 11:00:37 +010065 default y if DOS_PARTITION
AKASHI Takahiro32025562022-04-19 10:01:58 +090066 select SPL_PARTITIONS
Patrick Delaunayf7e07722017-01-27 11:00:37 +010067
Patrick Delaunay21d3bce2017-01-27 11:00:38 +010068config ISO_PARTITION
69 bool "Enable ISO partition table"
Patrick Delaunay21d3bce2017-01-27 11:00:38 +010070 default y if DISTRO_DEFAULTS
Trevor Woerner513f6402020-05-06 08:02:41 -040071 default y if MIPS || ARCH_TEGRA
AKASHI Takahiro32025562022-04-19 10:01:58 +090072 select PARTITIONS
Patrick Delaunay21d3bce2017-01-27 11:00:38 +010073
74config SPL_ISO_PARTITION
75 bool "Enable ISO partition table for SPL"
AKASHI Takahiro32025562022-04-19 10:01:58 +090076 depends on SPL
77 select SPL_PARTITIONS
Patrick Delaunay21d3bce2017-01-27 11:00:38 +010078
Patrick Delaunay1aa32a82017-01-27 11:00:39 +010079config AMIGA_PARTITION
80 bool "Enable AMIGA partition table"
AKASHI Takahiro32025562022-04-19 10:01:58 +090081 select PARTITIONS
Patrick Delaunay1aa32a82017-01-27 11:00:39 +010082 help
83 Say Y here if you would like to use device under U-Boot which
84 were partitioned under AmigaOS.
85
86config SPL_AMIGA_PARTITION
87 bool "Enable AMIGA partition table for SPL"
AKASHI Takahiro32025562022-04-19 10:01:58 +090088 depends on SPL
Patrick Delaunay1aa32a82017-01-27 11:00:39 +010089 default y if AMIGA_PARTITION
AKASHI Takahiro32025562022-04-19 10:01:58 +090090 select SPL_PARTITIONS
Patrick Delaunay1aa32a82017-01-27 11:00:39 +010091
Patrick Delaunay8a4f2bd2017-01-27 11:00:41 +010092config EFI_PARTITION
93 bool "Enable EFI GPT partition table"
Patrick Delaunay8a4f2bd2017-01-27 11:00:41 +010094 default y if DISTRO_DEFAULTS
Trevor Woerner513f6402020-05-06 08:02:41 -040095 default y if ARCH_TEGRA
AKASHI Takahiro32025562022-04-19 10:01:58 +090096 select PARTITIONS
Adam Ford70c8f052018-02-06 12:14:28 -060097 select LIB_UUID
Patrick Delaunay8a4f2bd2017-01-27 11:00:41 +010098 help
99 Say Y here if you would like to use device under U-Boot which
100 were partitioned using EFI GPT.
101 common when EFI is the bootloader. Note 2TB partition limit;
102 see disk/part_efi.c
103
Maxime Ripard14210792017-11-14 20:50:04 +0100104config EFI_PARTITION_ENTRIES_NUMBERS
105 int "Number of the EFI partition entries"
106 depends on EFI_PARTITION
Maxime Ripard03252d42017-11-14 21:07:51 +0100107 default 56 if ARCH_SUNXI
Maxime Ripard14210792017-11-14 20:50:04 +0100108 default 128
109 help
110 Specify the number of partition entries in the GPT. This is
111 meant to allow less than the standard specifies for devices
112 that might need to place their first-stage bootloader in the
113 middle of a regular GPT.
114
115 If unsure, leave at 128 entries, which is the standard
116 number.
117
Philipp Tomsicha3da0e92017-03-01 21:10:39 +0100118config EFI_PARTITION_ENTRIES_OFF
119 int "Offset (in bytes) of the EFI partition entries"
120 depends on EFI_PARTITION
121 default 0
122 help
123 Specify an earliest location (in bytes) where the partition
124 entries may be located. This is meant to allow "punching a
125 hole into a device" to create a gap for an SPL, its payload
126 and the U-Boot environment.
127
128 If unsure, leave at 0 (which will locate the partition
129 entries at the first possible LBA following the GPT header).
130
Patrick Delaunay8a4f2bd2017-01-27 11:00:41 +0100131config SPL_EFI_PARTITION
132 bool "Enable EFI GPT partition table for SPL"
AKASHI Takahiro32025562022-04-19 10:01:58 +0900133 depends on SPL
Pali Rohár3c5ce032022-05-24 10:58:42 +0200134 default n if ARCH_MVEBU
Andre Przywara3130df52020-02-20 17:51:14 +0000135 default n if ARCH_SUNXI
Patrick Delaunay8a4f2bd2017-01-27 11:00:41 +0100136 default y if EFI_PARTITION
AKASHI Takahiro32025562022-04-19 10:01:58 +0900137 select SPL_PARTITIONS
Patrick Delaunay8a4f2bd2017-01-27 11:00:41 +0100138
Patrick Delaunay73287092017-01-27 11:00:42 +0100139config PARTITION_UUIDS
140 bool "Enable support of UUID for partition"
141 depends on PARTITIONS
142 default y if DISTRO_DEFAULTS
143 default y if EFI_PARTITION
Adam Ford70c8f052018-02-06 12:14:28 -0600144 select LIB_UUID
Patrick Delaunay73287092017-01-27 11:00:42 +0100145 help
146 Activate the configuration of UUID for partition
147
148config SPL_PARTITION_UUIDS
149 bool "Enable support of UUID for partition in SPL"
AKASHI Takahiro32025562022-04-19 10:01:58 +0900150 depends on SPL_PARTITIONS
Patrick Delaunay73287092017-01-27 11:00:42 +0100151 default y if SPL_EFI_PARTITION
Simon Glass8090d8d2023-02-22 09:34:11 -0700152 select SPL_LIB_UUID
Patrick Delaunay73287092017-01-27 11:00:42 +0100153
Patrick Delaunay9ea13db2017-01-27 11:00:43 +0100154config PARTITION_TYPE_GUID
155 bool "Enable support of GUID for partition type"
Patrick Delaunay9ea13db2017-01-27 11:00:43 +0100156 depends on EFI_PARTITION
157 help
158 Activate the configuration of GUID type
159 for EFI partition
160
Simon Glass8090d8d2023-02-22 09:34:11 -0700161config SPL_PARTITION_TYPE_GUID
162 bool "Enable support of GUID for partition type (SPL)"
163 depends on SPL_EFI_PARTITION
164 help
165 Activate the configuration of GUID type
166 for EFI partition
167
Patrick Delaunaydc280602017-01-27 11:00:35 +0100168endmenu