diff options
author | Patrick Delaunay <patrick.delaunay@foss.st.com> | 2021-12-07 10:05:58 +0100 |
---|---|---|
committer | Patrice Chotard <patrice.chotard@foss.st.com> | 2022-01-24 10:56:45 +0100 |
commit | d5e8119baed0dda4bd38984c1a16a8409f9219af (patch) | |
tree | 7ee88b0cdd231e494dd0a1c44e5b4a5be043691e /include/configs/stm32mp15_common.h | |
parent | 3919aa1722a2b01683a8747e1eab1ec9f6de0f40 (diff) | |
download | u-boot-d5e8119baed0dda4bd38984c1a16a8409f9219af.tar.gz |
stm32mp: remove the bootcount activation
Today the bootcount is not managed by the Linux kernel for STM32MP15 as
we don't have driver to update the used backup register in TAMP and the
recovery command still executes the normal bootcmd with
'altbootcmd=run bootcmd'.
So the bootcount feature is never used, the config CONFIG_BOOTCOUNT_LIMIT
and the associated environment variable 'altbootcmd' can be removed to
reduce the U-Boot size.
Each boards can re-enable this feature later in their defconfig, if it is
needed, with the expected backend, for example CONFIG_BOOTCOUNT_GENERIC
or CONFIG_BOOTCOUNT_ENV.
CC: Marek Vasut <marex@denx.de>
Signed-off-by: Patrick Delaunay <patrick.delaunay@foss.st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@foss.st.com>
Diffstat (limited to 'include/configs/stm32mp15_common.h')
-rw-r--r-- | include/configs/stm32mp15_common.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/configs/stm32mp15_common.h b/include/configs/stm32mp15_common.h index 2bbc8def820..175d546a158 100644 --- a/include/configs/stm32mp15_common.h +++ b/include/configs/stm32mp15_common.h @@ -137,7 +137,6 @@ #endif #define STM32MP_EXTRA \ - "altbootcmd=run bootcmd\0" \ "env_check=if env info -p -d -q; then env save; fi\0" \ "boot_net_usb_start=true\0" |