mirror of
https://github.com/peteratebs/tinyfatfs.git
synced 2025-06-18 16:55:42 -04:00
31 lines
658 B
C
31 lines
658 B
C
/*
|
|
* EBS - RTFS (Real Time File Manager)
|
|
*
|
|
* Copyright EBS Inc. 1987-2012
|
|
* All rights reserved.
|
|
* This code may not be redistributed in source or linkable object form
|
|
* without the consent of its author.
|
|
*/
|
|
|
|
#include "rtfslite.h"
|
|
#include "rtfslitetests.h"
|
|
#ifdef __linux__
|
|
int rtfsl_open_disk(char *raw_dev_name);
|
|
#endif
|
|
|
|
void main(int argc, char **argv)
|
|
{
|
|
if (argc != 2)
|
|
{
|
|
printf("Usage: %s block_dev_name\n", argv[0]);
|
|
printf("Usage: You must provide the device name of fat formatted device\n");
|
|
return;
|
|
}
|
|
if (rtfsl_open_disk(argv[1]) < 0)
|
|
{
|
|
printf("Could not open device: %s\n", argv[1]);
|
|
return;
|
|
}
|
|
rtfslite_shell();
|
|
}
|