export PATH=/bin:/sbin:/usr/bin:/usr/sbin
PS1="$HOSTNAME$PS1"
umask 022
#FAT permissions fix
#if test "$USER" = "root"; then chmod 777 /tmp; fi
#uname -v
# /etc/bashrc gives shell children the ANSI state implemented by GEM Terminal,
# so curses, termcap, vi/elvis, and ordinary shell tools share one contract.
#export MANPATH=/root/man:/lib
#export TZ=GMT0
# If TZ is set in /etc/default/kernel or above it wins, so don't set TZ below.

# ANX2-architected kernel controls use native service calls under /bin.
export ANX2_SERVICE_API=syscall
# GEM Terminal / vi compatibility.  Login shells chain a bash-compatible rc
# file so scripts that expect /etc/bashrc or $HOME/.bashrc get the same terminal
# defaults without patching userland programs.
if test -z "$TERM"; then TERM=ansi; export TERM; fi
TERMCAP=/etc/termcap; export TERMCAP
if test -f /etc/bashrc; then . /etc/bashrc; fi
if test -f "$HOME/.bashrc"; then . "$HOME/.bashrc"; fi
