aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorFaiz Abbas <faiz_abbas@ti.com>2019-06-11 00:43:43 +0530
committerTom Rini <trini@konsulko.com>2019-07-17 11:12:54 -0400
commit6c42a756a34d6ed7e7965c41112876205966586c (patch)
tree16d4c1815965aa9e6b1ac3a4ef810f1e0f8abb4e /include
parentc36331ad2d43e481c8eadd37a930f8c037941cd1 (diff)
downloadu-boot-6c42a756a34d6ed7e7965c41112876205966586c.zip
u-boot-6c42a756a34d6ed7e7965c41112876205966586c.tar.gz
u-boot-6c42a756a34d6ed7e7965c41112876205966586c.tar.bz2
am65x_evm: Add Support for creating a filesystem GPT partition in eMMC
Add Support for creating a GPT partition for the filesystem in eMMC. The filesystem is created in the user partition (partition 0). Signed-off-by: Faiz Abbas <faiz_abbas@ti.com>
Diffstat (limited to 'include')
-rw-r--r--include/configs/am65x_evm.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/include/configs/am65x_evm.h b/include/configs/am65x_evm.h
index e9e9d4a..51abab3 100644
--- a/include/configs/am65x_evm.h
+++ b/include/configs/am65x_evm.h
@@ -34,6 +34,10 @@
#define CONFIG_SYS_BOOTM_LEN SZ_64M
+#define PARTS_DEFAULT \
+ /* Linux partitions */ \
+ "name=rootfs,start=0,size=-,uuid=${uuid_gpt_rootfs}\0"
+
/* U-Boot general configuration */
#define EXTRA_ENV_AM65X_BOARD_SETTINGS \
"findfdt=" \
@@ -48,7 +52,7 @@
"name_kern=Image\0" \
"console=ttyS2,115200n8\0" \
"args_all=setenv optargs earlycon=ns16550a,mmio32,0x02800000\0" \
- "run_kern=booti ${loadaddr} ${rd_spec} ${fdtaddr}\0"
+ "run_kern=booti ${loadaddr} ${rd_spec} ${fdtaddr}\0" \
/* U-Boot MMC-specific configuration */
#define EXTRA_ENV_AM65X_BOARD_SETTINGS_MMC \
@@ -60,7 +64,8 @@
"init_mmc=run args_all args_mmc\0" \
"get_fdt_mmc=load mmc ${bootpart} ${fdtaddr} ${bootdir}/${name_fdt}\0" \
"get_kern_mmc=load mmc ${bootpart} ${loadaddr} " \
- "${bootdir}/${name_kern}\0"
+ "${bootdir}/${name_kern}\0" \
+ "partitions=" PARTS_DEFAULT
/* Incorporate settings into the U-Boot environment */
#define CONFIG_EXTRA_ENV_SETTINGS \