69e9daff39
Change-Id: Ice36cfa2facfd02faf16ecc20a259b5482d81d1c
8 lines
169 B
Bash
8 lines
169 B
Bash
#!/system/bin/sh
|
|
# copy soundbooster config if not exists
|
|
|
|
if [ ! -e /data/soundbooster.txt ];
|
|
then
|
|
cp /system/etc/audio/soundbooster.txt /data/soundbooster.txt
|
|
fi;
|