mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-08 06:04:34 +00:00
83d290c56f
When U-Boot started using SPDX tags we were among the early adopters and there weren't a lot of other examples to borrow from. So we picked the area of the file that usually had a full license text and replaced it with an appropriate SPDX-License-Identifier: entry. Since then, the Linux Kernel has adopted SPDX tags and they place it as the very first line in a file (except where shebangs are used, then it's second line) and with slightly different comment styles than us. In part due to community overlap, in part due to better tag visibility and in part for other minor reasons, switch over to that style. This commit changes all instances where we have a single declared license in the tag as both the before and after are identical in tag contents. There's also a few places where I found we did not have a tag and have introduced one. Signed-off-by: Tom Rini <trini@konsulko.com>
72 lines
2.1 KiB
C
72 lines
2.1 KiB
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* Copyright (C) 2017 Texas Instruments Incorporated - http://www.ti.com
|
|
*
|
|
* Environment variable definitions for MMC/SD on TI boards.
|
|
*/
|
|
|
|
#ifndef __TI_MMC_H
|
|
#define __TI_MMC_H
|
|
|
|
#define DEFAULT_MMC_TI_ARGS \
|
|
"mmcdev=0\0" \
|
|
"mmcrootfstype=ext4 rootwait\0" \
|
|
"finduuid=part uuid mmc ${bootpart} uuid\0" \
|
|
"args_mmc=run finduuid;setenv bootargs console=${console} " \
|
|
"${optargs} " \
|
|
"root=PARTUUID=${uuid} rw " \
|
|
"rootfstype=${mmcrootfstype}\0" \
|
|
"loadbootscript=load mmc ${mmcdev} ${loadaddr} boot.scr\0" \
|
|
"bootscript=echo Running bootscript from mmc${mmcdev} ...; " \
|
|
"source ${loadaddr}\0" \
|
|
"bootenvfile=uEnv.txt\0" \
|
|
"importbootenv=echo Importing environment from mmc${mmcdev} ...; " \
|
|
"env import -t ${loadaddr} ${filesize}\0" \
|
|
"loadbootenv=fatload mmc ${mmcdev} ${loadaddr} ${bootenvfile}\0" \
|
|
"loadimage=load ${devtype} ${bootpart} ${loadaddr} ${bootdir}/${bootfile}\0" \
|
|
"loadfdt=load ${devtype} ${bootpart} ${fdtaddr} ${bootdir}/${fdtfile}\0" \
|
|
"envboot=mmc dev ${mmcdev}; " \
|
|
"if mmc rescan; then " \
|
|
"echo SD/MMC found on device ${mmcdev};" \
|
|
"if run loadbootscript; then " \
|
|
"run bootscript;" \
|
|
"else " \
|
|
"if run loadbootenv; then " \
|
|
"echo Loaded env from ${bootenvfile};" \
|
|
"run importbootenv;" \
|
|
"fi;" \
|
|
"if test -n $uenvcmd; then " \
|
|
"echo Running uenvcmd ...;" \
|
|
"run uenvcmd;" \
|
|
"fi;" \
|
|
"fi;" \
|
|
"fi;\0" \
|
|
"mmcloados=run args_mmc; " \
|
|
"if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \
|
|
"if run loadfdt; then " \
|
|
"bootz ${loadaddr} - ${fdtaddr}; " \
|
|
"else " \
|
|
"if test ${boot_fdt} = try; then " \
|
|
"bootz; " \
|
|
"else " \
|
|
"echo WARN: Cannot load the DT; " \
|
|
"fi; " \
|
|
"fi; " \
|
|
"else " \
|
|
"bootz; " \
|
|
"fi;\0" \
|
|
"mmcboot=mmc dev ${mmcdev}; " \
|
|
"setenv devnum ${mmcdev}; " \
|
|
"setenv devtype mmc; " \
|
|
"if mmc rescan; then " \
|
|
"echo SD/MMC found on device ${mmcdev};" \
|
|
"if run loadimage; then " \
|
|
"if test ${boot_fit} -eq 1; then " \
|
|
"run loadfit; " \
|
|
"else " \
|
|
"run mmcloados;" \
|
|
"fi;" \
|
|
"fi;" \
|
|
"fi;\0"
|
|
|
|
#endif /* __TI_MMC_H */
|