* [U-Boot] [PATCH 1/2] mx6sabresd: README: Adjust the binary name after DM conversion
@ 2019-02-26 12:36 Fabio Estevam
2019-02-26 12:36 ` [U-Boot] [PATCH 2/2] mx6sabreauto: " Fabio Estevam
2019-02-26 13:39 ` [U-Boot] [PATCH 1/2] mx6sabresd: " Peng Fan
0 siblings, 2 replies; 4+ messages in thread
From: Fabio Estevam @ 2019-02-26 12:36 UTC (permalink / raw)
To: u-boot
After the conversion to DM the U-Boot binary is called u-boot-dtb.imx,
so fix the README file accordingly.
Signed-off-by: Fabio Estevam <festevam@gmail.com>
---
board/freescale/mx6sabresd/README | 18 +++++++++---------
1 file changed, 9 insertions(+), 9 deletions(-)
diff --git a/board/freescale/mx6sabresd/README b/board/freescale/mx6sabresd/README
index 4b4df06330..4ea4454b9f 100644
--- a/board/freescale/mx6sabresd/README
+++ b/board/freescale/mx6sabresd/README
@@ -21,15 +21,15 @@ $ make mx6sabresd_defconfig
$ make
-This will generate the SPL and u-boot.img binaries.
+This will generate the SPL and u-boot-dtb.img binaries.
- Flash the SPL binary into the SD card:
$ sudo dd if=SPL of=/dev/sdX bs=1K seek=1 && sync
-- Flash the u-boot.img binary into the SD card:
+- Flash the u-boot-dtb.img binary into the SD card:
-$ sudo dd if=u-boot.img of=/dev/sdX bs=1K seek=69 && sync
+$ sudo dd if=u-boot-dtb.img of=/dev/sdX bs=1K seek=69 && sync
2. Booting from eMMC
@@ -39,7 +39,7 @@ $ make mx6sabresd_defconfig
$ make
-This will generate the SPL and u-boot.img binaries.
+This will generate the SPL and u-boot-dtb.img binaries.
- Boot first from SD card as shown in the previous section
@@ -51,10 +51,10 @@ Mount the eMMC in the host PC:
=> ums 0 mmc 2
-- Flash SPL and u-boot.img binaries into the eMMC:
+- Flash SPL and u-boot-dtb.img binaries into the eMMC:
$ sudo dd if=SPL of=/dev/sdX bs=1K seek=1 && sync
-$ sudo dd if=u-boot.img of=/dev/sdX bs=1K seek=69 && sync
+$ sudo dd if=u-boot-dtb.img of=/dev/sdX bs=1K seek=69 && sync
Set SW6 to eMMC 8-bit boot: 11010110
@@ -65,15 +65,15 @@ Set SW6 to eMMC 8-bit boot: 11010110
$ make mx6sabresd_defconfig
$ make
-This will generate the SPL image called SPL and the u-boot.img.
+This will generate the SPL image called SPL and the u-boot-dtb.img.
- Flash the SPL image into the SD card:
$ sudo dd if=SPL of=/dev/sdX bs=1K seek=1 oflag=sync status=none && sync
-- Flash the u-boot.img image into the SD card:
+- Flash the u-boot-dtb.img image into the SD card:
-$ sudo dd if=u-boot.img of=/dev/sdX bs=1K seek=69 oflag=sync status=none && sync
+$ sudo dd if=u-boot-dtb.img of=/dev/sdX bs=1K seek=69 oflag=sync status=none && sync
Create a partition for root file system and extract it there:
--
2.17.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [U-Boot] [PATCH 2/2] mx6sabreauto: README: Adjust the binary name after DM conversion
2019-02-26 12:36 [U-Boot] [PATCH 1/2] mx6sabresd: README: Adjust the binary name after DM conversion Fabio Estevam
@ 2019-02-26 12:36 ` Fabio Estevam
2019-02-26 13:40 ` Peng Fan
2019-02-26 13:39 ` [U-Boot] [PATCH 1/2] mx6sabresd: " Peng Fan
1 sibling, 1 reply; 4+ messages in thread
From: Fabio Estevam @ 2019-02-26 12:36 UTC (permalink / raw)
To: u-boot
After the conversion to DM the U-Boot binary is called u-boot-dtb.imx,
so fix the README file accordingly.
Signed-off-by: Fabio Estevam <festevam@gmail.com>
---
board/freescale/mx6sabreauto/README | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/board/freescale/mx6sabreauto/README b/board/freescale/mx6sabreauto/README
index e8c589b92a..4c0fda1a2d 100644
--- a/board/freescale/mx6sabreauto/README
+++ b/board/freescale/mx6sabreauto/README
@@ -9,15 +9,15 @@ $ make mx6sabreauto_defconfig
$ make
-This will generate the SPL and u-boot.img binaries.
+This will generate the SPL and u-boot-dtb.img binaries.
- Flash the SPL binary into the SD card:
$ sudo dd if=SPL of=/dev/sdX bs=1K seek=1 && sync
-- Flash the u-boot.img binary into the SD card:
+- Flash the u-boot-dtb.img binary into the SD card:
-$ sudo dd if=u-boot.img of=/dev/sdX bs=1K seek=69 && sync
+$ sudo dd if=u-boot-dtb.img of=/dev/sdX bs=1K seek=69 && sync
Booting via Falcon mode
-----------------------
@@ -32,15 +32,15 @@ $ make mx6sabreauto_defconfig
$ make
-This will generate the SPL image called SPL and the u-boot.img.
+This will generate the SPL image called SPL and the u-boot-dtb.img.
- Flash the SPL image into the SD card:
$ sudo dd if=SPL of=/dev/sdb bs=1K seek=1 && sync
-- Flash the u-boot.img image into the SD card:
+- Flash the u-boot-dtb.img image into the SD card:
-$ sudo dd if=u-boot.img of=/dev/sdb bs=1K seek=69 && sync
+$ sudo dd if=u-boot-dtb.img of=/dev/sdb bs=1K seek=69 && sync
Create a FAT16 boot partition to store uImage and the dtb file, then copy the files there:
--
2.17.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [U-Boot] [PATCH 1/2] mx6sabresd: README: Adjust the binary name after DM conversion
2019-02-26 12:36 [U-Boot] [PATCH 1/2] mx6sabresd: README: Adjust the binary name after DM conversion Fabio Estevam
2019-02-26 12:36 ` [U-Boot] [PATCH 2/2] mx6sabreauto: " Fabio Estevam
@ 2019-02-26 13:39 ` Peng Fan
1 sibling, 0 replies; 4+ messages in thread
From: Peng Fan @ 2019-02-26 13:39 UTC (permalink / raw)
To: u-boot
> -----Original Message-----
> From: Fabio Estevam [mailto:festevam at gmail.com]
> Sent: 2019年2月26日 20:36
> To: sbabic at denx.de
> Cc: dl-uboot-imx <uboot-imx@nxp.com>; Peng Fan <peng.fan@nxp.com>;
> Abel Vesa <abel.vesa@nxp.com>; u-boot at lists.denx.de; Fabio Estevam
> <festevam@gmail.com>
> Subject: [PATCH 1/2] mx6sabresd: README: Adjust the binary name after DM
> conversion
>
> After the conversion to DM the U-Boot binary is called u-boot-dtb.imx, so fix
> the README file accordingly.
>
> Signed-off-by: Fabio Estevam <festevam@gmail.com>
Acked-by: Peng Fan <peng.fan@nxp.com>
> ---
> board/freescale/mx6sabresd/README | 18 +++++++++---------
> 1 file changed, 9 insertions(+), 9 deletions(-)
>
> diff --git a/board/freescale/mx6sabresd/README
> b/board/freescale/mx6sabresd/README
> index 4b4df06330..4ea4454b9f 100644
> --- a/board/freescale/mx6sabresd/README
> +++ b/board/freescale/mx6sabresd/README
> @@ -21,15 +21,15 @@ $ make mx6sabresd_defconfig
>
> $ make
>
> -This will generate the SPL and u-boot.img binaries.
> +This will generate the SPL and u-boot-dtb.img binaries.
>
> - Flash the SPL binary into the SD card:
>
> $ sudo dd if=SPL of=/dev/sdX bs=1K seek=1 && sync
>
> -- Flash the u-boot.img binary into the SD card:
> +- Flash the u-boot-dtb.img binary into the SD card:
>
> -$ sudo dd if=u-boot.img of=/dev/sdX bs=1K seek=69 && sync
> +$ sudo dd if=u-boot-dtb.img of=/dev/sdX bs=1K seek=69 && sync
>
>
> 2. Booting from eMMC
> @@ -39,7 +39,7 @@ $ make mx6sabresd_defconfig
>
> $ make
>
> -This will generate the SPL and u-boot.img binaries.
> +This will generate the SPL and u-boot-dtb.img binaries.
>
> - Boot first from SD card as shown in the previous section
>
> @@ -51,10 +51,10 @@ Mount the eMMC in the host PC:
>
> => ums 0 mmc 2
>
> -- Flash SPL and u-boot.img binaries into the eMMC:
> +- Flash SPL and u-boot-dtb.img binaries into the eMMC:
>
> $ sudo dd if=SPL of=/dev/sdX bs=1K seek=1 && sync -$ sudo dd
> if=u-boot.img of=/dev/sdX bs=1K seek=69 && sync
> +$ sudo dd if=u-boot-dtb.img of=/dev/sdX bs=1K seek=69 && sync
>
> Set SW6 to eMMC 8-bit boot: 11010110
>
> @@ -65,15 +65,15 @@ Set SW6 to eMMC 8-bit boot: 11010110 $ make
> mx6sabresd_defconfig $ make
>
> -This will generate the SPL image called SPL and the u-boot.img.
> +This will generate the SPL image called SPL and the u-boot-dtb.img.
>
> - Flash the SPL image into the SD card:
>
> $ sudo dd if=SPL of=/dev/sdX bs=1K seek=1 oflag=sync status=none && sync
>
> -- Flash the u-boot.img image into the SD card:
> +- Flash the u-boot-dtb.img image into the SD card:
>
> -$ sudo dd if=u-boot.img of=/dev/sdX bs=1K seek=69 oflag=sync status=none
> && sync
> +$ sudo dd if=u-boot-dtb.img of=/dev/sdX bs=1K seek=69 oflag=sync
> +status=none && sync
>
> Create a partition for root file system and extract it there:
>
> --
> 2.17.1
^ permalink raw reply [flat|nested] 4+ messages in thread
* [U-Boot] [PATCH 2/2] mx6sabreauto: README: Adjust the binary name after DM conversion
2019-02-26 12:36 ` [U-Boot] [PATCH 2/2] mx6sabreauto: " Fabio Estevam
@ 2019-02-26 13:40 ` Peng Fan
0 siblings, 0 replies; 4+ messages in thread
From: Peng Fan @ 2019-02-26 13:40 UTC (permalink / raw)
To: u-boot
> -----Original Message-----
> From: Fabio Estevam [mailto:festevam at gmail.com]
> Sent: 2019年2月26日 20:36
> To: sbabic at denx.de
> Cc: dl-uboot-imx <uboot-imx@nxp.com>; Peng Fan <peng.fan@nxp.com>;
> Abel Vesa <abel.vesa@nxp.com>; u-boot at lists.denx.de; Fabio Estevam
> <festevam@gmail.com>
> Subject: [PATCH 2/2] mx6sabreauto: README: Adjust the binary name after
> DM conversion
>
> After the conversion to DM the U-Boot binary is called u-boot-dtb.imx, so fix
> the README file accordingly.
>
> Signed-off-by: Fabio Estevam <festevam@gmail.com>
Acked-by: Peng Fan <peng.fan@nxp.com>
> ---
> board/freescale/mx6sabreauto/README | 12 ++++++------
> 1 file changed, 6 insertions(+), 6 deletions(-)
>
> diff --git a/board/freescale/mx6sabreauto/README
> b/board/freescale/mx6sabreauto/README
> index e8c589b92a..4c0fda1a2d 100644
> --- a/board/freescale/mx6sabreauto/README
> +++ b/board/freescale/mx6sabreauto/README
> @@ -9,15 +9,15 @@ $ make mx6sabreauto_defconfig
>
> $ make
>
> -This will generate the SPL and u-boot.img binaries.
> +This will generate the SPL and u-boot-dtb.img binaries.
>
> - Flash the SPL binary into the SD card:
>
> $ sudo dd if=SPL of=/dev/sdX bs=1K seek=1 && sync
>
> -- Flash the u-boot.img binary into the SD card:
> +- Flash the u-boot-dtb.img binary into the SD card:
>
> -$ sudo dd if=u-boot.img of=/dev/sdX bs=1K seek=69 && sync
> +$ sudo dd if=u-boot-dtb.img of=/dev/sdX bs=1K seek=69 && sync
>
> Booting via Falcon mode
> -----------------------
> @@ -32,15 +32,15 @@ $ make mx6sabreauto_defconfig
>
> $ make
>
> -This will generate the SPL image called SPL and the u-boot.img.
> +This will generate the SPL image called SPL and the u-boot-dtb.img.
>
> - Flash the SPL image into the SD card:
>
> $ sudo dd if=SPL of=/dev/sdb bs=1K seek=1 && sync
>
> -- Flash the u-boot.img image into the SD card:
> +- Flash the u-boot-dtb.img image into the SD card:
>
> -$ sudo dd if=u-boot.img of=/dev/sdb bs=1K seek=69 && sync
> +$ sudo dd if=u-boot-dtb.img of=/dev/sdb bs=1K seek=69 && sync
>
> Create a FAT16 boot partition to store uImage and the dtb file, then copy the
> files there:
>
> --
> 2.17.1
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2019-02-26 13:40 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-02-26 12:36 [U-Boot] [PATCH 1/2] mx6sabresd: README: Adjust the binary name after DM conversion Fabio Estevam
2019-02-26 12:36 ` [U-Boot] [PATCH 2/2] mx6sabreauto: " Fabio Estevam
2019-02-26 13:40 ` Peng Fan
2019-02-26 13:39 ` [U-Boot] [PATCH 1/2] mx6sabresd: " Peng Fan
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox