mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-18 10:54:37 +00:00

Add CONFIG_BOOTCOUNT_ALTBOOTCMD so the developer is able to add custom altbootcmd via Kconfig when they enable BOOTCOUNT. With this now in Kconfig, we need to move it from environment files / config.h files and in to the defconfig file. This was done by generating u-boot-initial-env for all platforms before the Kconfig change, to extract altbootcmd values and then again after to compare the result. [trini: Perform migration to defconfigs, reword commit message] Signed-off-by: Tom Rini <trini@konsulko.com>
27 lines
657 B
C
27 lines
657 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* Copyright 2021-2022 Marek Vasut <marex@denx.de>
|
|
*/
|
|
|
|
#ifndef __IMX8MM_MX8MENLO_H
|
|
#define __IMX8MM_MX8MENLO_H
|
|
|
|
#include <configs/verdin-imx8mm.h>
|
|
|
|
/* PHY needs a longer autoneg timeout */
|
|
|
|
/* Custom initial environment variables */
|
|
#undef CFG_EXTRA_ENV_SETTINGS
|
|
#define CFG_EXTRA_ENV_SETTINGS \
|
|
BOOTENV \
|
|
MEM_LAYOUT_ENV_SETTINGS \
|
|
"devtype=mmc\0" \
|
|
"devnum=1\0" \
|
|
"distro_bootpart=1\0" \
|
|
"boot_file=fitImage\0" \
|
|
"console=ttymxc0\0" \
|
|
"fdt_addr=0x43000000\0" \
|
|
"initrd_addr=0x43800000\0" \
|
|
"kernel_image=fitImage\0"
|
|
|
|
#endif /* __IMX8MM_MX8MENLO_H */
|