root/src/tools/bfs_shell/additional_commands.cpp
/*
 * Copyright 2012, Axel Dörfler, axeld@pinc-software.de.
 * Distributed under the terms of the MIT License.
 */


#include "fssh.h"

#include "command_checkfs.h"
#include "command_resizefs.h"


namespace FSShell {


void
register_additional_commands()
{
        CommandManager::Default()->AddCommand(command_checkfs, "checkfs",
                "check file system");
        CommandManager::Default()->AddCommand(command_resizefs, "resizefs",
                "resize file system");
}


}       // namespace FSShell