-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcross-linux-release.sh
executable file
·68 lines (60 loc) · 1.73 KB
/
cross-linux-release.sh
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
#!/bin/bash
prompt="Pick the target platform:"
chip_options=("ak3916" \
"x1000" \
"t10" \
"t20" \
"sc6138")
PLATFORM=""
select opt in "${chip_options[@]}" "Quit"; do
case "$REPLY" in
1 ) echo "${chip_options[$REPLY-1]} is option";PLATFORM=${chip_options[$REPLY-1]};break;;
2 ) echo "${chip_options[$REPLY-1]} is option";PLATFORM=${chip_options[$REPLY-1]};break;;
3 ) echo "${chip_options[$REPLY-1]} is option";PLATFORM=${chip_options[$REPLY-1]};break;;
4 ) echo "${chip_options[$REPLY-1]} is option";PLATFORM=${chip_options[$REPLY-1]};break;;
$(( ${#chip_options[@]}+1 )) ) echo "Goodbye!"; break;;
*) echo "Invalid option. Try another one.";continue;;
esac
done
if [ "$PLATFORM" != "" ]; then
./ver_info.pl include/ssv_version.h
if [ $? -eq 0 ]; then
echo "Please check SVN first !!"
else
cp platforms/platform-config.mak .
cp platforms/$PLATFORM.cfg ssv6x5x.cfg
cp platforms/$PLATFORM-wifi.cfg ssv6x5x-wifi.cfg
cp platforms/$PLATFORM-wifi.cfg image/ssv6x5x-wifi.cfg
cp platforms/$PLATFORM-generic-wlan.c ssv6x5x-generic-wlan.c
cp Makefile.cross_linux Makefile
#sed -i 's,PLATFORMS =,PLATFORMS = '"$PLATFORM"',g' Makefile
make clean
# Remove garbage
svn rm wpa_supplicant.conf
svn rm unload.sh
svn rm sta.cfg
svn rm ssvcfg.sh
svn rm rules.mak
svn rm remove_old_driver.sh
svn rm load.sh
svn rm launch_sta_ap.sh
svn rm launch_ap_sta.sh
svn rm config.mak
svn rm cli
svn rm clean_log.sh
svn rm ap_shutdown.sh
svn rm ap_launch.sh
svn rm ap_check.sh
svn rm ap.cfg
svn rm build.sh
svn rm linux-build.sh
svn rm android-build.sh
svn rm cross-android-release.sh
svn rm Makefile.* --force
svn rm platforms/* --force
svn rm platforms --force
echo "Done ko!"
fi
else
echo "Fail!"
fi