mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2026-03-05 14:01:04 +01:00
We switched towards standard boot with still keeping a fallback using legacy boot command alive. Add a deprecation warning to make it more clear that we will remove it in future versions. Signed-off-by: Wadim Egorov <w.egorov@phytec.de>
26 lines
845 B
Bash
26 lines
845 B
Bash
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* Copyright (C) 2024 PHYTEC Messtechnik GmbH
|
|
* Author: Daniel Schultz <d.schultz@phytec.de>
|
|
*/
|
|
|
|
/* Logic for TI K3 based SoCs to boot from a MMC device. */
|
|
|
|
#include <env/phytec/overlays.env>
|
|
#include <env/phytec/rauc.env>
|
|
|
|
mmcargs=setenv bootargs console=${console} earlycon=${earlycon}
|
|
root=/dev/mmcblk${mmcdev}p${mmcroot} ${raucargs} rootwait rw
|
|
${optargs}
|
|
mmcloadimage=load mmc ${mmcdev}:${mmcpart} ${kernel_addr_r} Image
|
|
mmcloadfdt=load mmc ${mmcdev}:${mmcpart} ${fdt_addr_r} ${fdtfile}
|
|
mmcboot=echo DEPRECATION WARNING: mmcboot will be removed in future versions. Use standard boot instead.;
|
|
if test ${doraucboot} = 1; then run raucinit; fi;
|
|
run mmcargs;
|
|
mmc dev ${mmcdev};
|
|
mmc rescan;
|
|
run mmcloadimage;
|
|
run mmcloadfdt;
|
|
run mmc_apply_overlays;
|
|
booti ${kernel_addr_r} - ${fdt_addr_r}
|