mirror of
https://gitee.com/Vancouver2017/luban-lite.git
synced 2025-12-18 10:08:53 +00:00
25 lines
439 B
C
25 lines
439 B
C
|
|
/*
|
||
|
|
* Copyright (c) 2023, Artinchip Technology Co., Ltd
|
||
|
|
*
|
||
|
|
* SPDX-License-Identifier: Apache-2.0
|
||
|
|
*
|
||
|
|
* Wu Dehuang <dehuang.wu@artinchip.com>
|
||
|
|
*/
|
||
|
|
|
||
|
|
#include <stdio.h>
|
||
|
|
#include <stdlib.h>
|
||
|
|
#include <stdint.h>
|
||
|
|
#include <string.h>
|
||
|
|
#include <console.h>
|
||
|
|
#include <aic_common.h>
|
||
|
|
#include <aic_errno.h>
|
||
|
|
|
||
|
|
static int do_mmc_boot(int argc, char *argv[])
|
||
|
|
{
|
||
|
|
int ret = 0;
|
||
|
|
|
||
|
|
return ret;
|
||
|
|
}
|
||
|
|
|
||
|
|
CONSOLE_CMD(mmc_boot, do_mmc_boot, "Boot from eMMC/SD.");
|