]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
configs: evb-rk3328: Enable vidconsole for rk3328
authorJagan Teki <jagan@amarulasolutions.com>
Wed, 17 Jan 2024 07:51:53 +0000 (13:21 +0530)
committerAnatolij Gustschin <agust@denx.de>
Sun, 21 Apr 2024 07:07:01 +0000 (09:07 +0200)
Enable video console for Rockchip RK3328.

Signed-off-by: Jagan Teki <jagan@amarulasolutions.com>
include/configs/evb_rk3328.h
include/configs/rk3328_common.h

index d10e5b1d2e03e56f91fb503d50b9d54a1b4ac671..c985080f7b3090b85960729d2431ce5ccc38cba6 100644 (file)
@@ -6,6 +6,11 @@
 #ifndef __EVB_RK3328_H
 #define __EVB_RK3328_H
 
+#define ROCKCHIP_DEVICE_SETTINGS \
+               "stdin=serial,usbkbd\0" \
+               "stdout=serial,vidconsole\0" \
+               "stderr=serial,vidconsole\0"
+
 #include <configs/rk3328_common.h>
 
 #endif
index e920ec7e5ddbfabeab0e5cac4fd1a4389d923bd3..2c40674b224181d1d1342c7f344c98073c76c812 100644 (file)
@@ -26,6 +26,7 @@
        ENV_MEM_LAYOUT_SETTINGS \
        "fdtfile=" CONFIG_DEFAULT_FDT_FILE "\0" \
        "partitions=" PARTS_DEFAULT \
+       ROCKCHIP_DEVICE_SETTINGS \
        "boot_targets=" BOOT_TARGETS "\0"
 
 #endif