From: Seung-Woo Kim Date: Thu, 7 Sep 2017 02:07:30 +0000 (+0900) Subject: configs: artik_common: fix wrong consoleon/consoleoff commands X-Git-Tag: submit/tizen_4.0/20170907.025159^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=dc1fbdebf4c80479be21305ac85e9312f81d1dea;p=profile%2Fcommon%2Fplatform%2Fkernel%2Fu-boot-artik.git 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 --- 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 \