profile
1.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# /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