Re: [U-Boot] [PATCH 1/2] cmd: go: Make do_go available to outside boot.c

2018-01-08 Thread Simon Glass
Hi Emmanuel, On 8 January 2018 at 03:00, Emmanuel Vadot wrote: > > > Hello Simon, > > On Sun, 7 Jan 2018 21:38:29 -0700 > Simon Glass wrote: > > > Hi Emmanuel, > > > > On 2 January 2018 at 14:27, Emmanuel Vadot wrote: > > > Some commands (like sysboot) might want to call go as they can encount

Re: [U-Boot] [PATCH 1/2] cmd: go: Make do_go available to outside boot.c

2018-01-08 Thread Emmanuel Vadot
Hello Simon, On Sun, 7 Jan 2018 21:38:29 -0700 Simon Glass wrote: > Hi Emmanuel, > > On 2 January 2018 at 14:27, Emmanuel Vadot wrote: > > Some commands (like sysboot) might want to call go as they can encounter > > a raw binary. > > Make do_go callable for everyone. > > > > Signed-off-by: E

Re: [U-Boot] [PATCH 1/2] cmd: go: Make do_go available to outside boot.c

2018-01-07 Thread Simon Glass
Hi Emmanuel, On 2 January 2018 at 14:27, Emmanuel Vadot wrote: > Some commands (like sysboot) might want to call go as they can encounter > a raw binary. > Make do_go callable for everyone. > > Signed-off-by: Emmanuel Vadot > --- > cmd/boot.c| 2 +- > include/command.h | 4 > 2 fil

[U-Boot] [PATCH 1/2] cmd: go: Make do_go available to outside boot.c

2018-01-02 Thread Emmanuel Vadot
Some commands (like sysboot) might want to call go as they can encounter a raw binary. Make do_go callable for everyone. Signed-off-by: Emmanuel Vadot --- cmd/boot.c| 2 +- include/command.h | 4 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/cmd/boot.c b/cmd/boot.c i