commit fc5180b632d74723e042c9f03cc919743a014640 Author: badbl0cks <4161747+badbl0cks@users.noreply.github.com> Date: Sat Aug 22 17:07:13 2026 -0700 initial commit diff --git a/README.md b/README.md new file mode 100644 index 0000000..998c124 --- /dev/null +++ b/README.md @@ -0,0 +1,28 @@ +# ThinkSmart View HA boot animation for LineageOS + +Home Assistant boot animation for the Lenovo ThinkSmart View (`Lenovo_StarView` / `starfire`) running LineageOS 15.1. Dumped from the original Kingston HA ROM and converted so it displays properly on Lineage and for any orientation. + +`original/` has the untouched Kingston dumps, which don't display correctly on Lineage. + +## Install + +```bash +adb root +adb shell mkdir -p /data/adb/modules/custom_bootanim/system/media +adb push module.prop /data/adb/modules/custom_bootanim/module.prop +adb push bootanimation-landscape.zip /data/adb/modules/custom_bootanim/system/media/bootanimation.zip +adb shell ' + M=/data/adb/modules/custom_bootanim + find $M -type d -exec chmod 755 {} \; + find $M -type f -exec chmod 644 {} \; + chcon -R u:object_r:system_file:s0 $M +' +adb reboot +``` + +## Revert + +```bash +adb shell su -c 'rm -rf /data/adb/modules/custom_bootanim' +adb reboot +``` diff --git a/bootanimation-landscape-180.zip b/bootanimation-landscape-180.zip new file mode 100644 index 0000000..cd19c06 Binary files /dev/null and b/bootanimation-landscape-180.zip differ diff --git a/bootanimation-landscape.zip b/bootanimation-landscape.zip new file mode 100644 index 0000000..8645113 Binary files /dev/null and b/bootanimation-landscape.zip differ diff --git a/bootanimation-portrait-180.zip b/bootanimation-portrait-180.zip new file mode 100644 index 0000000..e8673a1 Binary files /dev/null and b/bootanimation-portrait-180.zip differ diff --git a/bootanimation-portrait.zip b/bootanimation-portrait.zip new file mode 100644 index 0000000..8d27dd7 Binary files /dev/null and b/bootanimation-portrait.zip differ diff --git a/module.prop b/module.prop new file mode 100644 index 0000000..1ec95c9 --- /dev/null +++ b/module.prop @@ -0,0 +1,6 @@ +id=custom_bootanim +name=Custom Boot Animation +version=v1.0 +versionCode=1 +author=badblocks +description=Systemless replacement for /system/media/bootanimation.zip diff --git a/original/kingston-original-horizontal.zip b/original/kingston-original-horizontal.zip new file mode 100644 index 0000000..61aba25 Binary files /dev/null and b/original/kingston-original-horizontal.zip differ diff --git a/original/kingston-original-vertical.zip b/original/kingston-original-vertical.zip new file mode 100644 index 0000000..bcc3526 Binary files /dev/null and b/original/kingston-original-vertical.zip differ