diff options
author | Alexis211 <alexis211@gmail.com> | 2009-11-29 12:30:07 +0100 |
---|---|---|
committer | Alexis211 <alexis211@gmail.com> | 2009-11-29 12:30:07 +0100 |
commit | 74dea7d492d6d352bfacb147b1c08ad0cf0a8b29 (patch) | |
tree | f613c8395b75a68e51d69c24eb3acdb0816ad509 /Source/Kernel/Shell/KernelShell.class.h | |
parent | d3e4ef59cbb45f02e07fe17fb7c58cba3c737900 (diff) | |
parent | a913d4c2cb4daf10c0eac4d548fccb26b2a9f099 (diff) | |
download | Melon-74dea7d492d6d352bfacb147b1c08ad0cf0a8b29.tar.gz Melon-74dea7d492d6d352bfacb147b1c08ad0cf0a8b29.zip |
Merge branch 'mountpoints' of github.com:Alexis211/Melon into mountpoints
Diffstat (limited to 'Source/Kernel/Shell/KernelShell.class.h')
-rw-r--r-- | Source/Kernel/Shell/KernelShell.class.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/Kernel/Shell/KernelShell.class.h b/Source/Kernel/Shell/KernelShell.class.h index e7549c2..9655def 100644 --- a/Source/Kernel/Shell/KernelShell.class.h +++ b/Source/Kernel/Shell/KernelShell.class.h @@ -27,6 +27,7 @@ class KernelShell { void rm(Vector<String>& args); void wf(Vector<String>& args); void run(Vector<String>& args); + void hexdump(Vector<String>& args); //in KernelShell-sys void devices(Vector<String>& args); @@ -34,6 +35,8 @@ class KernelShell { void free(Vector<String>& args); void uptime(Vector<String>& args); void part(Vector<String>& args); + void readblock(Vector<String>& args); + void mount(Vector<String>& args); void setup(DirectoryNode* cwd, VirtualTerminal *vt); |