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
13namespace FSShell {
14
15
16void
17register_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