summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--common/menutree.c1
-rw-r--r--common/password.c1
-rw-r--r--drivers/usb/gadget/f_fastboot.c1
-rw-r--r--fs/fs.c1
-rw-r--r--include/command.h1
-rw-r--r--include/common.h1
6 files changed, 5 insertions, 1 deletions
diff --git a/common/menutree.c b/common/menutree.c
index 97e628de88..160ba9ac4b 100644
--- a/common/menutree.c
+++ b/common/menutree.c
@@ -12,6 +12,7 @@
#include <environment.h>
#include <libbb.h>
#include <common.h>
+#include <command.h>
#include <glob.h>
#include <menu.h>
#include <fs.h>
diff --git a/common/password.c b/common/password.c
index 5b754d943f..05e61801f0 100644
--- a/common/password.c
+++ b/common/password.c
@@ -24,6 +24,7 @@
#include <digest.h>
#include <malloc.h>
#include <xfuncs.h>
+#include <command.h>
#include <magicvar.h>
#include <clock.h>
#include <init.h>
diff --git a/drivers/usb/gadget/f_fastboot.c b/drivers/usb/gadget/f_fastboot.c
index 0df08c9a2b..9a8cd4c844 100644
--- a/drivers/usb/gadget/f_fastboot.c
+++ b/drivers/usb/gadget/f_fastboot.c
@@ -17,6 +17,7 @@
#define pr_fmt(fmt) "fastboot: " fmt
#include <common.h>
+#include <command.h>
#include <errno.h>
#include <malloc.h>
#include <fcntl.h>
diff --git a/fs/fs.c b/fs/fs.c
index 440adae14c..d69e1e94cc 100644
--- a/fs/fs.c
+++ b/fs/fs.c
@@ -18,6 +18,7 @@
*/
#include <common.h>
+#include <command.h>
#include <fs.h>
#include <driver.h>
#include <errno.h>
diff --git a/include/command.h b/include/command.h
index 3aca1a9f1b..4ed5e37395 100644
--- a/include/command.h
+++ b/include/command.h
@@ -71,6 +71,7 @@ extern struct command __barebox_cmd_end;
struct command *find_cmd(const char *cmd);
int execute_command(int argc, char **argv);
void barebox_cmd_usage(struct command *cmdtp);
+int run_command(const char *cmd);
#define COMMAND_SUCCESS 0
#define COMMAND_ERROR 1
diff --git a/include/common.h b/include/common.h
index 38a6dbf933..f653c04565 100644
--- a/include/common.h
+++ b/include/common.h
@@ -61,7 +61,6 @@ void __noreturn hang (void);
char *size_human_readable(unsigned long long size);
-int run_command(const char *cmd);
int readline (const char *prompt, char *buf, int len);
/* common/memsize.c */