From ebb8bbe5f3162abd8ed9252895b27cc896a3c975 Mon Sep 17 00:00:00 2001 From: "S.J.R. van Schaik" Date: Thu, 27 Jul 2017 13:17:55 +0200 Subject: [PATCH] main: add command for booting --- source/main.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source/main.c b/source/main.c index a650b83..7f9e57d 100644 --- a/source/main.c +++ b/source/main.c @@ -12,6 +12,7 @@ #include #include +#include #include #include #include @@ -29,6 +30,7 @@ struct cmd user_cmds[] = { { "ls", "", shell_ls }, { "date", "", shell_date }, { "time", "", shell_time }, + { "booting", "", shell_prepare }, { NULL, NULL, NULL }, };