blob: f1f664927ecb08c5005a6a286fc47d9b419cd73b [file] [log] [blame]
wangxl2497caf2015-02-04 13:48:38 +08001#!/system/bin/sh
2# Copyright (c) 2012-2014, The Linux Foundation. All rights reserved.
3#
4# Redistribution and use in source and binary forms, with or without
5# modification, are permitted provided that the following conditions are
6# met:
7# * Redistributions of source code must retain the above copyright
8# notice, this list of conditions and the following disclaimer.
9# * Redistributions in binary form must reproduce the above
10# copyright notice, this list of conditions and the following
11# disclaimer in the documentation and/or other materials provided
12# with the distribution.
13# * Neither the name of The Linux Foundation nor the names of its
14# contributors may be used to endorse or promote products derived
15# from this software without specific prior written permission.
16#
17# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
18# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
19# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT
20# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
21# BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
22# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
23# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
24# BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
25# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
26# OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
27# IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28#
29#
30
31clean_copy_dir=/system/etc/usf
32dir0=/data/usf
33h_dir=$dir0/hovering
34g_dir=$dir0/gesture
35sg_dir=$dir0/sync_gesture
36t_dir=$dir0/tester
37e_dir=$dir0/epos
38p2p_dir=$dir0/p2p
39prox_dir=$dir0/proximity
40pairing_dir=$dir0/pairing
41sw_calib_dir=$dir0/sw_calib
42ucm_dir=$dir0/ucm
43mixer_dir=/persist/usf/mixer
44epos_dir=/persist/usf/epos
45p_dir=/persist/usf/pen_pairing
46sc_dir=/persist/usf/sw_calib
47
48trigger_file=$dir0/form_factor.cfg
49
50if [ ! -e $trigger_file ]; then
51 # Configurations select upon the current platform
52 platform=`cat /sys/devices/soc0/hw_platform`
53 type=""
54
55 case $platform in
56 "Liquid")
57 type="liquid"
58 ;;
59 "Fluid")
60 type="fluid"
61 ;;
62 "MTP")
63 type="mtp"
64 ;;
65 "Dragon")
66 type="dragon"
67 ;;
68 esac
69
wangxld80cd6f2015-05-05 10:46:15 +080070 cp -r $clean_copy_dir/* $dir0
wangxl2497caf2015-02-04 13:48:38 +080071
72 # The USF based calculators have system permissions
73 chown -R system $dir0
74
75 ln -s $dir0/form_factor_"$type".cfg $dir0/form_factor.cfg
76 ln -s $t_dir/cfg_"$type" $t_dir/cfg
77 ln -s $e_dir/cfg_"$type" $e_dir/cfg
78 ln -s $h_dir/cfg_"$type" $h_dir/cfg
79 ln -s $p2p_dir/cfg_"$type" $p2p_dir/cfg
80 ln -s $g_dir/cfg_"$type" $g_dir/cfg
81 ln -s $sg_dir/cfg_"$type" $sg_dir/cfg
82 ln -s $prox_dir/cfg_"$type" $prox_dir/cfg
83 ln -s $pairing_dir/cfg_"$type" $pairing_dir/cfg
84 ln -s $sw_calib_dir/cfg_"$type" $sw_calib_dir/cfg
85
86 ln -s $e_dir/cfg/usf_epos_"$type".cfg $e_dir/usf_epos.cfg
87 ln -s $t_dir/cfg/usf_tester_epos_"$type".cfg $t_dir/usf_tester.cfg
88 ln -s $h_dir/cfg/usf_hovering_"$type".cfg $h_dir/usf_hovering.cfg
89 ln -s $p2p_dir/cfg/usf_p2p_"$type".cfg $p2p_dir/usf_p2p.cfg
90 ln -s $g_dir/cfg/usf_gesture_"$type".cfg $g_dir/usf_gesture.cfg
91 ln -s $sg_dir/cfg/usf_sync_gesture_"$type".cfg $sg_dir/usf_sync_gesture.cfg
92 ln -s $prox_dir/cfg/usf_proximity_"$type".cfg $prox_dir/usf_proximity.cfg
93 ln -s $pairing_dir/cfg/usf_pairing_"$type".cfg $pairing_dir/usf_pairing.cfg
94 ln -s $sw_calib_dir/cfg/usf_sw_calib_"$type".cfg $sw_calib_dir/usf_sw_calib.cfg
95 ln -s $sw_calib_dir/cfg/usf_sw_calib_tester_"$type".cfg $sw_calib_dir/usf_sw_calib_tester.cfg
96
97 ln -s $e_dir/cfg/service_settings_"$type".xml $e_dir/service_settings.xml
98
99 ln -s $mixer_dir/mixer_paths_"$type".xml $mixer_dir/mixer_paths.xml
100
101 ln -s $epos_dir/ref1/product_calib_"$type"_ref1.dat $epos_dir/product_calib_ref1.dat
102 ln -s $epos_dir/ref2/product_calib_"$type"_ref2.dat $epos_dir/product_calib_ref2.dat
103 ln -s $epos_dir/ref3/product_calib_"$type"_ref3.dat $epos_dir/product_calib_ref3.dat
104 ln -s $epos_dir/ref1/unit_calib_"$type"_ref1.dat $epos_dir/unit_calib_ref1.dat
105 ln -s $epos_dir/ref2/unit_calib_"$type"_ref2.dat $epos_dir/unit_calib_ref2.dat
106 ln -s $epos_dir/ref3/unit_calib_"$type"_ref3.dat $epos_dir/unit_calib_ref3.dat
107
108 ln -s $sc_dir/sw_calib_"$type".dat $sc_dir/sw_calib.dat
109fi
110
111chown system /dev/usf1
112
113# Set enabled properties for daemon
114setprop ro.qc.sdk.us.digitalpen 1