mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-25 12:33:41 +00:00
00e1c4549d
The common env bits now come via ti_armv7_common.env, include it. Furthermore restore the board-specific boot targets and their ordering that is now enforced k3-wide differently. Finally, enable CONFIG_LEGACY_IMAGE_FORMAT explicitly which got lost while turning FIT_SIGNATURE on by default for k3 devices. Fixes:53873974
("include: armv7: Enable distroboot across all configs") Fixes:4ae1a247
("env: Make common bootcmd across all k3 devices") Fixes:86fab110
("Kconfig: Enable FIT_SIGNATURE if ARM64") Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
19 lines
442 B
Bash
19 lines
442 B
Bash
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* Copyright (c) Siemens AG, 2023
|
|
*
|
|
* Authors:
|
|
* Jan Kiszka <jan.kiszka@siemens.com>
|
|
*/
|
|
|
|
#include <environment/ti/ti_armv7_common.env>
|
|
|
|
usb_pgood_delay=900
|
|
|
|
watchdog_timeout_ms=CONFIG_WATCHDOG_TIMEOUT_MSECS
|
|
start_watchdog=
|
|
if test ${watchdog_timeout_ms} -gt 0; then
|
|
wdt dev watchdog@40610000;
|
|
wdt start ${watchdog_timeout_ms};
|
|
echo Watchdog started, timeout ${watchdog_timeout_ms} ms;
|
|
fi
|