summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--board/ryu/board.h3
-rw-r--r--core/cortex-m/task.c2
-rw-r--r--core/cortex-m0/task.c2
-rw-r--r--include/config.h2
-rw-r--r--power/common.c2
5 files changed, 11 insertions, 0 deletions
diff --git a/board/ryu/board.h b/board/ryu/board.h
index a00a1b6897..04bf5e4d94 100644
--- a/board/ryu/board.h
+++ b/board/ryu/board.h
@@ -37,6 +37,9 @@
#define CONFIG_INDUCTIVE_CHARGING
#undef CONFIG_HIBERNATE
+/* Disable unused console command to save flash space */
+#undef CONFIG_CMD_POWERINDEBUG
+
/*
* Pericom I2C workaround
* TODO(crosbug.com/p/31529): Remove this.
diff --git a/core/cortex-m/task.c b/core/cortex-m/task.c
index e031d58c04..de690ad007 100644
--- a/core/cortex-m/task.c
+++ b/core/cortex-m/task.c
@@ -567,6 +567,7 @@ DECLARE_CONSOLE_COMMAND(taskinfo, command_task_info,
"Print task info",
NULL);
+#ifdef CONFIG_CMD_TASKREADY
static int command_task_ready(int argc, char **argv)
{
if (argc < 2) {
@@ -583,6 +584,7 @@ DECLARE_CONSOLE_COMMAND(taskready, command_task_ready,
"[setmask]",
"Print/set ready tasks",
NULL);
+#endif
#ifdef CONFIG_CMD_STACKOVERFLOW
static void stack_overflow_recurse(int n)
diff --git a/core/cortex-m0/task.c b/core/cortex-m0/task.c
index 830d6a520c..59a8e4d7d6 100644
--- a/core/cortex-m0/task.c
+++ b/core/cortex-m0/task.c
@@ -538,6 +538,7 @@ DECLARE_CONSOLE_COMMAND(taskinfo, command_task_info,
"Print task info",
NULL);
+#ifdef CONFIG_CMD_TASKREADY
static int command_task_ready(int argc, char **argv)
{
if (argc < 2) {
@@ -554,6 +555,7 @@ DECLARE_CONSOLE_COMMAND(taskready, command_task_ready,
"[setmask]",
"Print/set ready tasks",
NULL);
+#endif
#ifdef CONFIG_CMD_STACKOVERFLOW
static void stack_overflow_recurse(int n)
diff --git a/include/config.h b/include/config.h
index ffd95fe0f2..3f6598b50e 100644
--- a/include/config.h
+++ b/include/config.h
@@ -323,12 +323,14 @@
#define CONFIG_CMD_LID_ANGLE
#undef CONFIG_CMD_PLL
#undef CONFIG_CMD_PMU
+#define CONFIG_CMD_POWERINDEBUG
#undef CONFIG_CMD_POWERLED
#undef CONFIG_CMD_RTC_ALARM
#undef CONFIG_CMD_SCRATCHPAD
#undef CONFIG_CMD_SLEEP
#undef CONFIG_CMD_SPI_FLASH
#undef CONFIG_CMD_STACKOVERFLOW
+#undef CONFIG_CMD_TASKREADY
/*****************************************************************************/
diff --git a/power/common.c b/power/common.c
index d4063d8db3..96c6966900 100644
--- a/power/common.c
+++ b/power/common.c
@@ -432,6 +432,7 @@ DECLARE_CONSOLE_COMMAND(powerinfo, command_powerinfo,
"Show current power state",
NULL);
+#ifdef CONFIG_CMD_POWERINDEBUG
static int command_powerindebug(int argc, char **argv)
{
const struct power_signal_info *s = power_signal_list;
@@ -466,6 +467,7 @@ DECLARE_CONSOLE_COMMAND(powerindebug, command_powerindebug,
"[mask]",
"Get/set power input debug mask",
NULL);
+#endif
#ifdef CONFIG_HIBERNATE
static int command_hibernation_delay(int argc, char **argv)