* [PATCH v1] imx: imx8qxp: imx8qxp_mek switch to binman
@ 2022-10-26 7:33 Oliver Graute
2022-10-26 8:31 ` Peng Fan
0 siblings, 1 reply; 3+ messages in thread
From: Oliver Graute @ 2022-10-26 7:33 UTC (permalink / raw)
To: sbabic
Cc: festevam, peng.fan, oliver.graute, uboot-imx, u-boot, Ye Li,
Gaurav Jain, Marcel Ziswiler, Horia Geantă, Denys Drozdov
Switch to use binman pack images
Signed-off-by: Oliver Graute <oliver.graute@kococonnector.com>
---
arch/arm/dts/fsl-imx8qxp-mek-u-boot.dtsi | 127 +++++++++++++++++++++++
arch/arm/mach-imx/imx8/Kconfig | 1 +
board/freescale/imx8qxp_mek/imximage.cfg | 3 +-
configs/imx8qxp_mek_defconfig | 2 +
doc/board/nxp/imx8qxp_mek.rst | 2 +-
5 files changed, 132 insertions(+), 3 deletions(-)
diff --git a/arch/arm/dts/fsl-imx8qxp-mek-u-boot.dtsi b/arch/arm/dts/fsl-imx8qxp-mek-u-boot.dtsi
index ae037c7550..073a401a1c 100644
--- a/arch/arm/dts/fsl-imx8qxp-mek-u-boot.dtsi
+++ b/arch/arm/dts/fsl-imx8qxp-mek-u-boot.dtsi
@@ -3,6 +3,133 @@
* Copyright 2018, 2021 NXP
*/
+/ {
+ binman: binman {
+ multiple-images;
+ };
+};
+
+&binman {
+ u-boot-spl-ddr {
+ align = <4>;
+ align-size = <4>;
+ filename = "u-boot-spl-ddr.bin";
+ pad-byte = <0xff>;
+
+ u-boot-spl {
+ align-end = <4>;
+ filename = "u-boot-spl.bin";
+ };
+ };
+
+ spl {
+ filename = "spl.bin";
+
+ mkimage {
+ args = "-n spl/u-boot-spl.cfgout -T imx8image -e 0x100000";
+
+ blob {
+ filename = "u-boot-spl-ddr.bin";
+ };
+ };
+ };
+
+ itb {
+ filename = "u-boot.itb";
+
+ fit {
+ description = "Configuration to load ATF before U-Boot";
+ fit,external-offset = <CONFIG_FIT_EXTERNAL_OFFSET>;
+ fit,fdt-list = "of-list";
+ #address-cells = <1>;
+
+ images {
+ uboot {
+ arch = "arm64";
+ compression = "none";
+ description = "U-Boot (64-bit)";
+ load = <CONFIG_SYS_TEXT_BASE>;
+ type = "standalone";
+
+ uboot-blob {
+ filename = "u-boot-nodtb.bin";
+ type = "blob-ext";
+ };
+ };
+
+ atf {
+ arch = "arm64";
+ compression = "none";
+ description = "ARM Trusted Firmware";
+ entry = <0x00910000>;
+ load = <0x00091000>;
+ type = "firmware";
+
+ atf-blob {
+ filename = "bl31.bin";
+ type = "atf-bl31";
+ };
+ };
+
+ scfw {
+ arch = "arm64";
+ compression = "none";
+ description = "System Controler Firmware";
+ type = "firmware";
+
+ scfw_blob {
+ filename = "mx8qx-mek-scfw-tcm.bin";
+ type = "blob-ext";
+ };
+ };
+
+ seco {
+ arch = "arm64";
+ compression = "none";
+ description = "Seco Firmware";
+ type = "firmware";
+
+ seco_blob {
+ filename = "mx8qxc0-ahab-container.img";
+ type = "blob-ext";
+ };
+ };
+
+ fdt {
+ type = "flat_dt";
+ compression = "none";
+
+ uboot-fdt-blob {
+ filename = "u-boot.dtb";
+ type = "blob-ext";
+ };
+ };
+ };
+
+ configurations {
+ default = "conf";
+
+ conf {
+ fdt = "fdt";
+ firmware = "uboot";
+ loadables = "atf";
+ };
+ };
+ };
+ };
+
+ imx-boot {
+ filename = "flash.bin";
+ pad-byte = <0x00>;
+
+ spl {
+ filename = "spl.bin";
+ offset = <0x0>;
+ type = "blob-ext";
+ };
+ };
+};
+
&{/imx8qx-pm} {
u-boot,dm-spl;
diff --git a/arch/arm/mach-imx/imx8/Kconfig b/arch/arm/mach-imx/imx8/Kconfig
index d423cf8563..23a7fcf361 100644
--- a/arch/arm/mach-imx/imx8/Kconfig
+++ b/arch/arm/mach-imx/imx8/Kconfig
@@ -90,6 +90,7 @@ config TARGET_IMX8QM_ROM7720_A1
config TARGET_IMX8QXP_MEK
bool "Support i.MX8QXP MEK board"
+ select BINMAN
select BOARD_LATE_INIT
select IMX8QXP
select FSL_CAAM
diff --git a/board/freescale/imx8qxp_mek/imximage.cfg b/board/freescale/imx8qxp_mek/imximage.cfg
index 89a4736ab7..88d6955a9e 100644
--- a/board/freescale/imx8qxp_mek/imximage.cfg
+++ b/board/freescale/imx8qxp_mek/imximage.cfg
@@ -7,8 +7,7 @@
*/
-/* Boot from SD, sector size 0x400 */
-BOOT_FROM SD 0x400
+BOOT_FROM sd
/* SoC type IMX8QX */
SOC_TYPE IMX8QX
/* Append seco container image */
diff --git a/configs/imx8qxp_mek_defconfig b/configs/imx8qxp_mek_defconfig
index 73600c5a8c..0e22f13c7f 100644
--- a/configs/imx8qxp_mek_defconfig
+++ b/configs/imx8qxp_mek_defconfig
@@ -23,6 +23,8 @@ CONFIG_SYS_LOAD_ADDR=0x80280000
CONFIG_HAS_CUSTOM_SYS_INIT_SP_ADDR=y
CONFIG_CUSTOM_SYS_INIT_SP_ADDR=0x80200000
CONFIG_REMAKE_ELF=y
+CONFIG_FIT=y
+CONFIG_FIT_EXTERNAL_OFFSET=0x3000
CONFIG_OF_BOARD_SETUP=y
CONFIG_OF_SYSTEM_SETUP=y
CONFIG_BOOTDELAY=3
diff --git a/doc/board/nxp/imx8qxp_mek.rst b/doc/board/nxp/imx8qxp_mek.rst
index 215627cfa6..708db1952e 100644
--- a/doc/board/nxp/imx8qxp_mek.rst
+++ b/doc/board/nxp/imx8qxp_mek.rst
@@ -50,7 +50,7 @@ Build U-Boot
.. code-block:: bash
$ make imx8qxp_mek_defconfig
- $ make flash.bin
+ $ make
Flash the binary into the SD card
---------------------------------
--
2.17.1
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [PATCH v1] imx: imx8qxp: imx8qxp_mek switch to binman
2022-10-26 7:33 [PATCH v1] imx: imx8qxp: imx8qxp_mek switch to binman Oliver Graute
@ 2022-10-26 8:31 ` Peng Fan
0 siblings, 0 replies; 3+ messages in thread
From: Peng Fan @ 2022-10-26 8:31 UTC (permalink / raw)
To: Oliver Graute
Cc: sbabic, festevam, uboot-imx, u-boot, Ye Li, Gaurav Jain,
Marcel Ziswiler, Horia Geantă, Denys Drozdov
On Wed, Oct 26, 2022 at 09:33:16AM +0200, Oliver Graute wrote:
>Switch to use binman pack images
>
>Signed-off-by: Oliver Graute <oliver.graute@kococonnector.com>
>---
> arch/arm/dts/fsl-imx8qxp-mek-u-boot.dtsi | 127 +++++++++++++++++++++++
> arch/arm/mach-imx/imx8/Kconfig | 1 +
> board/freescale/imx8qxp_mek/imximage.cfg | 3 +-
> configs/imx8qxp_mek_defconfig | 2 +
> doc/board/nxp/imx8qxp_mek.rst | 2 +-
> 5 files changed, 132 insertions(+), 3 deletions(-)
>
>diff --git a/arch/arm/dts/fsl-imx8qxp-mek-u-boot.dtsi b/arch/arm/dts/fsl-imx8qxp-mek-u-boot.dtsi
>index ae037c7550..073a401a1c 100644
>--- a/arch/arm/dts/fsl-imx8qxp-mek-u-boot.dtsi
>+++ b/arch/arm/dts/fsl-imx8qxp-mek-u-boot.dtsi
>@@ -3,6 +3,133 @@
> * Copyright 2018, 2021 NXP
> */
>
>+/ {
>+ binman: binman {
>+ multiple-images;
>+ };
>+};
>+
>+&binman {
>+ u-boot-spl-ddr {
>+ align = <4>;
>+ align-size = <4>;
>+ filename = "u-boot-spl-ddr.bin";
>+ pad-byte = <0xff>;
>+
>+ u-boot-spl {
>+ align-end = <4>;
>+ filename = "u-boot-spl.bin";
>+ };
>+ };
>+
>+ spl {
>+ filename = "spl.bin";
>+
>+ mkimage {
>+ args = "-n spl/u-boot-spl.cfgout -T imx8image -e 0x100000";
>+
>+ blob {
>+ filename = "u-boot-spl-ddr.bin";
>+ };
>+ };
>+ };
>+
>+ itb {
>+ filename = "u-boot.itb";
>+
>+ fit {
>+ description = "Configuration to load ATF before U-Boot";
>+ fit,external-offset = <CONFIG_FIT_EXTERNAL_OFFSET>;
>+ fit,fdt-list = "of-list";
>+ #address-cells = <1>;
>+
>+ images {
>+ uboot {
>+ arch = "arm64";
>+ compression = "none";
>+ description = "U-Boot (64-bit)";
>+ load = <CONFIG_SYS_TEXT_BASE>;
>+ type = "standalone";
>+
>+ uboot-blob {
>+ filename = "u-boot-nodtb.bin";
>+ type = "blob-ext";
>+ };
>+ };
>+
>+ atf {
>+ arch = "arm64";
>+ compression = "none";
>+ description = "ARM Trusted Firmware";
>+ entry = <0x00910000>;
>+ load = <0x00091000>;
>+ type = "firmware";
>+
>+ atf-blob {
>+ filename = "bl31.bin";
>+ type = "atf-bl31";
>+ };
>+ };
>+
>+ scfw {
>+ arch = "arm64";
>+ compression = "none";
>+ description = "System Controler Firmware";
>+ type = "firmware";
>+
>+ scfw_blob {
>+ filename = "mx8qx-mek-scfw-tcm.bin";
>+ type = "blob-ext";
>+ };
>+ };
>+
>+ seco {
>+ arch = "arm64";
>+ compression = "none";
>+ description = "Seco Firmware";
>+ type = "firmware";
>+
>+ seco_blob {
>+ filename = "mx8qxc0-ahab-container.img";
>+ type = "blob-ext";
>+ };
>+ };
>+
>+ fdt {
>+ type = "flat_dt";
>+ compression = "none";
>+
>+ uboot-fdt-blob {
>+ filename = "u-boot.dtb";
>+ type = "blob-ext";
>+ };
>+ };
>+ };
>+
>+ configurations {
>+ default = "conf";
>+
>+ conf {
>+ fdt = "fdt";
>+ firmware = "uboot";
>+ loadables = "atf";
>+ };
>+ };
>+ };
>+ };
>+
>+ imx-boot {
>+ filename = "flash.bin";
>+ pad-byte = <0x00>;
>+
>+ spl {
>+ filename = "spl.bin";
>+ offset = <0x0>;
>+ type = "blob-ext";
>+ };
>+ };
>+};
>+
> &{/imx8qx-pm} {
>
> u-boot,dm-spl;
>diff --git a/arch/arm/mach-imx/imx8/Kconfig b/arch/arm/mach-imx/imx8/Kconfig
>index d423cf8563..23a7fcf361 100644
>--- a/arch/arm/mach-imx/imx8/Kconfig
>+++ b/arch/arm/mach-imx/imx8/Kconfig
>@@ -90,6 +90,7 @@ config TARGET_IMX8QM_ROM7720_A1
>
> config TARGET_IMX8QXP_MEK
> bool "Support i.MX8QXP MEK board"
>+ select BINMAN
> select BOARD_LATE_INIT
> select IMX8QXP
> select FSL_CAAM
>diff --git a/board/freescale/imx8qxp_mek/imximage.cfg b/board/freescale/imx8qxp_mek/imximage.cfg
>index 89a4736ab7..88d6955a9e 100644
>--- a/board/freescale/imx8qxp_mek/imximage.cfg
>+++ b/board/freescale/imx8qxp_mek/imximage.cfg
>@@ -7,8 +7,7 @@
> */
>
>
>-/* Boot from SD, sector size 0x400 */
>-BOOT_FROM SD 0x400
>+BOOT_FROM sd
> /* SoC type IMX8QX */
> SOC_TYPE IMX8QX
> /* Append seco container image */
>diff --git a/configs/imx8qxp_mek_defconfig b/configs/imx8qxp_mek_defconfig
>index 73600c5a8c..0e22f13c7f 100644
>--- a/configs/imx8qxp_mek_defconfig
>+++ b/configs/imx8qxp_mek_defconfig
>@@ -23,6 +23,8 @@ CONFIG_SYS_LOAD_ADDR=0x80280000
> CONFIG_HAS_CUSTOM_SYS_INIT_SP_ADDR=y
> CONFIG_CUSTOM_SYS_INIT_SP_ADDR=0x80200000
> CONFIG_REMAKE_ELF=y
>+CONFIG_FIT=y
>+CONFIG_FIT_EXTERNAL_OFFSET=0x3000
> CONFIG_OF_BOARD_SETUP=y
> CONFIG_OF_SYSTEM_SETUP=y
> CONFIG_BOOTDELAY=3
>diff --git a/doc/board/nxp/imx8qxp_mek.rst b/doc/board/nxp/imx8qxp_mek.rst
>index 215627cfa6..708db1952e 100644
>--- a/doc/board/nxp/imx8qxp_mek.rst
>+++ b/doc/board/nxp/imx8qxp_mek.rst
>@@ -50,7 +50,7 @@ Build U-Boot
> .. code-block:: bash
>
> $ make imx8qxp_mek_defconfig
>- $ make flash.bin
>+ $ make
>
> Flash the binary into the SD card
> ---------------------------------
This needs switch to use imx container for binman in the end, but it should be
ok for now to use FIT to pack the images.
Reviewed-by: Peng Fan <peng.fan@nxp.com>
>--
>2.17.1
>
--
^ permalink raw reply [flat|nested] 3+ messages in thread
* [PATCH 0/8] imx8: switch missing boards to binman
@ 2022-11-02 15:56 Oliver Graute
2022-11-02 15:56 ` [PATCH v1] imx: imx8qxp: imx8qxp_mek switch " Oliver Graute
0 siblings, 1 reply; 3+ messages in thread
From: Oliver Graute @ 2022-11-02 15:56 UTC (permalink / raw)
To: sbabic
Cc: oliver.graute, oliver.graute, festevam, peng.fan, uboot-imx,
Marcel Ziswiler, Ye Li, Horia Geantă, Gaurav Jain,
Denys Drozdov, u-boot
This patchsets switches the remaining imx8 boards to binman.
Oliver Graute (8):
imx: imx8qm-rom7720: switch to binman
imx: imx8qm: cgtqmx8: switch to binman
imx: imx8qxp: imx8qxp_mek switch to binman
imx: imx8qm: imx8qm_mek switch to binman
imx: imx8qxp: giedi switch to binman
imx: imx8qxp: deneb switch to binman
imx: imx8x: colibri: switch to binman
imx: imx8: apalis: switch to binman
arch/arm/dts/fsl-imx8qm-apalis-u-boot.dtsi | 104 ++++++++++++++
arch/arm/dts/fsl-imx8qm-mek-u-boot.dtsi | 2 +
arch/arm/dts/fsl-imx8qxp-colibri-u-boot.dtsi | 104 ++++++++++++++
arch/arm/dts/fsl-imx8qxp-mek-u-boot.dtsi | 127 +++++++++++++++++
arch/arm/dts/imx8qm-cgtqmx8.dts | 1 +
arch/arm/dts/imx8qm-rom7720-a1.dts | 1 +
arch/arm/dts/imx8qm-u-boot.dtsi | 133 ++++++++++++++++++
arch/arm/dts/imx8qxp-capricorn-u-boot.dtsi | 127 +++++++++++++++++
arch/arm/mach-imx/imx8/Kconfig | 8 ++
.../advantech/imx8qm_rom7720_a1/imximage.cfg | 4 +-
board/congatec/cgtqmx8/imximage.cfg | 4 +-
board/freescale/imx8qm_mek/README | 2 +-
board/freescale/imx8qxp_mek/imximage.cfg | 3 +-
board/siemens/capricorn/imximage.cfg | 2 +-
configs/apalis-imx8_defconfig | 1 +
configs/cgtqmx8_defconfig | 4 +-
configs/colibri-imx8x_defconfig | 1 +
configs/deneb_defconfig | 2 +
configs/giedi_defconfig | 2 +
configs/imx8qm_mek_defconfig | 2 +
configs/imx8qm_rom7720_a1_4G_defconfig | 3 +-
configs/imx8qxp_mek_defconfig | 2 +
doc/board/advantech/imx8qm-rom7720-a1.rst | 3 +-
doc/board/congatec/cgtqmx8.rst | 3 +-
doc/board/nxp/imx8qxp_mek.rst | 2 +-
25 files changed, 632 insertions(+), 15 deletions(-)
create mode 100644 arch/arm/dts/imx8qm-u-boot.dtsi
--
2.17.1
^ permalink raw reply [flat|nested] 3+ messages in thread
* [PATCH v1] imx: imx8qxp: imx8qxp_mek switch to binman
2022-11-02 15:56 [PATCH 0/8] imx8: switch missing boards " Oliver Graute
@ 2022-11-02 15:56 ` Oliver Graute
0 siblings, 0 replies; 3+ messages in thread
From: Oliver Graute @ 2022-11-02 15:56 UTC (permalink / raw)
To: sbabic
Cc: oliver.graute, oliver.graute, festevam, peng.fan, uboot-imx,
Horia Geantă, Denys Drozdov, Ye Li, Gaurav Jain,
Marcel Ziswiler, u-boot
Switch to use binman pack images
Signed-off-by: Oliver Graute <oliver.graute@kococonnector.com>
Reviewed-by: Peng Fan <peng.fan@nxp.com>
---
arch/arm/dts/fsl-imx8qxp-mek-u-boot.dtsi | 127 +++++++++++++++++++++++
arch/arm/mach-imx/imx8/Kconfig | 1 +
board/freescale/imx8qxp_mek/imximage.cfg | 3 +-
configs/imx8qxp_mek_defconfig | 2 +
doc/board/nxp/imx8qxp_mek.rst | 2 +-
5 files changed, 132 insertions(+), 3 deletions(-)
diff --git a/arch/arm/dts/fsl-imx8qxp-mek-u-boot.dtsi b/arch/arm/dts/fsl-imx8qxp-mek-u-boot.dtsi
index ae037c7550..073a401a1c 100644
--- a/arch/arm/dts/fsl-imx8qxp-mek-u-boot.dtsi
+++ b/arch/arm/dts/fsl-imx8qxp-mek-u-boot.dtsi
@@ -3,6 +3,133 @@
* Copyright 2018, 2021 NXP
*/
+/ {
+ binman: binman {
+ multiple-images;
+ };
+};
+
+&binman {
+ u-boot-spl-ddr {
+ align = <4>;
+ align-size = <4>;
+ filename = "u-boot-spl-ddr.bin";
+ pad-byte = <0xff>;
+
+ u-boot-spl {
+ align-end = <4>;
+ filename = "u-boot-spl.bin";
+ };
+ };
+
+ spl {
+ filename = "spl.bin";
+
+ mkimage {
+ args = "-n spl/u-boot-spl.cfgout -T imx8image -e 0x100000";
+
+ blob {
+ filename = "u-boot-spl-ddr.bin";
+ };
+ };
+ };
+
+ itb {
+ filename = "u-boot.itb";
+
+ fit {
+ description = "Configuration to load ATF before U-Boot";
+ fit,external-offset = <CONFIG_FIT_EXTERNAL_OFFSET>;
+ fit,fdt-list = "of-list";
+ #address-cells = <1>;
+
+ images {
+ uboot {
+ arch = "arm64";
+ compression = "none";
+ description = "U-Boot (64-bit)";
+ load = <CONFIG_SYS_TEXT_BASE>;
+ type = "standalone";
+
+ uboot-blob {
+ filename = "u-boot-nodtb.bin";
+ type = "blob-ext";
+ };
+ };
+
+ atf {
+ arch = "arm64";
+ compression = "none";
+ description = "ARM Trusted Firmware";
+ entry = <0x00910000>;
+ load = <0x00091000>;
+ type = "firmware";
+
+ atf-blob {
+ filename = "bl31.bin";
+ type = "atf-bl31";
+ };
+ };
+
+ scfw {
+ arch = "arm64";
+ compression = "none";
+ description = "System Controler Firmware";
+ type = "firmware";
+
+ scfw_blob {
+ filename = "mx8qx-mek-scfw-tcm.bin";
+ type = "blob-ext";
+ };
+ };
+
+ seco {
+ arch = "arm64";
+ compression = "none";
+ description = "Seco Firmware";
+ type = "firmware";
+
+ seco_blob {
+ filename = "mx8qxc0-ahab-container.img";
+ type = "blob-ext";
+ };
+ };
+
+ fdt {
+ type = "flat_dt";
+ compression = "none";
+
+ uboot-fdt-blob {
+ filename = "u-boot.dtb";
+ type = "blob-ext";
+ };
+ };
+ };
+
+ configurations {
+ default = "conf";
+
+ conf {
+ fdt = "fdt";
+ firmware = "uboot";
+ loadables = "atf";
+ };
+ };
+ };
+ };
+
+ imx-boot {
+ filename = "flash.bin";
+ pad-byte = <0x00>;
+
+ spl {
+ filename = "spl.bin";
+ offset = <0x0>;
+ type = "blob-ext";
+ };
+ };
+};
+
&{/imx8qx-pm} {
u-boot,dm-spl;
diff --git a/arch/arm/mach-imx/imx8/Kconfig b/arch/arm/mach-imx/imx8/Kconfig
index d423cf8563..23a7fcf361 100644
--- a/arch/arm/mach-imx/imx8/Kconfig
+++ b/arch/arm/mach-imx/imx8/Kconfig
@@ -90,6 +90,7 @@ config TARGET_IMX8QM_ROM7720_A1
config TARGET_IMX8QXP_MEK
bool "Support i.MX8QXP MEK board"
+ select BINMAN
select BOARD_LATE_INIT
select IMX8QXP
select FSL_CAAM
diff --git a/board/freescale/imx8qxp_mek/imximage.cfg b/board/freescale/imx8qxp_mek/imximage.cfg
index 89a4736ab7..88d6955a9e 100644
--- a/board/freescale/imx8qxp_mek/imximage.cfg
+++ b/board/freescale/imx8qxp_mek/imximage.cfg
@@ -7,8 +7,7 @@
*/
-/* Boot from SD, sector size 0x400 */
-BOOT_FROM SD 0x400
+BOOT_FROM sd
/* SoC type IMX8QX */
SOC_TYPE IMX8QX
/* Append seco container image */
diff --git a/configs/imx8qxp_mek_defconfig b/configs/imx8qxp_mek_defconfig
index 73600c5a8c..0e22f13c7f 100644
--- a/configs/imx8qxp_mek_defconfig
+++ b/configs/imx8qxp_mek_defconfig
@@ -23,6 +23,8 @@ CONFIG_SYS_LOAD_ADDR=0x80280000
CONFIG_HAS_CUSTOM_SYS_INIT_SP_ADDR=y
CONFIG_CUSTOM_SYS_INIT_SP_ADDR=0x80200000
CONFIG_REMAKE_ELF=y
+CONFIG_FIT=y
+CONFIG_FIT_EXTERNAL_OFFSET=0x3000
CONFIG_OF_BOARD_SETUP=y
CONFIG_OF_SYSTEM_SETUP=y
CONFIG_BOOTDELAY=3
diff --git a/doc/board/nxp/imx8qxp_mek.rst b/doc/board/nxp/imx8qxp_mek.rst
index 215627cfa6..708db1952e 100644
--- a/doc/board/nxp/imx8qxp_mek.rst
+++ b/doc/board/nxp/imx8qxp_mek.rst
@@ -50,7 +50,7 @@ Build U-Boot
.. code-block:: bash
$ make imx8qxp_mek_defconfig
- $ make flash.bin
+ $ make
Flash the binary into the SD card
---------------------------------
--
2.17.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2022-11-02 15:58 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-10-26 7:33 [PATCH v1] imx: imx8qxp: imx8qxp_mek switch to binman Oliver Graute
2022-10-26 8:31 ` Peng Fan
-- strict thread matches above, loose matches on Subject: below --
2022-11-02 15:56 [PATCH 0/8] imx8: switch missing boards " Oliver Graute
2022-11-02 15:56 ` [PATCH v1] imx: imx8qxp: imx8qxp_mek switch " Oliver Graute
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox