1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- if [ -f /sys/devices/soc0/soc_id ]; then
- platformid=`cat /sys/devices/soc0/soc_id`
- fi
- case "$platformid" in
- "557"|"577")
- /vendor/bin/sh /vendor/bin/init.qti.kernel.debug-pineapple.sh
- ;;
- "614"|"632")
- /vendor/bin/sh /vendor/bin/init.qti.kernel.debug-cliffs.sh
- ;;
- *)
- echo "***WARNING***: Invalid chip family\n\t skipping debug script!!\n"
- ;;
- esac
|