# /etc/profile: system-wide .profile file for the Bourne shell (sh(1))
# and Bourne compatible shells (bash(1), ksh(1), ash(1), ...).

if [ "`id -u`" -eq 0 ]; then
  PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
else
  PATH="/usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games"
fi
export PATH

if [ "$PS1" ]; then
  if [ "$BASH" ] && [ "$BASH" != "/bin/sh" ]; then
    # The file bash.bashrc already sets the default PS1.
    # PS1='\h:\w\$ '
    if [ -f /etc/bash.bashrc ]; then
      . /etc/bash.bashrc
    fi
  else
    if [ "`id -u`" -eq 0 ]; then
      PS1='# '
    else
      PS1='$ '
    fi
  fi
fi

if [ -d /etc/profile.d ]; then
  for i in /etc/profile.d/*.sh; do
    if [ -r $i ]; then
      . $i
    fi
  done
  unset i
fi

echo "____ins_language_mod_____"
export LANG="C.UTF-8";
export  LANGUAGE="C.UTF-8";

echo "____挂载数据缓冲区____"
mkswap /dev/mmcblk0p5
swapon /dev/mmcblk0p5
cat    /proc/swaps

echo "____挂载sdcard用户区____"
mount -t vfat -o iocharset=utf8 /dev/mmcblk0p3 /root/sdcard;

echo "____安装驱动____"
cd /root/kofile/
#insmod libcomposite.ko
#insmod usb_f_mass_storage.ko
insmod g_mass_storage.ko file=/dev/mmcblk0p3 stall=0 removable=1

echo "____初始化文件夹____";
cd /root/
mkdir -p /root/sdcard/audio;
mkdir -p /root/sdcard/record;
mkdir -p /root/sdcard/Logs;



echo "____检查更新____";
chmod 777 up.sh;
./up.sh;

echo "_____启动开始语音_____";
chmod 777 H1start;
./H1start;

ehco "____It_Just_Work____"
while true; do  
  echo "____开启 程序___"  
  chmod 777 CheckConnect.sh  
  ./CheckConnect.sh  

  echo "_____启动错误文件_____"  
  mount -o remount rw sdcard/
  sync  

  echo "____错误处理____"
  chmod 777 H1error;
  ./H1error;
done