blob: 8374c53d4504f393da71431a965d603606790f0e [file] [log] [blame]
Baruch Eruchimovitch499ef322013-01-11 15:01:00 +02001#!/system/bin/sh
2# Copyright (c) 2011-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
31dir0=/data/usf
Baruch Eruchimovitch98a7eb02013-01-23 17:25:08 +020032pcm_ind_file=$dir0/pcm_inds.txt
Baruch Eruchimovitch61fede62013-05-05 22:14:42 +030033pcm_file=/proc/asound/pcm
Baruch Eruchimovitch98a7eb02013-01-23 17:25:08 +020034
Baruch Eruchimovitch61fede62013-05-05 22:14:42 +030035tx_rx_patterns=(tx2- rx2-)
36dev_ids=("0" "0")
37cards=("0" "0")
38found_num=0
Baruch Eruchimovitch98a7eb02013-01-23 17:25:08 +020039
Baruch Eruchimovitch3e468ed2013-11-04 10:30:56 +020040# Run usf_settings script
41if [ -f /system/etc/usf_settings.sh ]; then
Lior Barenboim4d67d7f2014-12-15 18:03:07 +020042 source /system/etc/usf_settings.sh
Baruch Eruchimovitch3e468ed2013-11-04 10:30:56 +020043fi
44
Baruch Eruchimovitch61fede62013-05-05 22:14:42 +030045while read pcm_entry; do
46 for i in 0 1; do
47 echo $pcm_entry
48 id="${pcm_entry##*"${tx_rx_patterns[$i]}"}"
49 case "$pcm_entry" in
50 "$id")
51 ;;
Baruch Eruchimovitch98a7eb02013-01-23 17:25:08 +020052
Baruch Eruchimovitch61fede62013-05-05 22:14:42 +030053 *)
54 cards[$i]=${pcm_entry:0:2}
55 dev_ids[$i]=${pcm_entry:3:2}
56 found_num=$(( $found_num + 1))
57 i=2
58 ;;
59 esac
Baruch Eruchimovitch98a7eb02013-01-23 17:25:08 +020060
Baruch Eruchimovitch61fede62013-05-05 22:14:42 +030061 case $i in
62 2)
63 break
64 ;;
65 esac
66 done
67
68 case $found_num in
69 2)
70 break
71 ;;
72 esac
73
74done < $pcm_file
75
76echo ${dev_ids[0]}" "${dev_ids[1]}" "${cards[0]}" "${cards[1]}>$pcm_ind_file
77chmod 0644 $pcm_ind_file
Baruch Eruchimovitch98a7eb02013-01-23 17:25:08 +020078
Baruch Eruchimovitch499ef322013-01-11 15:01:00 +020079# Post-boot start of selected USF based calculators
80for i in $(cat $dir0/auto_start.txt); do
81 start $i
82done