xref: /haiku/src/tools/bfs_shell/additional_commands.cpp (revision 3af8011358bd4c624a0979336d48dabb466171ed)
1 /*
2  * Copyright 2012, Axel Dörfler, axeld@pinc-software.de.
3  * Distributed under the terms of the MIT License.
4  */
5 
6 
7 #include "fssh.h"
8 
9 #include "command_checkfs.h"
10 #include "command_resizefs.h"
11 
12 
13 namespace FSShell {
14 
15 
16 void
17 register_additional_commands()
18 {
19 	CommandManager::Default()->AddCommand(command_checkfs, "checkfs",
20 		"check file system");
21 	CommandManager::Default()->AddCommand(command_resizefs, "resizefs",
22 		"resize file system");
23 }
24 
25 
26 }	// namespace FSShell
27