diff options
author | Tom Rini | 2014-01-21 17:15:07 -0500 |
---|---|---|
committer | Tom Rini | 2014-02-21 14:03:44 -0500 |
commit | 0f1b04439596bc47ea95fab2d7d072b278b2a925 (patch) | |
tree | 0a079e09758c37ef0b35f5fe0bdc034806862a7b | |
parent | 01d92b0472647f339fe3dd495c13173ff7e568b4 (diff) |
am43xx_evm: Enable GPT commands
Signed-off-by: Tom Rini <trini@ti.com>
-rw-r--r-- | include/configs/am43xx_evm.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/configs/am43xx_evm.h b/include/configs/am43xx_evm.h index d3c4756349b..9b4716f5aaa 100644 --- a/include/configs/am43xx_evm.h +++ b/include/configs/am43xx_evm.h @@ -84,6 +84,12 @@ #define CONFIG_OMAP_USB_PHY #define CONFIG_AM437X_USB2PHY2_HOST +/* Enhance our eMMC support / experience. */ +#define CONFIG_CMD_GPT +#define CONFIG_EFI_PARTITION +#define CONFIG_PARTITION_UUIDS +#define CONFIG_CMD_PART + #ifndef CONFIG_SPL_BUILD #define CONFIG_EXTRA_ENV_SETTINGS \ "loadaddr=0x80200000\0" \ @@ -95,6 +101,9 @@ "bootdir=/boot\0" \ "bootfile=zImage\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 rw\0" \ |