2009-07-03 06:48:23 +08:00
|
|
|
/*
|
2010-07-19 00:15:53 +08:00
|
|
|
* File : dfs_fs.c
|
|
|
|
* This file is part of Device File System in RT-Thread RTOS
|
|
|
|
* COPYRIGHT (C) 2004-2010, RT-Thread Development Team
|
|
|
|
*
|
|
|
|
* The license and distribution terms for this file may be
|
|
|
|
* found in the file LICENSE in this distribution or at
|
|
|
|
* http://www.rt-thread.org/license/LICENSE.
|
|
|
|
*
|
|
|
|
* Change Logs:
|
|
|
|
* Date Author Notes
|
|
|
|
* 2005-02-22 Bernard The first version.
|
|
|
|
* 2010-06-30 Bernard Optimize for RT-Thread RTOS
|
|
|
|
*/
|
2009-07-03 06:48:23 +08:00
|
|
|
#include <dfs_fs.h>
|
2010-07-19 00:15:53 +08:00
|
|
|
#include <dfs_file.h>
|
|
|
|
|
|
|
|
/**
|
|
|
|
* this function will register a file system instance to device file system.
|
|
|
|
*
|
|
|
|
* @param ops the file system instance to be registered.
|
|
|
|
*
|
|
|
|
* @return 0 on sucessful, -1 on failed.
|
|
|
|
*/
|
|
|
|
int dfs_register(const struct dfs_filesystem_operation* ops)
|
2009-07-03 06:48:23 +08:00
|
|
|
{
|
2009-10-26 07:24:51 +08:00
|
|
|
int index, result;
|
|
|
|
|
|
|
|
result = 0;
|
2009-07-03 06:48:23 +08:00
|
|
|
|
2009-10-26 07:24:51 +08:00
|
|
|
/* lock filesystem */
|
|
|
|
dfs_lock();
|
2009-07-03 06:48:23 +08:00
|
|
|
|
2009-10-18 20:32:10 +08:00
|
|
|
/* check if this filesystem was already registered */
|
|
|
|
for (index = 0; index < DFS_FILESYSTEM_TYPES_MAX; index++)
|
|
|
|
{
|
|
|
|
if (filesystem_operation_table[index] != RT_NULL &&
|
|
|
|
strcmp(filesystem_operation_table[index]->name, ops->name) == 0)
|
2009-10-26 07:24:51 +08:00
|
|
|
{
|
|
|
|
result = -1;
|
2009-10-18 20:32:10 +08:00
|
|
|
goto err;
|
2009-10-26 07:24:51 +08:00
|
|
|
}
|
2009-10-18 20:32:10 +08:00
|
|
|
}
|
2009-07-03 06:48:23 +08:00
|
|
|
|
2009-10-18 20:32:10 +08:00
|
|
|
/* find out an empty filesystem type entry */
|
|
|
|
for (index = 0; index < DFS_FILESYSTEM_TYPES_MAX && filesystem_operation_table[index] != RT_NULL;
|
|
|
|
index++) ;
|
2009-07-03 06:48:23 +08:00
|
|
|
|
2009-10-18 20:32:10 +08:00
|
|
|
/* filesystem type table full */
|
2009-10-26 07:24:51 +08:00
|
|
|
if (index == DFS_FILESYSTEM_TYPES_MAX)
|
|
|
|
{
|
|
|
|
result = -1;
|
|
|
|
goto err;
|
|
|
|
}
|
2009-07-03 06:48:23 +08:00
|
|
|
|
2009-10-18 20:32:10 +08:00
|
|
|
/* save the filesystem's operations */
|
|
|
|
filesystem_operation_table[index] = ops;
|
|
|
|
|
2009-07-03 06:48:23 +08:00
|
|
|
err:
|
2009-10-26 07:24:51 +08:00
|
|
|
dfs_unlock();
|
|
|
|
return result;
|
2009-07-03 06:48:23 +08:00
|
|
|
}
|
|
|
|
|
2010-07-19 00:15:53 +08:00
|
|
|
/**
|
|
|
|
* this function will return the file system mounted on specified path.
|
|
|
|
*
|
|
|
|
* @param path the specified path string.
|
|
|
|
*
|
|
|
|
* @return the found file system or NULL if no file system mounted on
|
|
|
|
* specified path
|
|
|
|
*/
|
2009-07-03 06:48:23 +08:00
|
|
|
struct dfs_filesystem* dfs_filesystem_lookup(const char *path)
|
|
|
|
{
|
2009-10-18 20:32:10 +08:00
|
|
|
struct dfs_filesystem* fs;
|
|
|
|
rt_uint32_t index, fspath, prefixlen;
|
|
|
|
|
|
|
|
fs = RT_NULL;
|
|
|
|
prefixlen = 0;
|
|
|
|
|
2009-10-26 07:24:51 +08:00
|
|
|
/* lock filesystem */
|
|
|
|
dfs_lock();
|
2009-10-18 20:32:10 +08:00
|
|
|
|
|
|
|
/* lookup it in the filesystem table */
|
|
|
|
for (index = 0; index < DFS_FILESYSTEMS_MAX + 1; index++)
|
|
|
|
{
|
|
|
|
fspath = strlen(filesystem_table[index].path);
|
|
|
|
if (fspath < prefixlen) continue;
|
|
|
|
|
|
|
|
if ((filesystem_table[index].ops != RT_NULL) &&
|
2010-07-19 00:15:53 +08:00
|
|
|
strncmp(filesystem_table[index].path, path, fspath) == 0)
|
2009-10-18 20:32:10 +08:00
|
|
|
{
|
|
|
|
fs = &filesystem_table[index];
|
|
|
|
prefixlen = fspath;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-10-26 07:24:51 +08:00
|
|
|
dfs_unlock();
|
|
|
|
|
2009-10-18 20:32:10 +08:00
|
|
|
return fs;
|
2009-07-03 06:48:23 +08:00
|
|
|
}
|
|
|
|
|
2010-07-19 00:15:53 +08:00
|
|
|
/**
|
|
|
|
* this function will fetch the partition table on specified buffer.
|
|
|
|
*
|
|
|
|
* @param part the returned partition structure.
|
|
|
|
* @param buf the buffer contains partition table.
|
|
|
|
* @param pindex the index of partition table to fetch.
|
|
|
|
*
|
|
|
|
* @return RT_EOK on successful or -RT_ERROR on failed.
|
|
|
|
*/
|
2009-07-03 06:48:23 +08:00
|
|
|
rt_err_t dfs_filesystem_get_partition(struct dfs_partition* part, rt_uint8_t* buf, rt_uint32_t pindex)
|
|
|
|
{
|
|
|
|
#define DPT_ADDRESS 0x1be /* device partition offset in Boot Sector */
|
|
|
|
#define DPT_ITEM_SIZE 16 /* partition item size */
|
|
|
|
|
2009-10-18 20:32:10 +08:00
|
|
|
rt_uint8_t* dpt;
|
|
|
|
rt_uint8_t type;
|
|
|
|
rt_err_t result;
|
|
|
|
|
|
|
|
RT_ASSERT(part != RT_NULL);
|
|
|
|
RT_ASSERT(buf != RT_NULL);
|
|
|
|
|
|
|
|
result = RT_EOK;
|
|
|
|
|
|
|
|
dpt = buf + DPT_ADDRESS + pindex * DPT_ITEM_SIZE;
|
|
|
|
|
|
|
|
if ((*dpt != 0x80) && (*dpt != 0x00))
|
|
|
|
{
|
|
|
|
/* which is not a partition table */
|
|
|
|
result = -RT_ERROR;
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* get partition type */
|
|
|
|
type = *(dpt+4);
|
|
|
|
|
|
|
|
if (type != 0)
|
|
|
|
{
|
|
|
|
/* set partition type */
|
|
|
|
part->type = type;
|
|
|
|
|
|
|
|
/* get partition offset and size */
|
|
|
|
part->offset = *(dpt+ 8) | *(dpt+ 9) << 8 |
|
|
|
|
*(dpt+10) << 16 | *(dpt+11) << 24;
|
|
|
|
part->size = *(dpt+12) | *(dpt+13) << 8 |
|
|
|
|
*(dpt+14) << 16 | *(dpt+15) << 24;
|
2009-07-03 06:48:23 +08:00
|
|
|
|
2010-07-19 00:15:53 +08:00
|
|
|
rt_kprintf("found part[%d], begin: %d, size: ",
|
2009-10-18 20:32:10 +08:00
|
|
|
pindex, part->offset * 512);
|
|
|
|
if ( (part->size>>11) > 0 ) /* MB */
|
|
|
|
{
|
|
|
|
unsigned int part_size;
|
|
|
|
part_size = part->size>>11;/* MB */
|
|
|
|
if ( (part_size>>10) > 0) /* GB */
|
|
|
|
{
|
|
|
|
rt_kprintf("%d.%d%s",part_size>>10,part_size&0x3FF,"GB\r\n");/* GB */
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
rt_kprintf("%d.%d%s",part_size,(part->size>>1)&0x3FF,"MB\r\n");/* MB */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
rt_kprintf("%d%s",part->size>>1,"KB\r\n");/* KB */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
result = -RT_ERROR;
|
|
|
|
}
|
2009-07-03 06:48:23 +08:00
|
|
|
|
2009-10-18 20:32:10 +08:00
|
|
|
return result;
|
2009-07-03 06:48:23 +08:00
|
|
|
}
|
|
|
|
|
2010-07-19 00:15:53 +08:00
|
|
|
/**
|
|
|
|
* this function will mount a file system on a specified path.
|
|
|
|
*
|
|
|
|
* @param device_name the name of device which includes a file system.
|
|
|
|
* @param filesystemtype the file system type
|
|
|
|
* @param rwflag the read/write etc. flag.
|
|
|
|
* @param data the privated data(parameter) for this file system.
|
|
|
|
*
|
|
|
|
* @return 0 on successful or -1 on failed.
|
|
|
|
*/
|
2009-07-03 06:48:23 +08:00
|
|
|
int dfs_mount(const char* device_name, const char* path,
|
2009-10-18 20:32:10 +08:00
|
|
|
const char* filesystemtype, unsigned long rwflag, const
|
|
|
|
void* data)
|
2009-07-03 06:48:23 +08:00
|
|
|
{
|
2010-07-19 00:15:53 +08:00
|
|
|
const struct dfs_filesystem_operation* ops;
|
2009-10-18 20:32:10 +08:00
|
|
|
struct dfs_filesystem* fs;
|
|
|
|
char *fullpath=RT_NULL;
|
|
|
|
rt_device_t dev_id;
|
|
|
|
int index;
|
|
|
|
|
|
|
|
/* open specific device */
|
2010-04-22 17:33:25 +08:00
|
|
|
if (device_name != RT_NULL)
|
|
|
|
{
|
|
|
|
dev_id = rt_device_find(device_name);
|
|
|
|
if (dev_id == RT_NULL)
|
|
|
|
{
|
|
|
|
/* no this device */
|
|
|
|
rt_set_errno(-DFS_STATUS_ENODEV);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* which is a non-device filesystem mount */
|
|
|
|
dev_id = RT_NULL;
|
|
|
|
}
|
2009-10-18 20:32:10 +08:00
|
|
|
|
|
|
|
/* find out specific filesystem */
|
2009-10-26 07:24:51 +08:00
|
|
|
dfs_lock();
|
2009-10-18 20:32:10 +08:00
|
|
|
for ( index = 0; index < DFS_FILESYSTEM_TYPES_MAX; index++ )
|
|
|
|
{
|
|
|
|
if (strcmp(filesystem_operation_table[index]->name, filesystemtype) == 0)break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* can't find filesystem */
|
|
|
|
if ( index == DFS_FILESYSTEM_TYPES_MAX )
|
|
|
|
{
|
|
|
|
rt_set_errno(-DFS_STATUS_ENODEV);
|
2009-10-26 07:24:51 +08:00
|
|
|
dfs_unlock();
|
2009-10-18 20:32:10 +08:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
ops = filesystem_operation_table[index];
|
2009-10-26 07:24:51 +08:00
|
|
|
dfs_unlock();
|
2009-10-18 20:32:10 +08:00
|
|
|
|
|
|
|
/* make full path for special file */
|
2010-07-19 00:15:53 +08:00
|
|
|
fullpath = dfs_normalize_path(RT_NULL, path);
|
|
|
|
if ( fullpath == RT_NULL) /* not an abstract path */
|
2009-10-18 20:32:10 +08:00
|
|
|
{
|
|
|
|
rt_set_errno(-DFS_STATUS_ENOTDIR);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check if the path exists or not, raw APIs call, fixme */
|
|
|
|
if ( (strcmp(fullpath, "/") != 0) && (strcmp(fullpath, "/dev") != 0) )
|
|
|
|
{
|
|
|
|
struct dfs_fd fd;
|
|
|
|
|
2010-07-19 00:15:53 +08:00
|
|
|
if ( dfs_file_open(&fd, fullpath, DFS_O_RDONLY | DFS_O_DIRECTORY) < 0 )
|
2009-10-18 20:32:10 +08:00
|
|
|
{
|
2010-07-19 00:15:53 +08:00
|
|
|
rt_free(fullpath);
|
2009-10-18 20:32:10 +08:00
|
|
|
rt_set_errno(-DFS_STATUS_ENOTDIR);
|
|
|
|
return -1;
|
|
|
|
}
|
2010-07-19 00:15:53 +08:00
|
|
|
dfs_file_close(&fd);
|
2009-10-18 20:32:10 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* check whether the file system mounted or not */
|
2009-10-26 07:24:51 +08:00
|
|
|
dfs_lock();
|
2009-10-18 20:32:10 +08:00
|
|
|
for (index =0; index < DFS_FILESYSTEMS_MAX; index++)
|
|
|
|
{
|
|
|
|
if ( filesystem_table[index].ops != RT_NULL &&
|
|
|
|
strcmp(filesystem_table[index].path, path) == 0 )
|
|
|
|
{
|
|
|
|
rt_set_errno(-DFS_STATUS_EINVAL);
|
|
|
|
goto err1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* find out en empty filesystem table entry */
|
|
|
|
for (index = 0; index < DFS_FILESYSTEMS_MAX && filesystem_table[index].ops != RT_NULL;
|
|
|
|
index++) ;
|
|
|
|
if ( index == DFS_FILESYSTEMS_MAX ) /* can't find en empty filesystem table entry */
|
|
|
|
{
|
2010-10-19 16:18:24 +08:00
|
|
|
rt_set_errno(-DFS_STATUS_ENOSPC);
|
2009-10-18 20:32:10 +08:00
|
|
|
goto err1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* register file system */
|
|
|
|
fs = &(filesystem_table[index]);
|
2010-07-19 00:15:53 +08:00
|
|
|
fs->path = fullpath;
|
2009-10-18 20:32:10 +08:00
|
|
|
fs->ops = ops;
|
|
|
|
fs->dev_id = dev_id;
|
|
|
|
/* release filesystem_table lock */
|
2009-10-26 07:24:51 +08:00
|
|
|
dfs_unlock();
|
2009-10-18 20:32:10 +08:00
|
|
|
|
2010-04-22 17:33:25 +08:00
|
|
|
/* open device, but do not check the status of device */
|
|
|
|
if (dev_id != RT_NULL) rt_device_open(fs->dev_id, RT_DEVICE_OFLAG_RDWR);
|
2009-10-18 20:32:10 +08:00
|
|
|
|
2010-04-22 17:33:25 +08:00
|
|
|
if (ops->mount == RT_NULL) /* there is no mount implementation */
|
2009-10-18 20:32:10 +08:00
|
|
|
{
|
2010-04-22 17:33:25 +08:00
|
|
|
if (dev_id != RT_NULL) rt_device_close(dev_id);
|
2009-10-26 07:24:51 +08:00
|
|
|
dfs_lock();
|
2009-10-18 20:32:10 +08:00
|
|
|
/* clear filesystem table entry */
|
|
|
|
rt_memset(fs, 0, sizeof(struct dfs_filesystem));
|
2009-10-26 07:24:51 +08:00
|
|
|
dfs_unlock();
|
2009-10-18 20:32:10 +08:00
|
|
|
|
2010-07-19 00:15:53 +08:00
|
|
|
rt_free(fullpath);
|
2009-10-18 20:32:10 +08:00
|
|
|
rt_set_errno(-DFS_STATUS_ENOSYS);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
/* call mount of this filesystem */
|
2010-04-22 17:33:25 +08:00
|
|
|
else if (ops->mount(fs, rwflag, data) < 0)
|
2009-10-18 20:32:10 +08:00
|
|
|
{
|
|
|
|
/* close device */
|
2010-04-22 17:33:25 +08:00
|
|
|
if (dev_id != RT_NULL) rt_device_close(fs->dev_id);
|
2009-10-18 20:32:10 +08:00
|
|
|
|
2010-04-22 17:33:25 +08:00
|
|
|
/* mount failed */
|
|
|
|
dfs_lock();
|
2009-10-18 20:32:10 +08:00
|
|
|
/* clear filesystem table entry */
|
|
|
|
rt_memset(fs, 0, sizeof(struct dfs_filesystem));
|
2009-10-26 07:24:51 +08:00
|
|
|
dfs_unlock();
|
2010-04-22 17:33:25 +08:00
|
|
|
|
2010-07-19 00:15:53 +08:00
|
|
|
rt_free(fullpath);
|
2010-04-22 17:33:25 +08:00
|
|
|
return -1;
|
2009-10-18 20:32:10 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
2009-07-03 06:48:23 +08:00
|
|
|
|
|
|
|
err1:
|
2009-10-26 07:24:51 +08:00
|
|
|
dfs_unlock();
|
2010-07-19 00:15:53 +08:00
|
|
|
if (fullpath != RT_NULL) rt_free(fullpath);
|
|
|
|
|
2009-10-18 20:32:10 +08:00
|
|
|
return -1;
|
2009-07-03 06:48:23 +08:00
|
|
|
}
|
|
|
|
|
2010-07-19 00:15:53 +08:00
|
|
|
/**
|
|
|
|
* this function will umount a file system on specified path.
|
|
|
|
*
|
|
|
|
* @param specialfile the specified path which mounted a file system.
|
|
|
|
*
|
|
|
|
* @return 0 on successful or -1 on failed.
|
|
|
|
*/
|
2009-07-03 06:48:23 +08:00
|
|
|
int dfs_unmount(const char *specialfile)
|
|
|
|
{
|
2009-10-18 20:32:10 +08:00
|
|
|
char *fullpath;
|
|
|
|
struct dfs_filesystem* fs = RT_NULL;
|
|
|
|
|
2010-07-19 00:15:53 +08:00
|
|
|
fullpath = dfs_normalize_path(RT_NULL, specialfile);
|
|
|
|
if (fullpath == RT_NULL)
|
2009-10-18 20:32:10 +08:00
|
|
|
{
|
|
|
|
rt_set_errno(-DFS_STATUS_ENOTDIR);
|
|
|
|
return -1;
|
|
|
|
}
|
2009-07-03 06:48:23 +08:00
|
|
|
|
2009-10-26 07:24:51 +08:00
|
|
|
/* lock filesystem */
|
|
|
|
dfs_lock();
|
2009-07-03 06:48:23 +08:00
|
|
|
|
2009-10-18 20:32:10 +08:00
|
|
|
fs = dfs_filesystem_lookup(fullpath);
|
|
|
|
if (fs != RT_NULL && fs->ops->unmount != RT_NULL && fs->ops->unmount(fs) < 0)
|
|
|
|
{
|
|
|
|
goto err1;
|
|
|
|
}
|
2009-07-03 06:48:23 +08:00
|
|
|
|
2009-10-18 20:32:10 +08:00
|
|
|
/* close device, but do not check the status of device */
|
2010-05-22 22:57:51 +08:00
|
|
|
if (fs->dev_id != RT_NULL)
|
|
|
|
rt_device_close(fs->dev_id);
|
2009-07-03 06:48:23 +08:00
|
|
|
|
2009-10-18 20:32:10 +08:00
|
|
|
/* clear this filesystem table entry */
|
|
|
|
rt_memset(fs, 0, sizeof(struct dfs_filesystem));
|
2009-07-03 06:48:23 +08:00
|
|
|
|
2009-10-26 07:24:51 +08:00
|
|
|
dfs_unlock();
|
2010-07-19 00:15:53 +08:00
|
|
|
rt_free(fullpath);
|
2009-07-03 06:48:23 +08:00
|
|
|
|
2009-10-18 20:32:10 +08:00
|
|
|
return 0;
|
2009-07-03 06:48:23 +08:00
|
|
|
|
|
|
|
err1:
|
2009-10-26 07:24:51 +08:00
|
|
|
dfs_unlock();
|
2010-07-19 00:15:53 +08:00
|
|
|
rt_free(fullpath);
|
2009-10-26 07:24:51 +08:00
|
|
|
|
2009-10-18 20:32:10 +08:00
|
|
|
return -1;
|
2009-07-03 06:48:23 +08:00
|
|
|
}
|
2010-07-19 00:15:53 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* make a file system on the special device
|
|
|
|
*
|
|
|
|
* @param fs_name, the file system name
|
|
|
|
* @param device_name, the special device name
|
|
|
|
*
|
|
|
|
* @return 0 on successful, otherwise failed.
|
|
|
|
*/
|
|
|
|
int dfs_mkfs(const char* fs_name, const char* device_name)
|
|
|
|
{
|
|
|
|
int index;
|
|
|
|
|
|
|
|
/* lock filesystem */
|
|
|
|
dfs_lock();
|
|
|
|
/* find the file system operations */
|
|
|
|
for (index = 0; index < DFS_FILESYSTEM_TYPES_MAX; index++)
|
|
|
|
{
|
|
|
|
if (filesystem_operation_table[index] != RT_NULL &&
|
|
|
|
strcmp(filesystem_operation_table[index]->name, fs_name) == 0)
|
|
|
|
{
|
|
|
|
/* find file system operation */
|
|
|
|
const struct dfs_filesystem_operation* ops = filesystem_operation_table[index];
|
|
|
|
dfs_unlock();
|
|
|
|
|
|
|
|
if (ops->mkfs != RT_NULL)
|
|
|
|
return ops->mkfs(device_name);
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
dfs_unlock();
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* this function will return the information about a mounted file system.
|
|
|
|
*
|
|
|
|
* @param path the path which mounted file system.
|
|
|
|
* @param buffer the buffer to save the returned information.
|
|
|
|
*
|
|
|
|
* @return 0 on successful, others on failed.
|
|
|
|
*/
|
2010-10-19 16:18:24 +08:00
|
|
|
int dfs_statfs(const char* path, struct statfs* buffer)
|
2010-07-19 00:15:53 +08:00
|
|
|
{
|
|
|
|
struct dfs_filesystem* fs;
|
|
|
|
|
|
|
|
fs = dfs_filesystem_lookup(path);
|
|
|
|
if (fs != NULL)
|
|
|
|
{
|
|
|
|
if (fs->ops->statfs!= RT_NULL)
|
|
|
|
return fs->ops->statfs(fs, buffer);
|
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef RT_USING_FINSH
|
|
|
|
#include <finsh.h>
|
|
|
|
void mkfs(const char* fs_name, const char* device_name)
|
|
|
|
{
|
|
|
|
dfs_mkfs(fs_name, device_name);
|
|
|
|
}
|
|
|
|
FINSH_FUNCTION_EXPORT(mkfs, make a file system);
|
|
|
|
|
|
|
|
void df(const char* path)
|
|
|
|
{
|
2010-10-19 16:18:24 +08:00
|
|
|
struct statfs buffer;
|
2010-07-19 00:15:53 +08:00
|
|
|
|
|
|
|
if (dfs_statfs(path, &buffer) == 0)
|
|
|
|
{
|
|
|
|
rt_kprintf("disk free: %d block[%d bytes per block]\n", buffer.f_bfree, buffer.f_bsize);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
FINSH_FUNCTION_EXPORT(df, get disk free);
|
|
|
|
#endif
|
|
|
|
|