mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-28 16:48:18 +00:00

Convert boards to use text based env. This is the first stage of conversion, common inclusions should be converted next. Acked-by: Francesco Dolcini <francesco.dolcini@toradex.com> # Toradex Apalis TK1 Reviewed-by: Simon Glass <sjg@chromium.org> Signed-off-by: Svyatoslav Ryhel <clamor95@gmail.com>
7 lines
234 B
Bash
7 lines
234 B
Bash
/* Only MMC/PXE/DHCP for now, add USB back in later when supported */
|
|
boot_targets=mmc1 mmc0 pxe dhcp
|
|
|
|
preboot=if test -e mmc 1:1 /u-boot-preboot.scr; then
|
|
load mmc 1:1 ${scriptaddr} /u-boot-preboot.scr;
|
|
source ${scriptaddr};
|
|
fi
|