GK SDK 源码库: XMIPCLinuxV100R005C00SPC030 (kernel/tools/open_source excluded)

This commit is contained in:
lai
2026-09-06 03:52:57 +08:00
commit b1928b41c0
21813 changed files with 4413081 additions and 0 deletions
@@ -0,0 +1,12 @@
if TARGET_VYASA_RK3288
config SYS_BOARD
default "vyasa-rk3288"
config SYS_VENDOR
default "amarula"
config SYS_CONFIG_NAME
default "vyasa-rk3288"
endif
@@ -0,0 +1,8 @@
VYASA RK3288
M: Jagan Teki <jagan@amarulasolutions.com>
S: Maintained
F: board/amarula/vyasa-rk3288
F: include/configs/vyasa-rk3288.h
F: configs/vyasa-rk3288_defconfig
F: arch/arm/dts/rk3288-vyasa.dts
F: arch/arm/dts/rk3288-vyasa-u-boot.dtsi
@@ -0,0 +1,7 @@
#
# Copyright (C) 2017 Amarula Solutions
#
# SPDX-License-Identifier: GPL-2.0+
#
obj-y += vyasa-rk3288.o
@@ -0,0 +1,19 @@
// SPDX-License-Identifier: GPL-2.0+
/*
* Copyright (C) 2017 Amarula Solutions
*/
#include <common.h>
#include <serial.h>
#ifndef CONFIG_TPL_BUILD
int spl_start_uboot(void)
{
/* break into full u-boot on 'c' */
if (serial_tstc() && serial_getc() == 'c')
return 1;
return 0;
}
#endif