mirror of
https://github.com/Divested-Mobile/DivestOS-Build.git
synced 2025-05-02 06:26:20 -04:00
Many changes
- Remove proprietary audio enhancement blobs - Remove AudioFX to prevent crashes after blobs are removed - Deduplicate patches a bit with the new Patches/Common directory - Switch boot animation shine generation from gradient to plasma - Update submodules
This commit is contained in:
parent
0eeea28907
commit
f6cdc9426c
20 changed files with 20 additions and 901 deletions
|
@ -246,7 +246,7 @@ deblobDevice() {
|
|||
if [ "$DEBLOBBER_REPLACE_TIME" = false ]; then replaceTime="false"; fi; #Disable replacement
|
||||
if [ -f Android.mk ]; then
|
||||
#Some devices store these in a dedicated firmware partition, others in /system/vendor/firmware, either way the following are just symlinks
|
||||
sed -i '/ALL_DEFAULT_INSTALLED_MODULES/s/$(CMN_SYMLINKS)//' Android.mk; #Remove CMN firmware
|
||||
#sed -i '/ALL_DEFAULT_INSTALLED_MODULES/s/$(CMN_SYMLINKS)//' Android.mk; #Remove CMN firmware
|
||||
sed -i '/ALL_DEFAULT_INSTALLED_MODULES/s/$(DXHDCP2_SYMLINKS)//' Android.mk; #Remove Discretix firmware
|
||||
if [ "$DEBLOBBER_REMOVE_IMS" = true ]; then sed -i '/ALL_DEFAULT_INSTALLED_MODULES/s/$(IMS_SYMLINKS)//' Android.mk; fi; #Remove IMS firmware
|
||||
sed -i '/ALL_DEFAULT_INSTALLED_MODULES/s/$(PLAYREADY_SYMLINKS)//' Android.mk; #Remove Microsoft Playready firmware
|
||||
|
|
|
@ -98,7 +98,8 @@ export -f generateBootAnimationMask;
|
|||
generateBootAnimationShine() {
|
||||
color=$1;
|
||||
output=$2;
|
||||
convert -size 1024x128 -define gradient:angle=90 gradient:"$color" \( +clone -flop \) +append "$output";
|
||||
#convert -size 1024x128 -define gradient:angle=90 plasma:"$color" \( +clone -flop \) +append "$output";
|
||||
convert -size 2048x128 plasma:"$color" "$output";
|
||||
}
|
||||
export -f generateBootAnimationShine;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue