Message ID | 20200123141222.486-4-jagan@amarulasolutions.com |
---|---|
State | Accepted |
Commit | a30c68945cadc6aada3f05a6864627f3ca9d6bde |
Headers | show |
Series | [1/4] rockchip: rk3288: Enable pre console buffer | expand |
On 2020/1/23 下午10:12, Jagan Teki wrote: > Add console settings like stdin, stdout and stderr as > cros-ec-keyb and vidconsole respectively for Vyasa Rk3288 > board. > > This would certainly help to detect the attached video > devices (like HDMI) and print the console message on display. > > Signed-off-by: Jagan Teki <jagan at amarulasolutions.com> Reviewed-by: Kever Yang <kever.yang at rock-chips.com> Thanks, - Kever > --- > include/configs/vyasa-rk3288.h | 6 +++++- > 1 file changed, 5 insertions(+), 1 deletion(-) > > diff --git a/include/configs/vyasa-rk3288.h b/include/configs/vyasa-rk3288.h > index 3574a3b5a5..e31dc77720 100644 > --- a/include/configs/vyasa-rk3288.h > +++ b/include/configs/vyasa-rk3288.h > @@ -8,7 +8,11 @@ > #ifndef __CONFIG_H > #define __CONFIG_H > > -#define ROCKCHIP_DEVICE_SETTINGS > +#define ROCKCHIP_DEVICE_SETTINGS \ > + "stdin=serial,cros-ec-keyb\0" \ > + "stdout=serial,vidconsole\0" \ > + "stderr=serial,vidconsole\0" > + > #include <configs/rk3288_common.h> > > #undef BOOT_TARGET_DEVICES
diff --git a/include/configs/vyasa-rk3288.h b/include/configs/vyasa-rk3288.h index 3574a3b5a5..e31dc77720 100644 --- a/include/configs/vyasa-rk3288.h +++ b/include/configs/vyasa-rk3288.h @@ -8,7 +8,11 @@ #ifndef __CONFIG_H #define __CONFIG_H -#define ROCKCHIP_DEVICE_SETTINGS +#define ROCKCHIP_DEVICE_SETTINGS \ + "stdin=serial,cros-ec-keyb\0" \ + "stdout=serial,vidconsole\0" \ + "stderr=serial,vidconsole\0" + #include <configs/rk3288_common.h> #undef BOOT_TARGET_DEVICES
Add console settings like stdin, stdout and stderr as cros-ec-keyb and vidconsole respectively for Vyasa Rk3288 board. This would certainly help to detect the attached video devices (like HDMI) and print the console message on display. Signed-off-by: Jagan Teki <jagan at amarulasolutions.com> --- include/configs/vyasa-rk3288.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-)