mirror of
git://projects.qi-hardware.com/nanobits.git
synced 2024-11-23 20:11:54 +02:00
ac84168269
Added Tweaks dir - modified /etc/profile - New /etc/banner with ben name and Qi logo
19 lines
583 B
Bash
19 lines
583 B
Bash
#!/bin/sh
|
|
setfont /usr/share/kbd/consolefonts/kernel-6x11-font
|
|
[ -f /etc/banner ] && cat /etc/banner
|
|
|
|
export PATH=/bin:/sbin:/usr/bin:/usr/sbin
|
|
export HOME=$(grep -e "^${USER:-root}:" /etc/passwd | cut -d ":" -f 6)
|
|
export HOME=${HOME:-/root}
|
|
export PS1='\u@\h:\w\$ '
|
|
|
|
[ -x /bin/more ] || alias more=less
|
|
[ -x /usr/bin/vim ] && alias vi=vim || alias vim=vi
|
|
|
|
[ -z "$KSH_VERSION" -o \! -s /etc/mkshrc ] || . /etc/mkshrc
|
|
|
|
[ -x /usr/bin/arp ] || arp() { cat /proc/net/arp; }
|
|
[ -z /bin/ldd ] || ldd() { LD_TRACE_LOADED_OBJECTS=1 $*; }
|
|
|
|
setfont /usr/share/kbd/consolefonts/kernel-6x11-font
|