PCI IDE driver, new create_volume () syscall, test scripts
All checks were successful
Build documentation / build-and-deploy (push) Successful in 2m37s
All checks were successful
Build documentation / build-and-deploy (push) Successful in 2m37s
This commit is contained in:
@@ -11,6 +11,7 @@
|
||||
/* drive devices */
|
||||
#define XDRV_TYPE_RAMDRV 0
|
||||
#define XDRV_TYPE_PARTDRV 1
|
||||
#define XDRV_TYPE_IDEDRV 2
|
||||
#define XDRV_GET_SIZE 0
|
||||
#define XDRV_GET_SECTOR_SIZE 1
|
||||
#define XDRV_GET_DEVICE_TYPE 2
|
||||
|
||||
8
include/fs_types.h
Normal file
8
include/fs_types.h
Normal file
@@ -0,0 +1,8 @@
|
||||
#ifndef _FS_TYPES_H
|
||||
#define _FS_TYPES_H
|
||||
|
||||
#define FS_TARFS 0
|
||||
#define FS_FAT16 1
|
||||
#define FS_FAT32 2
|
||||
|
||||
#endif // _FS_TYPES_H
|
||||
@@ -23,5 +23,7 @@
|
||||
#define ST_PARTITION_ERROR 19
|
||||
#define ST_CREATE_DIR_ERROR 20
|
||||
#define ST_REMOVE_ERROR 21
|
||||
#define ST_XDRV_READ_ERROR 22
|
||||
#define ST_XDRV_WRITE_ERROR 23
|
||||
|
||||
#endif // _M_STATUS_H
|
||||
|
||||
@@ -29,5 +29,6 @@
|
||||
#define SYS_KILL 26
|
||||
#define SYS_CREATE_DIR 27
|
||||
#define SYS_REMOVE 28
|
||||
#define SYS_CREATE_VOLUME 29
|
||||
|
||||
#endif // _M_SYSCALL_DEFS_H
|
||||
|
||||
Reference in New Issue
Block a user