xref: /rk3399_rockchip-uboot/disk/Kconfig (revision e274ef6b577deacd8bb3b38a52f0083a5f601ae8)
1*e274ef6bSPatrick Delaunay
2*e274ef6bSPatrick Delaunaymenu "Partition Types"
3*e274ef6bSPatrick Delaunay
4*e274ef6bSPatrick Delaunayconfig PARTITIONS
5*e274ef6bSPatrick Delaunay	bool "Enable Partition Labels (disklabels) support"
6*e274ef6bSPatrick Delaunay	default y
7*e274ef6bSPatrick Delaunay	help
8*e274ef6bSPatrick Delaunay	  Partition Labels (disklabels) Supported:
9*e274ef6bSPatrick Delaunay	  Zero or more of the following:
10*e274ef6bSPatrick Delaunay	  - CONFIG_MAC_PARTITION   Apple's MacOS partition table.
11*e274ef6bSPatrick Delaunay	  - CONFIG_DOS_PARTITION   MS Dos partition table, traditional on the
12*e274ef6bSPatrick Delaunay	                           Intel architecture, USB sticks, etc.
13*e274ef6bSPatrick Delaunay	  - CONFIG_ISO_PARTITION   ISO partition table, used on CDROM etc.
14*e274ef6bSPatrick Delaunay	  - CONFIG_EFI_PARTITION   GPT partition table, common when EFI is the
15*e274ef6bSPatrick Delaunay	                           bootloader.  Note 2TB partition limit; see
16*e274ef6bSPatrick Delaunay	                           disk/part_efi.c
17*e274ef6bSPatrick Delaunay	  - CONFIG_MTD_PARTITIONS  Memory Technology Device partition table.
18*e274ef6bSPatrick Delaunay	  If IDE or SCSI support is enabled (CONFIG_CMD_IDE or CONFIG_SCSI)
19*e274ef6bSPatrick Delaunay	  you must configure support for at least one non-MTD partition type
20*e274ef6bSPatrick Delaunay	  as well.
21*e274ef6bSPatrick Delaunay
22*e274ef6bSPatrick Delaunayendmenu
23