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
+4
View File
@@ -0,0 +1,4 @@
ccflags-y += -I$(srctree)/product/update
obj-y += xmedia_main.o
@@ -0,0 +1,20 @@
// SPDX-License-Identifier: GPL-2.0
/* Copyright (c) LOTUS. All rights reserved. */
#include <common.h>
#include <command.h>
#include "update.h"
static int do_xmediaapp(cmd_tbl_t *cmdtp, int flag, int argc, char *const argv[])
{
#if (CONFIG_AUTO_UPDATE == 1)
auto_update();
#endif
return 0;
}
U_BOOT_CMD(xmediaapp, 1, 0, do_xmediaapp,
"xmediaapp - Xmedia Application.\n",
"Run auto update and others business.\n");