Source code for the Trusted Boot Module.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
tbm-mcu/include/shell/mufs.h

14 lines
858 B

#pragma once
void shell_mount(struct console *con, const char **argv, size_t argc);
void shell_unmount(struct console *con, const char **argv, size_t argc);
void shell_format(struct console *con, const char **argv, size_t argc);
void shell_mkdir(struct console *con, const char **argv, size_t argc);
void shell_rmdir(struct console *con, const char **argv, size_t argc);
void shell_stat(struct console *con, const char **argv, size_t argc);
void shell_cat(struct console *con, const char **argv, size_t argc);
void shell_write(struct console *con, const char **argv, size_t argc);
void shell_append(struct console *con, const char **argv, size_t argc);
void shell_mv(struct console *con, const char **argv, size_t argc);
void shell_rm(struct console *con, const char **argv, size_t argc);
void shell_ls(struct console *con, const char **argv, size_t argc);