blob: d4e42f8b536049899f871c083be3091e004bafd8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
// SPDX-License-Identifier: GPL-2.0-or-later OR MIT
/*
* Copyright (c) 2024-2026 TQ-Systems GmbH <[email protected]>,
* D-82229 Seefeld, Germany.
* Author: Max Merchel
*
* shared environment for TQ imx boards
*/
#ifdef CONFIG_CMD_SF
#include "spi.env"
#ifdef CONFIG_CMD_UBIFS
#include "ubi.env"
#endif /* CONFIG_CMD_UBIFS */
#endif /* CONFIG_CMD_SF */
#ifdef CONFIG_CMD_MMC
#include "mmc.env"
#endif
#ifdef CONFIG_CMD_NFS
#include "nfs.env"
#endif
addip=
run check_ipaddr;
setenv bootargs "${bootargs}"
ip="${ipaddr}":"${serverip}":"${gatewayip}":"${netmask}":"${hostname}":"${netdev}":off
addtty=setenv bootargs "${bootargs}" "${console}"
check_ipaddr=
if test -z "${ipaddr}" || test -z "${serverip}"; then
echo "ipaddr or serverip unset, falling back to DHCP...";
dhcp;
fi;
rootfsmode=ro
|