#!/system/bin/sh # Copyright (c) 2012, Code Aurora Forum. All rights reserved. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are met: # * Redistributions of source code must retain the above copyright # notice, this list of conditions and the following disclaimer. # * Redistributions in binary form must reproduce the above copyright # notice, this list of conditions and the following disclaimer in the # documentation and/or other materials provided with the distribution. # * Neither the name of Code Aurora nor # the names of its contributors may be used to endorse or promote # products derived from this software without specific prior written # permission. # # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" # AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE # IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NON-INFRINGEMENT ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR # CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, # EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, # PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; # OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, # WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR # OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. # export PATH=/system/bin # Set platform variables soc_hwplatform=`cat /sys/devices/system/soc/soc0/hw_platform` 2> /dev/null soc_hwid=`cat /sys/devices/system/soc/soc0/id` 2> /dev/null soc_hwver=`cat /sys/devices/system/soc/soc0/platform_version` 2> /dev/null log -t BOOT -p i "MSM target '$1', SoC '$soc_hwplatform', HwID '$soc_hwid', SoC ver '$soc_hwver'" case "$1" in "msm7630_surf" | "msm7630_1x" | "msm7630_fusion") case "$soc_hwplatform" in "FFA" | "SVLTE_FFA") # linking to surf_keypad_qwerty.kcm.bin instead of surf_keypad_numeric.kcm.bin so that # the UI keyboard works fine. ln -s /system/usr/keychars/surf_keypad_qwerty.kcm.bin /system/usr/keychars/surf_keypad.kcm.bin ;; "Fluid") setprop ro.sf.lcd_density 240 setprop qcom.bt.dev_power_class 2 ;; *) ln -s /system/usr/keychars/surf_keypad_qwerty.kcm.bin /system/usr/keychars/surf_keypad.kcm.bin ;; esac ;; "msm8660") case "$soc_hwplatform" in "Fluid") setprop ro.sf.lcd_density 240 ;; "Dragon") setprop ro.sound.alsa "WM8903" ;; esac ;; "msm8960") # lcd density is write-once. Hence the separate switch case case "$soc_hwplatform" in "Liquid") if [ "$soc_hwver" == "196608" ]; then # version 0x30000 is 3D sku setprop ro.sf.hwrotation 90 fi setprop ro.sf.lcd_density 160 ;; "MTP") setprop ro.sf.lcd_density 240 ;; *) case "$soc_hwid" in "109") setprop ro.sf.lcd_density 160 ;; *) setprop ro.sf.lcd_density 240 ;; esac ;; esac #Set up composition type based on the target case "$soc_hwid" in 87) #8960 setprop debug.composition.type dyn ;; 153|154|155|156|157|138) #8064 V2 PRIME | 8930AB | 8630AB | 8230AB | 8030AB | 8960AB setprop debug.composition.type c2d ;; *) esac ;; "msm8974") case "$soc_hwplatform" in "Liquid") setprop ro.sf.lcd_density 160 # Liquid do not have hardware navigation keys, so enable # Android sw navigation bar setprop ro.hw.nav_keys 0 ;; *) setprop ro.sf.lcd_density 320 ;; esac ;; "msm8610" | "msm8226") case "$soc_hwplatform" in *) setprop ro.sf.lcd_density 320 ;; esac ;; esac