Re: [U-Boot] [PATCH 3/3] cmd: Add osd commands

2018-04-10 Thread Mario Six
Hi Simon, On Fri, Mar 30, 2018 at 12:42 AM, Simon Glass wrote: > Hi Mario, > > On 28 March 2018 at 20:39, Mario Six wrote: >> Add command to query information from and write text to IHS OSDs. >> >> Signed-off-by: Mario Six >> --- >> cmd/Kconfig | 16 +++ >> cmd/Makefile | 1 + >> cmd/osd.c

Re: [U-Boot] [PATCH 3/3] cmd: Add osd commands

2018-03-29 Thread Simon Glass
Hi Mario, On 28 March 2018 at 20:39, Mario Six wrote: > Add command to query information from and write text to IHS OSDs. > > Signed-off-by: Mario Six > --- > cmd/Kconfig | 16 +++ > cmd/Makefile | 1 + > cmd/osd.c| 366 > +++ > 3

[U-Boot] [PATCH 3/3] cmd: Add osd commands

2018-03-28 Thread Mario Six
Add command to query information from and write text to IHS OSDs. Signed-off-by: Mario Six --- cmd/Kconfig | 16 +++ cmd/Makefile | 1 + cmd/osd.c| 366 +++ 3 files changed, 383 insertions(+) create mode 100644 cmd/osd.c diff --gi