[PATCH v2 5/5] board: phytec: phycore_imx8mp: Add RAUC boot logic to environment

2024-03-12 Thread Leonard Anderweit
Add RAUC boot logic to the environment. This is the first board to utilize this environment. Signed-off-by: Leonard Anderweit --- board/phytec/phycore_imx8mp/phycore_imx8mp.env | 7 ++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/board/phytec/phycore_imx8mp

[PATCH v2 1/5] phycore_imx8mp: Move environment from include/config to board

2024-03-12 Thread Leonard Anderweit
Move the environment into the board directory and convert it from a C header to a text file. Sort the variables alphabetically. No functional changes. Signed-off-by: Leonard Anderweit --- .../phytec/phycore_imx8mp/phycore_imx8mp.env | 45 +++ include/configs/phycore_imx8mp.h

[PATCH v2 2/5] phycore_imx8mp: Move default bootcmd to board env

2024-03-12 Thread Leonard Anderweit
Move the default bootcmd from the defconfig to the board environment. No change in functionality. Signed-off-by: Leonard Anderweit --- board/phytec/phycore_imx8mp/phycore_imx8mp.env | 12 configs/phycore-imx8mp_defconfig | 2 -- 2 files changed, 12 insertions(+), 2

[PATCH v2 4/5] include: env: Add phytec RAUC boot logic

2024-03-12 Thread Leonard Anderweit
Add logic for booting systems with the RAUC update mechanism. This can be reused by other phytec boards. Signed-off-by: Leonard Anderweit --- include/env/phytec/rauc.env | 52 + 1 file changed, 52 insertions(+) create mode 100644 include/env/phytec/rauc.env

[PATCH v2 3/5] configs: phycore-imx8mp_defconfig: Use redundant environment

2024-03-12 Thread Leonard Anderweit
Add support for the redundant environment. Signed-off-by: Leonard Anderweit --- configs/phycore-imx8mp_defconfig | 2 ++ 1 file changed, 2 insertions(+) diff --git a/configs/phycore-imx8mp_defconfig b/configs/phycore-imx8mp_defconfig index fd492eba3c10..6c67f14b5559 100644 --- a/configs

[PATCH v2 0/5] Add RAUC boot logic for phycore_imx8mp

2024-03-12 Thread Leonard Anderweit
. The third patch enables the redundant environment on phycore_imx8mp. Patch 4 adds RAUC boot logic common to all phytec boards. Patch 5 adds the RAUC boot logic to phycore_imx8mp. v2: - rebase on next Leonard Anderweit (5): phycore_imx8mp: Move environment from include/config to board phycore_imx8mp

[PATCH v3 0/5] Add RAUC boot logic for phycore_imx8mp

