From: Vanessa Maegima Date: Fri, 15 Sep 2017 21:34:21 +0000 (-0300) Subject: pico-imx7d: Enable booting from single partition X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=114483afccfe405c2d63d40e6062b38ed168fecc;p=bsp%2Fu-boot.git 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 --- 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" \