blob: 291cc52807c13d3fb1dd9bf55c0b848d41b0b2cd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
mount /dev/pts
export BHOME=/build_tools
export HOME=/root
. /etc/profile
. /etc/bashrc
export PATH=$PATH:$BHOME/bin:$BHOME/bld/bin
export PS1='[\u@kmbuild \W]\$'
cd $BHOME
if [ -f /root/loginrun.sh ]
then
/root/loginrun.sh
fi
|