diff options
author | Marek Vasut <marex@denx.de> | 2023-01-05 02:26:03 +0100 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-01-08 08:45:17 -0500 |
commit | 53e5b584e6414193c551442105e312a9bb047859 (patch) | |
tree | c2a33ee3a1dca98a518ea3cf627ebd7fc928c48e | |
parent | 051f409d25f84b394c15e82190c897a46cf6c60c (diff) | |
download | u-boot-WIP/08Jan2023.tar.gz |
distro_bootcmd: Fix copy-paste errorWIP/08Jan2023
The "SCRIPT FAILED" string is copied from scan_dev_for_scripts script,
update it so it prints "EXTLINUX FAILED" instead in scan_dev_for_extlinux
script.
Signed-off-by: Marek Vasut <marex@denx.de>
-rw-r--r-- | include/config_distro_bootcmd.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/config_distro_bootcmd.h b/include/config_distro_bootcmd.h index fcb319a20ae..c3a2414b914 100644 --- a/include/config_distro_bootcmd.h +++ b/include/config_distro_bootcmd.h @@ -484,7 +484,7 @@ "${prefix}${boot_syslinux_conf}; then " \ "echo Found ${prefix}${boot_syslinux_conf}; " \ "run boot_extlinux; " \ - "echo SCRIPT FAILED: continuing...; " \ + "echo EXTLINUX FAILED: continuing...; " \ "fi\0" \ \ "boot_a_script=" \ |