eddf6fbda6
- Initial device tree for guamp device - Based in Qualcomm SM6115 Signed-off-by: GarfieldFernando <ferchito.zoma@gmail.com>
9 lines
225 B
Bash
9 lines
225 B
Bash
#!/vendor/bin/sh
|
|
|
|
# All modules that depend on conditions or need extra parameters
|
|
# should go here.
|
|
|
|
buildtype=$(getprop ro.build.type)
|
|
if [ $buildtype = "userdebug" ]; then
|
|
insmod /vendor/lib/modules/watchdogtest.ko
|
|
fi
|