From 114483afccfe405c2d63d40e6062b38ed168fecc Mon Sep 17 00:00:00 2001 From: Vanessa Maegima Date: Fri, 15 Sep 2017 18:34:21 -0300 Subject: [PATCH] pico-imx7d: Enable booting from single partition Update 'fdt_file' and 'image' location and change rootfs mmc partition in 'finduuid' to support booting from a single partition. Signed-off-by: Vanessa Maegima --- include/configs/pico-imx7d.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/configs/pico-imx7d.h b/include/configs/pico-imx7d.h index 3a772b3032..462c5bf55c 100644 --- a/include/configs/pico-imx7d.h +++ b/include/configs/pico-imx7d.h @@ -38,16 +38,16 @@ #define CONFIG_EXTRA_ENV_SETTINGS \ "script=boot.scr\0" \ - "image=zImage\0" \ + "image=/boot/zImage\0" \ "console=ttymxc4\0" \ "fdt_high=0xffffffff\0" \ "initrd_high=0xffffffff\0" \ - "fdt_file=imx7d-pico.dtb\0" \ + "fdt_file=/boot/imx7d-pico.dtb\0" \ "fdt_addr=0x83000000\0" \ "ip_dyn=yes\0" \ "mmcdev="__stringify(CONFIG_SYS_MMC_ENV_DEV)"\0" \ "mmcpart=" __stringify(CONFIG_SYS_MMC_IMG_LOAD_PART) "\0" \ - "finduuid=part uuid mmc 0:2 uuid\0" \ + "finduuid=part uuid mmc 0:1 uuid\0" \ "mmcargs=setenv bootargs console=${console},${baudrate} " \ "root=PARTUUID=${uuid} rootwait rw\0" \ "loadimage=load mmc ${mmcdev}:${mmcpart} ${loadaddr} ${image}\0" \ -- 2.40.1