From: Svyatoslav Ryhel <clamor95@gmail.com>
To: "Tom Rini" <trini@konsulko.com>,
"Svyatoslav Ryhel" <clamor95@gmail.com>,
"Jonas Schwöbel" <jonasschwoebel@yahoo.de>,
"Thierry Reding" <treding@nvidia.com>,
"Francesco Dolcini" <francesco.dolcini@toradex.com>,
"Joe Hershberger" <joe.hershberger@ni.com>,
"Marcel Ziswiler" <marcel.ziswiler@toradex.com>,
"Fabio Estevam" <festevam@gmail.com>,
"Simon Glass" <sjg@chromium.org>,
"Emanuele Ghidoli" <emanuele.ghidoli@toradex.com>,
"Martyn Welch" <martyn.welch@collabora.com>
Cc: u-boot@lists.denx.de
Subject: [PATCH v1 0/1] board: tegra: convert boards to text env
Date: Thu, 1 Aug 2024 08:57:37 +0300 [thread overview]
Message-ID: <20240801055738.7601-1-clamor95@gmail.com> (raw)
Move env stuff into dedicated files in boards (1st stage).
U-Boot CI passed, boards I own work fine, tests are welcomed.
Svyatoslav Ryhel (1):
board: tegra: convert tegra-based boards to text env
board/asus/grouper/grouper.env | 15 +++
.../asus/transformer-t20/transformer-t20.env | 16 ++++
.../transformer-t30/configs/tf600t.config | 1 +
board/asus/transformer-t30/tf600t.env | 16 ++++
.../asus/transformer-t30/transformer-t30.env | 16 ++++
board/htc/endeavoru/endeavoru.env | 13 +++
.../ideapad-yoga-11/ideapad-yoga-11.env | 16 ++++
board/lg/x3-t30/configs/p880.config | 1 +
board/lg/x3-t30/configs/p895.config | 1 +
board/lg/x3-t30/p880.env | 14 +++
board/lg/x3-t30/p895.env | 13 +++
board/microsoft/surface-rt/surface-rt.env | 14 +++
board/nvidia/cardhu/cardhu.env | 2 +
board/nvidia/p2771-0000/p2771-0000.env | 22 +++++
board/nvidia/p3450-0000/p3450-0000.env | 7 ++
board/toradex/apalis-tk1/apalis_tk1.env | 45 +++++++++
board/toradex/apalis_t30/apalis_t30.env | 9 ++
board/toradex/colibri_t20/colibri_t20.env | 3 +
board/toradex/colibri_t30/colibri_t30.env | 9 ++
board/wexler/qc750/qc750.env | 14 +++
configs/apalis-tk1_defconfig | 1 +
configs/apalis_t30_defconfig | 1 +
configs/cardhu_defconfig | 1 +
configs/colibri_t20_defconfig | 1 +
configs/colibri_t30_defconfig | 1 +
configs/endeavoru_defconfig | 1 +
configs/grouper_common_defconfig | 1 +
configs/ideapad-yoga-11_defconfig | 1 +
configs/p2771-0000-000_defconfig | 1 +
configs/p3450-0000_defconfig | 1 +
configs/qc750_defconfig | 1 +
configs/surface-rt_defconfig | 1 +
configs/transformer_t20_defconfig | 1 +
configs/transformer_t30_defconfig | 1 +
include/configs/apalis-tk1.h | 58 ------------
include/configs/apalis_t30.h | 12 ---
include/configs/cardhu.h | 4 -
include/configs/colibri_t20.h | 11 ---
include/configs/colibri_t30.h | 12 ---
include/configs/endeavoru.h | 43 ---------
include/configs/grouper.h | 45 ---------
include/configs/ideapad-yoga-11.h | 58 ------------
include/configs/p2771-0000.h | 20 ----
include/configs/p3450-0000.h | 13 ---
include/configs/qc750.h | 42 ---------
include/configs/surface-rt.h | 18 ----
include/configs/transformer-common.h | 91 -------------------
include/configs/transformer-t20.h | 4 +-
include/configs/transformer-t30.h | 6 +-
include/configs/x3-t30.h | 44 ---------
include/env/nvidia/prod_upd.env | 59 ++++++++++++
51 files changed, 326 insertions(+), 475 deletions(-)
create mode 100644 board/asus/grouper/grouper.env
create mode 100644 board/asus/transformer-t20/transformer-t20.env
create mode 100644 board/asus/transformer-t30/tf600t.env
create mode 100644 board/asus/transformer-t30/transformer-t30.env
create mode 100644 board/htc/endeavoru/endeavoru.env
create mode 100644 board/lenovo/ideapad-yoga-11/ideapad-yoga-11.env
create mode 100644 board/lg/x3-t30/p880.env
create mode 100644 board/lg/x3-t30/p895.env
create mode 100644 board/microsoft/surface-rt/surface-rt.env
create mode 100644 board/nvidia/cardhu/cardhu.env
create mode 100644 board/nvidia/p2771-0000/p2771-0000.env
create mode 100644 board/nvidia/p3450-0000/p3450-0000.env
create mode 100644 board/toradex/apalis-tk1/apalis_tk1.env
create mode 100644 board/toradex/apalis_t30/apalis_t30.env
create mode 100644 board/toradex/colibri_t20/colibri_t20.env
create mode 100644 board/toradex/colibri_t30/colibri_t30.env
create mode 100644 board/wexler/qc750/qc750.env
delete mode 100644 include/configs/transformer-common.h
create mode 100644 include/env/nvidia/prod_upd.env
--
2.43.0
next reply other threads:[~2024-08-01 5:57 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-08-01 5:57 Svyatoslav Ryhel [this message]
2024-08-01 5:57 ` [PATCH v1 1/1] board: tegra: convert tegra-based boards to text env Svyatoslav Ryhel
2024-08-05 5:31 ` Francesco Dolcini
2024-08-05 7:01 ` Svyatoslav Ryhel
2024-08-05 7:05 ` Francesco Dolcini
2024-08-05 7:06 ` Svyatoslav Ryhel
2024-08-05 7:08 ` Francesco Dolcini
2024-08-05 7:10 ` Svyatoslav Ryhel
2024-08-05 15:07 ` Svyatoslav Ryhel
2024-08-05 5:33 ` [PATCH v1 0/1] board: tegra: convert " Francesco Dolcini
2024-08-05 6:03 ` Svyatoslav Ryhel
2024-08-05 6:12 ` Francesco Dolcini
2024-08-05 18:14 ` 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=20240801055738.7601-1-clamor95@gmail.com \
--to=clamor95@gmail.com \
--cc=emanuele.ghidoli@toradex.com \
--cc=festevam@gmail.com \
--cc=francesco.dolcini@toradex.com \
--cc=joe.hershberger@ni.com \
--cc=jonasschwoebel@yahoo.de \
--cc=marcel.ziswiler@toradex.com \
--cc=martyn.welch@collabora.com \
--cc=sjg@chromium.org \
--cc=treding@nvidia.com \
--cc=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