From dc1fbdebf4c80479be21305ac85e9312f81d1dea Mon Sep 17 00:00:00 2001 From: Seung-Woo Kim Date: Thu, 7 Sep 2017 11:07:30 +0900 Subject: [PATCH] configs: artik_common: fix wrong consoleon/consoleoff commands The CONFIG_CMD_SETEXPR option is not set, so set command is same with setenv command but consoleon and consoneoff commands are defined with "=', so it can not be run. Fix wrong consoleon and console off commands by using setenv command explictly. Change-Id: Id02a72dd5c135a784bb050e4cddcbe7434afc400 Signed-off-by: Seung-Woo Kim --- include/configs/artik_common.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/configs/artik_common.h b/include/configs/artik_common.h index 9df513c24..4c9103b0c 100755 --- a/include/configs/artik_common.h +++ b/include/configs/artik_common.h @@ -335,9 +335,9 @@ #define CONFIG_EXTRA_ENV_SETTINGS \ "console=" CONFIG_DEFAULT_CONSOLE \ - "consoleon=set console=" CONFIG_DEFAULT_CONSOLE \ + "consoleon=setenv console " CONFIG_DEFAULT_CONSOLE \ "; saveenv; reset\0" \ - "consoleoff=set console=ram; saveenv; reset\0" \ + "consoleoff=setenv console console=ram; saveenv; reset\0" \ "rootfslen=" __stringify(CONFIG_ROOTFS_LEN) "\0" \ "partitions=" PARTS_DEFAULT \ "partitions_android=" PARTS_ANDROID \ -- 2.34.1