diff options
| author | Svyatoslav Ryhel <[email protected]> | 2024-07-31 11:22:54 +0300 |
|---|---|---|
| committer | Svyatoslav Ryhel <[email protected]> | 2024-10-13 17:20:26 +0300 |
| commit | 83b5f6367941f0f1c1904e4fde895fceedb75437 (patch) | |
| tree | 27992d609ec48027dcd979e4da41a8fe4abce0ae /disk/Kconfig | |
| parent | 93b9cd792089e536f2bfa85d9903fd4798209f76 (diff) | |
disk: add TegraPT support
TegraPT is compatible with EFI part but it can't pass Protective MBR check.
Skip this check if CONFIG_TEGRA_PARTITION is enabled, storage uclass is MMC
and devnum is 0. Note, eMMC on supported devices MUST be aliased to mmc0.
Signed-off-by: Svyatoslav Ryhel <[email protected]>
Diffstat (limited to 'disk/Kconfig')
| -rw-r--r-- | disk/Kconfig | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/disk/Kconfig b/disk/Kconfig index ffa835eb354..b0bd02539ee 100644 --- a/disk/Kconfig +++ b/disk/Kconfig @@ -49,6 +49,16 @@ config SPL_MAC_PARTITION default y if MAC_PARTITION select SPL_PARTITIONS +config TEGRA_PARTITION + bool "Enable Nvidia Tegra partition table" + select PARTITIONS + select EFI_PARTITION + help + Say Y here if you would like to use U-Boot on a device that + is using the Nvidia Tegra partition table and cannot alter it. + + If unsure, say N. + config DOS_PARTITION bool "Enable MS Dos partition table" default y if BOOT_DEFAULTS |
