This commit is contained in:
lmx
2025-10-29 13:10:02 +08:00
commit 49a07fa419
2284 changed files with 642060 additions and 0 deletions

View File

@ -0,0 +1,21 @@
#ifndef __DEV_REG_H__
#define __DEV_REG_H__
#include "system/includes.h"
#include "typedef.h"
///设备参数控制句柄
struct __dev_reg {
char *logo;//设备选择使用的逻辑盘符
char *name;//设备名称,底层匹配设备节点使用
char *storage_path;//设备路径文件系统mount时使用
char *root_path;//设备文件系统根目录
char *fs_type;//文件系统类型,如fat, sdfile
};
extern const struct __dev_reg dev_reg[];
#endif//__DEV_REG_H__