From ee120a704a2d193bb763c87e31fce38c58f75d1e Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Thu, 15 Jul 2010 18:32:01 +0200 Subject: add fancy prompt with hostname --- package/base-files/src/etc/profile | 4 ++-- package/busybox/config/shell/Config.in | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'package') diff --git a/package/base-files/src/etc/profile b/package/base-files/src/etc/profile index b849feb49..0d8a4f240 100644 --- a/package/base-files/src/etc/profile +++ b/package/base-files/src/etc/profile @@ -1,9 +1,9 @@ export PATH=/bin:/sbin:/usr/bin:/usr/sbin export TERM=vt220 if [[ $(id -u) = 0 ]]; then - export PS1='# ' + export PS1='\u@\h:\w\# ' else - export PS1='$ ' + export PS1='\u@\h:\w\$ ' fi cat /etc/banner 2>&- [ -x /usr/bin/vim ] && alias vi=vim || alias vim=vi diff --git a/package/busybox/config/shell/Config.in b/package/busybox/config/shell/Config.in index 30ed639c2..6535f3eb6 100644 --- a/package/busybox/config/shell/Config.in +++ b/package/busybox/config/shell/Config.in @@ -130,7 +130,7 @@ config BUSYBOX_ASH_RANDOM_SUPPORT config BUSYBOX_ASH_EXPAND_PRMT bool "Expand prompt string" - default n + default y depends on BUSYBOX_ASH help "PS#" may contain volatile content, such as backquote commands. -- cgit v1.2.3