diff options
author | Tom Rini <trini@ti.com> | 2014-01-21 17:15:06 -0500 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-02-21 14:03:27 -0500 |
commit | 01d92b0472647f339fe3dd495c13173ff7e568b4 (patch) | |
tree | db8b7036a31b4e47ede167af32ffc28f8f427bfb /include | |
parent | bc97f48915907553f350f843f3a0a6987a008248 (diff) | |
download | u-boot-imx-01d92b0472647f339fe3dd495c13173ff7e568b4.zip u-boot-imx-01d92b0472647f339fe3dd495c13173ff7e568b4.tar.gz u-boot-imx-01d92b0472647f339fe3dd495c13173ff7e568b4.tar.bz2 |
am335x_evm: Enable GPT commands
Signed-off-by: Tom Rini <trini@ti.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/configs/am335x_evm.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/include/configs/am335x_evm.h b/include/configs/am335x_evm.h index 96ae369..59a8f36 100644 --- a/include/configs/am335x_evm.h +++ b/include/configs/am335x_evm.h @@ -32,6 +32,12 @@ /* Always 128 KiB env size */ #define CONFIG_ENV_SIZE (128 << 10) +/* Enhance our eMMC support / experience. */ +#define CONFIG_CMD_GPT +#define CONFIG_EFI_PARTITION +#define CONFIG_PARTITION_UUIDS +#define CONFIG_CMD_PART + #ifdef CONFIG_NAND #define NANDARGS \ "mtdids=" MTDIDS_DEFAULT "\0" \ @@ -65,6 +71,9 @@ "bootfile=zImage\0" \ "fdtfile=undefined\0" \ "console=ttyO0,115200n8\0" \ + "partitions=" \ + "uuid_disk=${uuid_gpt_disk};" \ + "name=rootfs,start=2MiB,size=-,uuid=${uuid_gpt_rootfs}\0" \ "optargs=\0" \ "mmcdev=0\0" \ "mmcroot=/dev/mmcblk0p2 ro\0" \ @@ -296,6 +305,9 @@ #if defined(CONFIG_SPL_BUILD) && defined(CONFIG_SPL_USBETH_SUPPORT) /* disable host part of MUSB in SPL */ #undef CONFIG_MUSB_HOST +/* disable EFI partitions and partition UUID support */ +#undef CONFIG_PARTITION_UUIDS +#undef CONFIG_EFI_PARTITION /* * Disable CPSW SPL support so we fit within the 101KiB limit. */ |