Patrick Delaunay | dc28060 | 2017-01-27 11:00:35 +0100 | [diff] [blame] | 1 | |
| 2 | menu "Partition Types" |
| 3 | |
| 4 | config PARTITIONS |
AKASHI Takahiro | 3202556 | 2022-04-19 10:01:58 +0900 | [diff] [blame] | 5 | bool |
Patrick Delaunay | dc28060 | 2017-01-27 11:00:35 +0100 | [diff] [blame] | 6 | 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 Glass | d202cce | 2022-03-11 12:10:01 -0700 | [diff] [blame] | 21 | config SPL_PARTITIONS |
AKASHI Takahiro | 3202556 | 2022-04-19 10:01:58 +0900 | [diff] [blame] | 22 | bool |
Simon Glass | d202cce | 2022-03-11 12:10:01 -0700 | [diff] [blame] | 23 | select SPL_SPRINTF |
| 24 | select SPL_STRTO |
| 25 | help |
| 26 | Enable this for base partition support in SPL. The required |
Simon Glass | 537075b | 2022-08-11 19:34:40 -0600 | [diff] [blame] | 27 | partition table types shold be enabled separately. This adds a |
Simon Glass | d202cce | 2022-03-11 12:10:01 -0700 | [diff] [blame] | 28 | small amount of size to SPL, typically 500 bytes. |
| 29 | |
| 30 | config TPL_PARTITIONS |
AKASHI Takahiro | 3202556 | 2022-04-19 10:01:58 +0900 | [diff] [blame] | 31 | bool |
Simon Glass | d202cce | 2022-03-11 12:10:01 -0700 | [diff] [blame] | 32 | select TPL_SPRINTF |
| 33 | select TPL_STRTO |
| 34 | help |
Simon Glass | 537075b | 2022-08-11 19:34:40 -0600 | [diff] [blame] | 35 | 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 Glass | d202cce | 2022-03-11 12:10:01 -0700 | [diff] [blame] | 38 | |
Patrick Delaunay | c4bbbec | 2017-01-27 11:00:36 +0100 | [diff] [blame] | 39 | config MAC_PARTITION |
| 40 | bool "Enable Apple's MacOS partition table" |
AKASHI Takahiro | 3202556 | 2022-04-19 10:01:58 +0900 | [diff] [blame] | 41 | select PARTITIONS |
Patrick Delaunay | c4bbbec | 2017-01-27 11:00:36 +0100 | [diff] [blame] | 42 | help |
| 43 | Say Y here if you would like to use device under U-Boot which |
| 44 | were partitioned on a Macintosh. |
| 45 | |
| 46 | config SPL_MAC_PARTITION |
| 47 | bool "Enable Apple's MacOS partition table for SPL" |
AKASHI Takahiro | 3202556 | 2022-04-19 10:01:58 +0900 | [diff] [blame] | 48 | depends on SPL |
Patrick Delaunay | c4bbbec | 2017-01-27 11:00:36 +0100 | [diff] [blame] | 49 | default y if MAC_PARTITION |
AKASHI Takahiro | 3202556 | 2022-04-19 10:01:58 +0900 | [diff] [blame] | 50 | select SPL_PARTITIONS |
Patrick Delaunay | c4bbbec | 2017-01-27 11:00:36 +0100 | [diff] [blame] | 51 | |
Svyatoslav Ryhel | f19eb7c | 2024-07-31 11:22:54 +0300 | [diff] [blame] | 52 | config TEGRA_PARTITION |
| 53 | bool "Enable Nvidia Tegra partition table" |
| 54 | select PARTITIONS |
| 55 | select EFI_PARTITION |
| 56 | help |
| 57 | Say Y here if you would like to use U-Boot on a device that |
| 58 | is using the Nvidia Tegra partition table and cannot alter it. |
| 59 | |
| 60 | If unsure, say N. |
| 61 | |
Patrick Delaunay | f7e0772 | 2017-01-27 11:00:37 +0100 | [diff] [blame] | 62 | config DOS_PARTITION |
| 63 | bool "Enable MS Dos partition table" |
Jonas Karlman | 0d53f32 | 2023-07-11 22:37:30 +0000 | [diff] [blame] | 64 | default y if BOOT_DEFAULTS |
Tom Rini | fef2bd1 | 2017-03-14 11:08:11 -0400 | [diff] [blame] | 65 | default y if x86 || CMD_FAT || USB_STORAGE |
AKASHI Takahiro | 3202556 | 2022-04-19 10:01:58 +0900 | [diff] [blame] | 66 | select PARTITIONS |
Patrick Delaunay | f7e0772 | 2017-01-27 11:00:37 +0100 | [diff] [blame] | 67 | help |
| 68 | traditional on the Intel architecture, USB sticks, etc. |
| 69 | |
| 70 | config SPL_DOS_PARTITION |
| 71 | bool "Enable MS Dos partition table for SPL" |
AKASHI Takahiro | 3202556 | 2022-04-19 10:01:58 +0900 | [diff] [blame] | 72 | depends on SPL |
Pali Rohár | 3c5ce03 | 2022-05-24 10:58:42 +0200 | [diff] [blame] | 73 | default n if ARCH_MVEBU |
Andre Przywara | 3130df5 | 2020-02-20 17:51:14 +0000 | [diff] [blame] | 74 | default n if ARCH_SUNXI |
Patrick Delaunay | f7e0772 | 2017-01-27 11:00:37 +0100 | [diff] [blame] | 75 | default y if DOS_PARTITION |
AKASHI Takahiro | 3202556 | 2022-04-19 10:01:58 +0900 | [diff] [blame] | 76 | select SPL_PARTITIONS |
Patrick Delaunay | f7e0772 | 2017-01-27 11:00:37 +0100 | [diff] [blame] | 77 | |
Patrick Delaunay | 21d3bce | 2017-01-27 11:00:38 +0100 | [diff] [blame] | 78 | config ISO_PARTITION |
| 79 | bool "Enable ISO partition table" |
Jonas Karlman | 0d53f32 | 2023-07-11 22:37:30 +0000 | [diff] [blame] | 80 | default y if BOOT_DEFAULTS |
Trevor Woerner | 513f640 | 2020-05-06 08:02:41 -0400 | [diff] [blame] | 81 | default y if MIPS || ARCH_TEGRA |
AKASHI Takahiro | 3202556 | 2022-04-19 10:01:58 +0900 | [diff] [blame] | 82 | select PARTITIONS |
Patrick Delaunay | 21d3bce | 2017-01-27 11:00:38 +0100 | [diff] [blame] | 83 | |
| 84 | config SPL_ISO_PARTITION |
| 85 | bool "Enable ISO partition table for SPL" |
AKASHI Takahiro | 3202556 | 2022-04-19 10:01:58 +0900 | [diff] [blame] | 86 | depends on SPL |
| 87 | select SPL_PARTITIONS |
Patrick Delaunay | 21d3bce | 2017-01-27 11:00:38 +0100 | [diff] [blame] | 88 | |
Patrick Delaunay | 1aa32a8 | 2017-01-27 11:00:39 +0100 | [diff] [blame] | 89 | config AMIGA_PARTITION |
| 90 | bool "Enable AMIGA partition table" |
AKASHI Takahiro | 3202556 | 2022-04-19 10:01:58 +0900 | [diff] [blame] | 91 | select PARTITIONS |
Patrick Delaunay | 1aa32a8 | 2017-01-27 11:00:39 +0100 | [diff] [blame] | 92 | help |
| 93 | Say Y here if you would like to use device under U-Boot which |
| 94 | were partitioned under AmigaOS. |
| 95 | |
| 96 | config SPL_AMIGA_PARTITION |
| 97 | bool "Enable AMIGA partition table for SPL" |
AKASHI Takahiro | 3202556 | 2022-04-19 10:01:58 +0900 | [diff] [blame] | 98 | depends on SPL |
Patrick Delaunay | 1aa32a8 | 2017-01-27 11:00:39 +0100 | [diff] [blame] | 99 | default y if AMIGA_PARTITION |
AKASHI Takahiro | 3202556 | 2022-04-19 10:01:58 +0900 | [diff] [blame] | 100 | select SPL_PARTITIONS |
Patrick Delaunay | 1aa32a8 | 2017-01-27 11:00:39 +0100 | [diff] [blame] | 101 | |
Patrick Delaunay | 8a4f2bd | 2017-01-27 11:00:41 +0100 | [diff] [blame] | 102 | config EFI_PARTITION |
| 103 | bool "Enable EFI GPT partition table" |
Jonas Karlman | 0d53f32 | 2023-07-11 22:37:30 +0000 | [diff] [blame] | 104 | default y if BOOT_DEFAULTS |
Trevor Woerner | 513f640 | 2020-05-06 08:02:41 -0400 | [diff] [blame] | 105 | default y if ARCH_TEGRA |
AKASHI Takahiro | 3202556 | 2022-04-19 10:01:58 +0900 | [diff] [blame] | 106 | select PARTITIONS |
Adam Ford | 70c8f05 | 2018-02-06 12:14:28 -0600 | [diff] [blame] | 107 | select LIB_UUID |
Patrick Delaunay | 8a4f2bd | 2017-01-27 11:00:41 +0100 | [diff] [blame] | 108 | help |
| 109 | Say Y here if you would like to use device under U-Boot which |
| 110 | were partitioned using EFI GPT. |
| 111 | common when EFI is the bootloader. Note 2TB partition limit; |
| 112 | see disk/part_efi.c |
| 113 | |
Maxime Ripard | 1421079 | 2017-11-14 20:50:04 +0100 | [diff] [blame] | 114 | config EFI_PARTITION_ENTRIES_NUMBERS |
| 115 | int "Number of the EFI partition entries" |
| 116 | depends on EFI_PARTITION |
Maxime Ripard | 03252d4 | 2017-11-14 21:07:51 +0100 | [diff] [blame] | 117 | default 56 if ARCH_SUNXI |
Maxime Ripard | 1421079 | 2017-11-14 20:50:04 +0100 | [diff] [blame] | 118 | default 128 |
| 119 | help |
| 120 | Specify the number of partition entries in the GPT. This is |
| 121 | meant to allow less than the standard specifies for devices |
| 122 | that might need to place their first-stage bootloader in the |
| 123 | middle of a regular GPT. |
| 124 | |
| 125 | If unsure, leave at 128 entries, which is the standard |
| 126 | number. |
| 127 | |
Philipp Tomsich | a3da0e9 | 2017-03-01 21:10:39 +0100 | [diff] [blame] | 128 | config EFI_PARTITION_ENTRIES_OFF |
Anand Moon | 6c368f4 | 2024-06-23 23:10:21 +0530 | [diff] [blame] | 129 | int "Offset (in bytes) of the EFI partition entries" |
Philipp Tomsich | a3da0e9 | 2017-03-01 21:10:39 +0100 | [diff] [blame] | 130 | depends on EFI_PARTITION |
| 131 | default 0 |
| 132 | help |
| 133 | Specify an earliest location (in bytes) where the partition |
| 134 | entries may be located. This is meant to allow "punching a |
| 135 | hole into a device" to create a gap for an SPL, its payload |
| 136 | and the U-Boot environment. |
| 137 | |
| 138 | If unsure, leave at 0 (which will locate the partition |
| 139 | entries at the first possible LBA following the GPT header). |
| 140 | |
Patrick Delaunay | 8a4f2bd | 2017-01-27 11:00:41 +0100 | [diff] [blame] | 141 | config SPL_EFI_PARTITION |
| 142 | bool "Enable EFI GPT partition table for SPL" |
AKASHI Takahiro | 3202556 | 2022-04-19 10:01:58 +0900 | [diff] [blame] | 143 | depends on SPL |
Pali Rohár | 3c5ce03 | 2022-05-24 10:58:42 +0200 | [diff] [blame] | 144 | default n if ARCH_MVEBU |
Andre Przywara | 3130df5 | 2020-02-20 17:51:14 +0000 | [diff] [blame] | 145 | default n if ARCH_SUNXI |
Patrick Delaunay | 8a4f2bd | 2017-01-27 11:00:41 +0100 | [diff] [blame] | 146 | default y if EFI_PARTITION |
AKASHI Takahiro | 3202556 | 2022-04-19 10:01:58 +0900 | [diff] [blame] | 147 | select SPL_PARTITIONS |
Patrick Delaunay | 8a4f2bd | 2017-01-27 11:00:41 +0100 | [diff] [blame] | 148 | |
Patrick Delaunay | 7328709 | 2017-01-27 11:00:42 +0100 | [diff] [blame] | 149 | config PARTITION_UUIDS |
| 150 | bool "Enable support of UUID for partition" |
| 151 | depends on PARTITIONS |
Jonas Karlman | 0d53f32 | 2023-07-11 22:37:30 +0000 | [diff] [blame] | 152 | default y if BOOT_DEFAULTS |
Patrick Delaunay | 7328709 | 2017-01-27 11:00:42 +0100 | [diff] [blame] | 153 | default y if EFI_PARTITION |
Adam Ford | 70c8f05 | 2018-02-06 12:14:28 -0600 | [diff] [blame] | 154 | select LIB_UUID |
Patrick Delaunay | 7328709 | 2017-01-27 11:00:42 +0100 | [diff] [blame] | 155 | help |
| 156 | Activate the configuration of UUID for partition |
| 157 | |
| 158 | config SPL_PARTITION_UUIDS |
| 159 | bool "Enable support of UUID for partition in SPL" |
AKASHI Takahiro | 3202556 | 2022-04-19 10:01:58 +0900 | [diff] [blame] | 160 | depends on SPL_PARTITIONS |
Patrick Delaunay | 7328709 | 2017-01-27 11:00:42 +0100 | [diff] [blame] | 161 | default y if SPL_EFI_PARTITION |
Simon Glass | 8090d8d | 2023-02-22 09:34:11 -0700 | [diff] [blame] | 162 | select SPL_LIB_UUID |
Patrick Delaunay | 7328709 | 2017-01-27 11:00:42 +0100 | [diff] [blame] | 163 | |
Patrick Delaunay | 9ea13db | 2017-01-27 11:00:43 +0100 | [diff] [blame] | 164 | config PARTITION_TYPE_GUID |
| 165 | bool "Enable support of GUID for partition type" |
Patrick Delaunay | 9ea13db | 2017-01-27 11:00:43 +0100 | [diff] [blame] | 166 | depends on EFI_PARTITION |
| 167 | help |
| 168 | Activate the configuration of GUID type |
| 169 | for EFI partition |
| 170 | |
Simon Glass | 8090d8d | 2023-02-22 09:34:11 -0700 | [diff] [blame] | 171 | config SPL_PARTITION_TYPE_GUID |
| 172 | bool "Enable support of GUID for partition type (SPL)" |
| 173 | depends on SPL_EFI_PARTITION |
| 174 | help |
| 175 | Activate the configuration of GUID type |
| 176 | for EFI partition |
| 177 | |
Patrick Delaunay | dc28060 | 2017-01-27 11:00:35 +0100 | [diff] [blame] | 178 | endmenu |