summaryrefslogtreecommitdiffstats
path: root/defaultenv/defaultenv-2-base/init/ps1
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2018-02-20 08:20:20 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2018-02-22 08:28:46 +0100
commit7e879bd678fa1ac8b1b0bd4e7b9c845b0e967da2 (patch)
tree6a7004cc79bda34e3e46bcb53292247d13849913 /defaultenv/defaultenv-2-base/init/ps1
parente18cc5b7e9ce0ac71f0e00f166ca2e2afcc3f466 (diff)
downloadbarebox-7e879bd678fa1ac8b1b0bd4e7b9c845b0e967da2.tar.gz
barebox-7e879bd678fa1ac8b1b0bd4e7b9c845b0e967da2.tar.xz
console: move global.allow_color handling to C code
We have global.allow_color, but this is limited to the environment only. Move creation and handling of this variable to C code so that we can add support for colored output to commands/console controlled by the same variable. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'defaultenv/defaultenv-2-base/init/ps1')
-rw-r--r--defaultenv/defaultenv-2-base/init/ps12
1 files changed, 1 insertions, 1 deletions
diff --git a/defaultenv/defaultenv-2-base/init/ps1 b/defaultenv/defaultenv-2-base/init/ps1
index 02d7b4b780..bbb544338c 100644
--- a/defaultenv/defaultenv-2-base/init/ps1
+++ b/defaultenv/defaultenv-2-base/init/ps1
@@ -1,6 +1,6 @@
#!/bin/sh
-if [ ${global.allow_color} = "true" ]; then
+if [ ${global.allow_color} = "1" ]; then
export PS1="\e[1;32mbarebox@\e[1;36m\h:\w\e[0m "
else
export PS1="barebox@\h:\w "