This commit is contained in:
刘可亮
2025-07-22 11:15:46 +08:00
parent d164b333ed
commit 11c97ef399
2870 changed files with 951307 additions and 26675 deletions

View File

@@ -19,7 +19,7 @@ extern "C" {
/* Luban-Lite version information */
#define LL_VERSION 1 /**< major version number */
#define LL_SUBVERSION 2 /**< minor version number */
#define LL_REVISION 0 /**< revise version number */
#define LL_REVISION 1 /**< revise version number */
typedef __signed__ char s8;
typedef unsigned char u8;

View File

@@ -1,5 +1,5 @@
/*
* Copyright (c) 2023, Artinchip Technology Co., Ltd
* Copyright (c) 2023-2025, ArtInChip Technology Co., Ltd
*
* SPDX-License-Identifier: Apache-2.0
*
@@ -19,6 +19,7 @@
#define MAX_PARTITION_NAME 144
struct aic_partition {
char name[MAX_PARTITION_NAME];
int index;
u64 start;
u64 size;
struct aic_partition *next;
@@ -26,7 +27,7 @@ struct aic_partition {
struct aic_partition *aic_part_mtd_parse(char *parts);
struct aic_partition *aic_part_gpt_parse(char *parts);
struct aic_partition *aic_part_get_byname(struct aic_partition *head, char *name);
struct aic_partition *aic_part_get_byname(struct aic_partition *head, const char *name);
void aic_part_free(struct aic_partition *head);
void aic_part_dump(struct aic_partition *head);