comparison rvinterf/etmsync/fscmdtab.c @ 303:61c68a55f2a2

fc-fsio: readlink implemented
author Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
date Sun, 02 Mar 2014 04:48:33 +0000
parents cd5068cf0551
children 42719fa3e6af
comparison
equal deleted inserted replaced
302:cd5068cf0551 303:61c68a55f2a2
16 extern int cmd_hd(); 16 extern int cmd_hd();
17 extern int cmd_ll(); 17 extern int cmd_ll();
18 extern int cmd_ls(); 18 extern int cmd_ls();
19 extern int cmd_mkdir(); 19 extern int cmd_mkdir();
20 extern int cmd_preformat(); 20 extern int cmd_preformat();
21 extern int cmd_readlink();
21 extern int cmd_set_imeisv(); 22 extern int cmd_set_imeisv();
22 extern int cmd_set_pcm_string(); 23 extern int cmd_set_pcm_string();
23 extern int cmd_stat(); 24 extern int cmd_stat();
24 extern int cmd_symlink(); 25 extern int cmd_symlink();
25 extern int cmd_uploadfs(); 26 extern int cmd_uploadfs();
39 {"hd", 1, 1, cmd_hd}, 40 {"hd", 1, 1, cmd_hd},
40 {"ll", 1, 1, cmd_ll}, 41 {"ll", 1, 1, cmd_ll},
41 {"ls", 1, 1, cmd_ls}, 42 {"ls", 1, 1, cmd_ls},
42 {"mkdir", 1, 1, cmd_mkdir}, 43 {"mkdir", 1, 1, cmd_mkdir},
43 {"preformat", 0, 0, cmd_preformat}, 44 {"preformat", 0, 0, cmd_preformat},
45 {"readlink", 1, 1, cmd_readlink},
44 {"set-imeisv", 2, 2, cmd_set_imeisv}, 46 {"set-imeisv", 2, 2, cmd_set_imeisv},
45 {"set-pcm-string", 2, 2, cmd_set_pcm_string}, 47 {"set-pcm-string", 2, 2, cmd_set_pcm_string},
46 {"stat", 1, 1, cmd_stat}, 48 {"stat", 1, 1, cmd_stat},
47 {"symlink", 2, 2, cmd_symlink}, 49 {"symlink", 2, 2, cmd_symlink},
48 {"upload-file", 2, 2, cmd_upload_file}, 50 {"upload-file", 2, 2, cmd_upload_file},