2024-03-12 Thread Leonard Anderweit
. The third patch enables the redundant environment on phycore_imx8mp. Patch 4 adds RAUC boot logic common to all phytec boards. Patch 5 adds the RAUC boot logic to phycore_imx8mp. v3: - swap loadimage and loadfdt in first patch - add Tested-by and Reviewed-by v2: - rebase on next Leonard Anderweit (5

[PATCH v3 1/5] phycore_imx8mp: Move environment from include/config to board

2024-03-12 Thread Leonard Anderweit
Move the environment into the board directory and convert it from a C header to a text file. Sort the variables alphabetically. No functional changes. Signed-off-by: Leonard Anderweit Reviewed-by: Teresa Remmet Tested-by: Teresa Remmet --- .../phytec/phycore_imx8mp/phycore_imx8mp.env | 45

[PATCH v3 2/5] phycore_imx8mp: Move default bootcmd to board env

2024-03-12 Thread Leonard Anderweit
Move the default bootcmd from the defconfig to the board environment. No change in functionality. Signed-off-by: Leonard Anderweit Tested-by: Teresa Remmet --- board/phytec/phycore_imx8mp/phycore_imx8mp.env | 12 configs/phycore-imx8mp_defconfig | 2 -- 2 files

[PATCH v3 3/5] configs: phycore-imx8mp_defconfig: Use redundant environment

2024-03-12 Thread Leonard Anderweit
Add support for the redundant environment. Signed-off-by: Leonard Anderweit Tested-by: Teresa Remmet --- configs/phycore-imx8mp_defconfig | 2 ++ 1 file changed, 2 insertions(+) diff --git a/configs/phycore-imx8mp_defconfig b/configs/phycore-imx8mp_defconfig index fd492eba3c10..6c67f14b5559

[PATCH v3 5/5] board: phytec: phycore_imx8mp: Add RAUC boot logic to environment

2024-03-12 Thread Leonard Anderweit
Add RAUC boot logic to the environment. This is the first board to utilize this environment. Signed-off-by: Leonard Anderweit Tested-by: Teresa Remmet --- board/phytec/phycore_imx8mp/phycore_imx8mp.env | 7 ++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/board/phytec

[PATCH v3 4/5] include: env: Add phytec RAUC boot logic

2024-03-12 Thread Leonard Anderweit
Add logic for booting systems with the RAUC update mechanism. This can be reused by other phytec boards. Signed-off-by: Leonard Anderweit Tested-by: Teresa Remmet --- include/env/phytec/rauc.env | 52 + 1 file changed, 52 insertions(+) create mode 100644

[PATCH 0/5] Add RAUC boot logic for phycore_imx8mp

2024-03-11 Thread Leonard Anderweit
. The third patch enables the redundant environment on phycore_imx8mp. Patch 4 adds RAUC boot logic common to all phytec boards. Patch 5 adds the RAUC boot logic to phycore_imx8mp. Leonard Anderweit (5): phycore_imx8mp: Move environment from include/config to board phycore_imx8mp: Move default bootcmd

[PATCH 3/5] configs: phycore-imx8mp_defconfig: Use redundant environment

2024-03-11 Thread Leonard Anderweit
Add support for the redundant environment. Signed-off-by: Leonard Anderweit --- configs/phycore-imx8mp_defconfig | 2 ++ 1 file changed, 2 insertions(+) diff --git a/configs/phycore-imx8mp_defconfig b/configs/phycore-imx8mp_defconfig index fd492eba3c10..6c67f14b5559 100644 --- a/configs

[PATCH 4/5] include: env: Add phytec RAUC boot logic

2024-03-11 Thread Leonard Anderweit
Add logic for booting systems with the RAUC update mechanism. This can be reused by other phytec boards. Signed-off-by: Leonard Anderweit --- include/env/phytec/rauc.env | 52 + 1 file changed, 52 insertions(+) create mode 100644 include/env/phytec/rauc.env

[PATCH 1/5] phycore_imx8mp: Move environment from include/config to board

2024-03-11 Thread Leonard Anderweit
Move the environment into the board directory and convert it from a C header to a text file. Sort the variables alphabetically. No functional changes. Signed-off-by: Leonard Anderweit --- .../phytec/phycore_imx8mp/phycore_imx8mp.env | 45 +++ include/configs/phycore_imx8mp.h

[PATCH 2/5] phycore_imx8mp: Move default bootcmd to board env

2024-03-11 Thread Leonard Anderweit
Move the default bootcmd from the defconfig to the board environment. No change in functionality. Signed-off-by: Leonard Anderweit --- board/phytec/phycore_imx8mp/phycore_imx8mp.env | 12 configs/phycore-imx8mp_defconfig | 2 -- 2 files changed, 12 insertions(+), 2

[PATCH 5/5] board: phytec: phycore_imx8mp: Add RAUC boot logic to environment

2024-03-11 Thread Leonard Anderweit
Add RAUC boot logic to the environment. This is the first board to utilize this environment. Signed-off-by: Leonard Anderweit --- board/phytec/phycore_imx8mp/phycore_imx8mp.env | 7 ++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/board/phytec/phycore_imx8mp

Re: [PATCH 3/5] configs: phycore-imx8mp_defconfig: Use redundant environment

2024-03-11 Thread Leonard Anderweit
Hi Fabio, Am Montag, dem 11.03.2024 um 11:05 -0300 schrieb Fabio Estevam: > Hi Leonard, > > On Mon, Mar 11, 2024 at 10:04 AM Leonard Anderweit > wrote: > > > > Add support for the redundant environment. > > > > Signed-off-by: Leonard Anderweit > >