Baruch Eruchimovitch | 499ef32 | 2013-01-11 15:01:00 +0200 | [diff] [blame] | 1 | #!/system/bin/sh |
| 2 | # Copyright (c) 2012-2013, 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 | |
| 31 | dir0=/data/usf |
| 32 | h_dir=$dir0/hovering |
| 33 | g_dir=$dir0/gesture |
| 34 | t_dir=$dir0/tester |
| 35 | e_dir=$dir0/epos |
| 36 | p2p_dir=$dir0/p2p |
| 37 | prox_dir=$dir0/proximity |
Ravit Dennis | 74eaef7 | 2013-12-10 10:30:36 +0200 | [diff] [blame] | 38 | pairing_dir=$dir0/pairing |
Baruch Eruchimovitch | 499ef32 | 2013-01-11 15:01:00 +0200 | [diff] [blame] | 39 | ucm_dir=$dir0/ucm |
Baruch Eruchimovitch | 3e468ed | 2013-11-04 10:30:56 +0200 | [diff] [blame] | 40 | mixer_dir=/persist/usf/mixer |
Baruch Eruchimovitch | 499ef32 | 2013-01-11 15:01:00 +0200 | [diff] [blame] | 41 | |
| 42 | trigger_file=$dir0/form_factor.cfg |
| 43 | |
| 44 | if [ ! -e $trigger_file ]; then |
| 45 | # Configurations select upon the current platform |
Baruch Eruchimovitch | 8afb9c2 | 2013-02-06 15:44:44 +0200 | [diff] [blame] | 46 | platform=`cat /sys/devices/soc0/hw_platform` |
Baruch Eruchimovitch | 499ef32 | 2013-01-11 15:01:00 +0200 | [diff] [blame] | 47 | type="" |
| 48 | |
| 49 | case $platform in |
| 50 | "Liquid") |
| 51 | type="liquid" |
| 52 | ;; |
| 53 | "Fluid") |
| 54 | type="fluid" |
| 55 | ;; |
| 56 | "MTP") |
| 57 | type="mtp" |
| 58 | ;; |
Baruch Eruchimovitch | 4f827e4 | 2013-07-23 13:22:18 +0300 | [diff] [blame] | 59 | "Dragon") |
| 60 | type="dragon" |
| 61 | ;; |
Baruch Eruchimovitch | 499ef32 | 2013-01-11 15:01:00 +0200 | [diff] [blame] | 62 | esac |
| 63 | |
| 64 | ln -s $dir0/form_factor_"$type".cfg $dir0/form_factor.cfg |
| 65 | ln -s $t_dir/cfg_"$type" $t_dir/cfg |
| 66 | ln -s $e_dir/cfg_"$type" $e_dir/cfg |
| 67 | ln -s $h_dir/cfg_"$type" $h_dir/cfg |
| 68 | ln -s $p2p_dir/cfg_"$type" $p2p_dir/cfg |
| 69 | ln -s $g_dir/cfg_"$type" $g_dir/cfg |
| 70 | ln -s $prox_dir/cfg_"$type" $prox_dir/cfg |
Ravit Dennis | 74eaef7 | 2013-12-10 10:30:36 +0200 | [diff] [blame] | 71 | ln -s $pairing_dir/cfg_"$type" $pairing_dir/cfg |
Baruch Eruchimovitch | 499ef32 | 2013-01-11 15:01:00 +0200 | [diff] [blame] | 72 | |
| 73 | ln -s $e_dir/cfg/usf_epos_"$type".cfg $e_dir/usf_epos.cfg |
| 74 | ln -s $t_dir/cfg/usf_tester_epos_"$type".cfg $t_dir/usf_tester.cfg |
| 75 | ln -s $h_dir/cfg/usf_hovering_"$type".cfg $h_dir/usf_hovering.cfg |
| 76 | ln -s $p2p_dir/cfg/usf_p2p_"$type".cfg $p2p_dir/usf_p2p.cfg |
| 77 | ln -s $g_dir/cfg/usf_gesture_"$type".cfg $g_dir/usf_gesture.cfg |
| 78 | ln -s $prox_dir/cfg/usf_proximity_"$type".cfg $prox_dir/usf_proximity.cfg |
Ravit Dennis | 74eaef7 | 2013-12-10 10:30:36 +0200 | [diff] [blame] | 79 | ln -s $pairing_dir/cfg/usf_pairing_"$type".cfg $pairing_dir/usf_pairing.cfg |
Baruch Eruchimovitch | 499ef32 | 2013-01-11 15:01:00 +0200 | [diff] [blame] | 80 | |
Baruch Eruchimovitch | 3e468ed | 2013-11-04 10:30:56 +0200 | [diff] [blame] | 81 | ln -s $mixer_dir/mixer_paths_"$type".xml $mixer_dir/mixer_paths.xml |
Baruch Eruchimovitch | 499ef32 | 2013-01-11 15:01:00 +0200 | [diff] [blame] | 82 | |
Baruch Eruchimovitch | 499ef32 | 2013-01-11 15:01:00 +0200 | [diff] [blame] | 83 | # The USF based calculators have system permissions |
| 84 | chown system $dir0/* |
| 85 | chown system $dir0/*/* |
| 86 | chown system $dir0/*/*/* |
| 87 | fi |
| 88 | |
| 89 | chown system /dev/usf1 |