mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-21 22:51:37 +00:00
Fix quoting bug introduced by commit 74de7aef
Signed-off-by: Wolfgang Denk <wd@denx.de>
This commit is contained in:
parent
ecf3fb223a
commit
83863df04b
3 changed files with 3 additions and 3 deletions
|
@ -157,7 +157,7 @@ int do_loadpci (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
|
||||||
char *s;
|
char *s;
|
||||||
|
|
||||||
if (((s = getenv("autoscript")) != NULL) && (strcmp(s,"yes") == 0)) {
|
if (((s = getenv("autoscript")) != NULL) && (strcmp(s,"yes") == 0)) {
|
||||||
printf ("Running "source" command at addr 0x%08lX",
|
printf ("Running \"source\" command at addr 0x%08lX",
|
||||||
load_addr);
|
load_addr);
|
||||||
|
|
||||||
s = getenv ("autoscript_uname");
|
s = getenv ("autoscript_uname");
|
||||||
|
|
|
@ -518,7 +518,7 @@ int do_load_serial_bin (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
|
||||||
char *s;
|
char *s;
|
||||||
|
|
||||||
if (((s = getenv("autoscript")) != NULL) && (strcmp(s,"yes") == 0)) {
|
if (((s = getenv("autoscript")) != NULL) && (strcmp(s,"yes") == 0)) {
|
||||||
printf ("Running "source" command at addr 0x%08lX",
|
printf ("Running \"source\" command at addr 0x%08lX",
|
||||||
load_addr);
|
load_addr);
|
||||||
|
|
||||||
s = getenv ("autoscript_uname");
|
s = getenv ("autoscript_uname");
|
||||||
|
|
|
@ -224,7 +224,7 @@ netboot_common (proto_t proto, cmd_tbl_t *cmdtp, int argc, char *argv[])
|
||||||
|
|
||||||
#ifdef CONFIG_SOURCE
|
#ifdef CONFIG_SOURCE
|
||||||
if (((s = getenv("autoscript")) != NULL) && (strcmp(s,"yes") == 0)) {
|
if (((s = getenv("autoscript")) != NULL) && (strcmp(s,"yes") == 0)) {
|
||||||
printf ("Running "source" command at addr 0x%08lX",
|
printf ("Running \"source\" command at addr 0x%08lX",
|
||||||
load_addr);
|
load_addr);
|
||||||
|
|
||||||
s = getenv ("autoscript_uname");
|
s = getenv ("autoscript_uname");
|
||||||
|
|
Loading…
Add table
Reference in a new issue