From: Tom Rini <trini@konsulko.com>
To: u-boot@lists.denx.de
Subject: [PATCHv2 2/8] imx: Remove ARCH= references from documentation
Date: Tue, 26 May 2020 14:36:49 -0400 [thread overview]
Message-ID: <20200526183655.29136-2-trini@konsulko.com> (raw)
In-Reply-To: <20200526183655.29136-1-trini@konsulko.com>
When building U-Boot we select the architecture via Kconfig and not ARCH
being passed in via the environment or make cmdline.
Cc: Adam Ford <aford173@gmail.com>
Cc: Vanessa Maegima <vanessa.maegima@nxp.com>
Cc: Otavio Salvador <otavio@ossystems.com.br>
Cc: Igor Opaniuk <igor.opaniuk@toradex.com>
Cc: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
Signed-off-by: Tom Rini <trini@konsulko.com>
---
Changes in v2:
- Move actions cubieboard to its own commit, oops.
As an aside, the README files that haven't already been converted to rST
should be converted rST and moved to doc/board/ and the MAINTAINERS file
updated to include the new documentation file too. Thanks!
---
board/beacon/imx8mm/README | 2 +-
board/logicpd/imx6/README | 2 +-
board/technexion/pico-imx7d/README.pico-imx7d_BL33 | 2 +-
doc/board/toradex/colibri_imx7.rst | 1 -
4 files changed, 3 insertions(+), 4 deletions(-)
diff --git a/board/beacon/imx8mm/README b/board/beacon/imx8mm/README
index 4223fbd15dd6..dce176fa0b23 100644
--- a/board/beacon/imx8mm/README
+++ b/board/beacon/imx8mm/README
@@ -26,7 +26,7 @@ $ cp firmware-imx-8.5/firmware/ddr/synopsys/lpddr4*.bin $(srctree)
Build U-Boot
============
$ make imx8mm_beacon_defconfig
-$ make flash.bin ARCH=arm CROSS_COMPILE=aarch64-linux-gnu- ATF_LOAD_ADDR=0x920000
+$ make flash.bin CROSS_COMPILE=aarch64-linux-gnu- ATF_LOAD_ADDR=0x920000
Burn U-Boot to microSD Card
===========================
diff --git a/board/logicpd/imx6/README b/board/logicpd/imx6/README
index 26d053a32c3b..19f79c5734bc 100644
--- a/board/logicpd/imx6/README
+++ b/board/logicpd/imx6/README
@@ -17,7 +17,7 @@ Building U-Boot for Logic PD Development Kit
To build U-Boot for the Dual and Quad variants:
make imx6q_logic_defconfig
- make u-boot.imx ARCH=arm CROSS_COMPILE=arm-linux-
+ make u-boot.imx CROSS_COMPILE=arm-linux-
Flashing U-Boot into the SD card
diff --git a/board/technexion/pico-imx7d/README.pico-imx7d_BL33 b/board/technexion/pico-imx7d/README.pico-imx7d_BL33
index 40324ffe5f34..1b346093b88d 100644
--- a/board/technexion/pico-imx7d/README.pico-imx7d_BL33
+++ b/board/technexion/pico-imx7d/README.pico-imx7d_BL33
@@ -4,7 +4,7 @@ The boot sequence is ATF -> OPTEE -> U-Boot -> Linux. U-Boot is in non-secure
world in this case.
- Build u-boot
- Set environment variable of CROSS_COMPILE for your toolchain and ARCH=arm
+ Set environment variable of CROSS_COMPILE for your toolchain
$ make pico-imx7d_bl33_defconfig
$ make all
diff --git a/doc/board/toradex/colibri_imx7.rst b/doc/board/toradex/colibri_imx7.rst
index 6fb952666661..a30e721379ee 100644
--- a/doc/board/toradex/colibri_imx7.rst
+++ b/doc/board/toradex/colibri_imx7.rst
@@ -18,7 +18,6 @@ Build U-Boot
.. code-block:: bash
$ export CROSS_COMPILE=arm-linux-gnueabi-
- $ export ARCH=arm
$ make colibri_imx7_emmc_defconfig # For NAND: colibri_imx7_defconfig
$ make
--
2.17.1
next prev parent reply other threads:[~2020-05-26 18:36 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-05-26 18:36 [PATCHv2 1/8] amlogic: Remove ARCH= references from documentation Tom Rini
2020-05-26 18:36 ` Tom Rini [this message]
2020-06-03 16:25 ` [PATCHv2 2/8] imx: " Tom Rini
2020-05-26 18:36 ` [PATCHv2 3/8] powerpc: " Tom Rini
2020-06-03 16:25 ` Tom Rini
2020-05-26 18:36 ` [PATCHv2 4/8] rockchip: " Tom Rini
2020-05-31 14:08 ` Simon Glass
2020-06-03 16:26 ` Tom Rini
2020-05-26 18:36 ` [PATCHv2 5/8] arm: ti: " Tom Rini
2020-06-03 16:26 ` Tom Rini
2020-05-26 18:36 ` [PATCHv2 6/8] m68k: " Tom Rini
2020-06-03 16:26 ` Tom Rini
2020-05-26 18:36 ` [PATCHv2 7/8] fu540: " Tom Rini
2020-06-03 16:26 ` Tom Rini
2020-05-26 18:36 ` [PATCHv2 8/8] cubieboard7: " Tom Rini
2020-05-26 18:47 ` Amit Tomer
2020-06-03 16:26 ` Tom Rini
2020-06-03 16:25 ` [PATCHv2 1/8] amlogic: " Tom Rini
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20200526183655.29136-2-trini@konsulko.com \
--to=trini@konsulko.com \
--cc=u-boot@lists.denx.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox