From f049ff844b4bc4590b8fead39006bf8a4b1d6624 Mon Sep 17 00:00:00 2001 From: Chen Qi Date: Fri, 21 Nov 2014 04:43:58 -0500 Subject: busybox: enable 'resize' in defconfig Previously, if we have 'bash' installed in our image, we would have the problem of long command rewriting on the same line which is really annoying. For example, we might get the following output. g commandx86:~# echo this is a very very very very long long long long lon In fact, we are just trying to execute: root@qemux86:~# echo this is a very very very very long long long long long command /etc/profile would execute '/usr/bin/resize' if it's available. We need this command so that we wouldn't get obscure output. The 'resize' command can be provided by 'xterm' (in meta-oe) or busybox. So we enable 'resize' in defconfig of busybox to make things work. Signed-off-by: Chen Qi --- meta/recipes-core/busybox/busybox/defconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-core/busybox/busybox/defconfig b/meta/recipes-core/busybox/busybox/defconfig index 8394067bed..0ebe83d93d 100644 --- a/meta/recipes-core/busybox/busybox/defconfig +++ b/meta/recipes-core/busybox/busybox/defconfig @@ -327,7 +327,7 @@ CONFIG_LOADFONT=y CONFIG_LOADKMAP=y CONFIG_OPENVT=y CONFIG_RESET=y -# CONFIG_RESIZE is not set +CONFIG_RESIZE=y # CONFIG_FEATURE_RESIZE_PRINT is not set CONFIG_SETCONSOLE=y # CONFIG_FEATURE_SETCONSOLE_LONG_OPTIONS is not set -- cgit 1.2.3-korg