mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-01-02 16:28:57 +00:00
5e541a05f7
The 'environment' word is too long. We mostly use 'env' in U-Boot, so use that as the name of the include directory too. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> # Intel Edison Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
19 lines
434 B
Bash
19 lines
434 B
Bash
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* Copyright (c) Siemens AG, 2023
|
|
*
|
|
* Authors:
|
|
* Jan Kiszka <jan.kiszka@siemens.com>
|
|
*/
|
|
|
|
#include <env/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
|