Merge "remove obsolete script"

This commit is contained in:
TreeHugger Robot 2022-12-14 04:39:29 +00:00 committed by Android (Google) Code Review
commit ebfa0e4705
3 changed files with 0 additions and 33 deletions

View file

@ -824,13 +824,6 @@ on property:persist.sys.test_harness=1 && property:persist.vendor.testing_batte
setprop persist.vendor.charge.start.level 0
setprop vendor.battery.defender.disable 1
service init_display /vendor/bin/init.display.sh
class main
user root
group root system
disabled
oneshot
# bugreport is triggered by holding down volume down, volume up and power
service bugreport /system/bin/dumpstate -d -p -z
class main

View file

@ -300,10 +300,6 @@ PRODUCT_COPY_FILES += \
device/google/$(TARGET_BOARD_PLATFORM)/conf/fstab.persist:$(TARGET_COPY_OUT_VENDOR)/etc/fstab.persist \
device/google/$(TARGET_BOARD_PLATFORM)/conf/fstab.modem:$(TARGET_COPY_OUT_VENDOR)/etc/fstab.modem
# Shell scripts
PRODUCT_COPY_FILES += \
device/google/zuma/init.display.sh:$(TARGET_COPY_OUT_VENDOR)/bin/init.display.sh
include device/google/gs-common/insmod/insmod.mk
# For creating dtbo image

View file

@ -1,22 +0,0 @@
#!/vendor/bin/sh
modules_dir=
for f in /vendor/lib/modules/*/modules.dep /vendor/lib/modules/modules.dep; do
if [[ -f "$f" ]]; then
modules_dir="$(dirname "$f")"
break
fi
done
if [[ -z "${modules_dir}" ]]; then
echo "Unable to locate kernel modules directory" 2>&1
exit 1
fi
panel_drv=`getprop ro.boot.primary_panel_drv`
if [[ -z "$panel_drv" ]]; then
panel_drv="panel-samsung-emul"
fi
modprobe -d "${modules_dir}" exynos-drm.ko
modprobe -d "${modules_dir}" $panel_drv.ko