Re: [U-Boot] [PATCH] cmd: add clear screen 'cls' command

2018-12-01 Thread Anatolij Gustschin
Hi Patrick, On Mon, 19 Nov 2018 18:09:12 + Patrick DELAUNAY patrick.delau...@st.com wrote: ... > > +config CMD_CLS > > + bool "Enable clear screen command 'cls'" > > + depends on CFB_CONSOLE || DM_VIDEO || LCD || VIDEO > > Just a minor remark, you can also add : > > default y

Re: [U-Boot] [PATCH] cmd: add clear screen 'cls' command

2018-11-19 Thread Patrick DELAUNAY
Hi Anatolij > From: Anatolij Gustschin > Sent: samedi 17 novembre 2018 15:30 > > Add common clear screen command for configurations CONFIG_DM_VIDEO, > CONFIG_LCD and CONFIG_CFB_CONSOLE. > > Remove the existing cls command implementation from lcd.c code and activate > the command for all boards

[U-Boot] [PATCH] cmd: add clear screen 'cls' command

2018-11-17 Thread Anatolij Gustschin
Add common clear screen command for configurations CONFIG_DM_VIDEO, CONFIG_LCD and CONFIG_CFB_CONSOLE. Remove the existing cls command implementation from lcd.c code and activate the command for all boards enabling CONFIG_LCD for compatibility reasons. Signed-off-by: Anatolij Gustschin ---