mirror of
https://gitee.com/Vancouver2017/luban-lite.git
synced 2025-12-24 21:18:54 +00:00
v1.2.1
This commit is contained in:
@@ -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;
|
||||
|
||||
@@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user