sharp: quiet test command

to suppress the error when eMMC has stock partition
This commit is contained in:
Takumi Sueda 2022-11-08 04:43:21 +09:00
parent a54822739b
commit 90c6d9064b
1 changed files with 5 additions and 1 deletions

View File

@ -108,6 +108,10 @@
"run quiet; " \
"fatload mmc ${dev}:${part} ${fdt_addr} ${fdt_file}; " \
"run unquiet\0" \
"checkenvexists=" \
"run quiet; " \
"test -e mmc ${dev}:${part} uEnv.txt; " \
"run unquiet\0" \
"loadenv=" \
"run quiet; " \
"fatload mmc ${dev}:${part} ${loadaddr} uEnv.txt; " \
@ -117,7 +121,7 @@
"env import -t ${loadaddr} ${filesize}; " \
"run unquiet\0" \
"loadandimportenv=" \
"if test -e mmc ${dev}:${part} uEnv.txt; then " \
"if run checkenvexists; then " \
"echo -n \"Loading environment from ${devname} ... \"; " \
"if setenv fail load && run loadenv && setenv fail parse && run importenv; then " \
"echo OK; " \