mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-18 19:04:38 +00:00

Radxa ROCK 5C[1] is a Rockchip RK3588S2 based single board computer. [1] https://radxa.com/products/rock5/5c Signed-off-by: FUKAUMI Naoki <naoki@radxa.com> Reviewed-by: Kever Yang <kever.yang@rock-chips.com>
15 lines
337 B
C
15 lines
337 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* Copyright (c) 2024-2025 Radxa Computer (Shenzhen) Co., Ltd.
|
|
*/
|
|
|
|
#ifndef __ROCK_5C_RK3588S_H
|
|
#define __ROCK_5C_RK3588S_H
|
|
|
|
#define ROCKCHIP_DEVICE_SETTINGS \
|
|
"stdout=serial,vidconsole\0" \
|
|
"stderr=serial,vidconsole\0"
|
|
|
|
#include <configs/rk3588_common.h>
|
|
|
|
#endif /* __ROCK_5C_RK3588S_H */
|