commit | 968b466247557a4d465c882c98bfde3182cd0093 | [log] [tgz] |
---|---|---|
author | Shawn Guo <shawn.guo@linaro.org> | Tue Jun 09 21:33:13 2020 +0800 |
committer | Amit Pundir <amit.pundir@linaro.org> | Sat Jun 20 21:07:20 2020 +0530 |
tree | d7cfd2eaafea7c4f3c5839bf92f4e832d3cd57af | |
parent | 08ad576ce0e63dbfeee2a3ba31a7cbe5973f1cdd [diff] |
gralloc_gbm: add .lock_ycbcr to support video use case cherry-picked from https://android-review.googlesource.com/c/1345437 The .lock_ycbcr function hook is currently missing from gralloc driver, and that stops video playback from working. Add a .lock_ycbcr function implementation to get SW video playback test start working, where HAL_PIXEL_FORMAT_YV12 format is used/tested. Signed-off-by: Shawn Guo <shawn.guo@linaro.org> Signed-off-by: Amit Pundir <amit.pundir@linaro.org> Change-Id: I847db96bc3a08ad746560881d31cf296a5943cbf
IMPORTANT NOTICE --> UNLOCKING AND ROOTING MAY VOID YOUR PHONE WARRANTY AND MAY BRICK YOUR DEVICE AS WELL. I'M NOT RESPONSIBLE FOR EITHER OF THAT.
Here is a reasonable guide to get you started on unlocking and rooting Poco F1 --> https://forum.xda-developers.com/poco-f1/how-to/xiaomi-poco-f1-unlock-bootloader-custom-t3839405
Just for the records I downloaded and installed following external packages to unlock and root my device-->
Also Dont forget to take a backup of your images from TWRP and copy them to your Host machine. It will come very handy. Believe me :)
mkdir aosp-repo cd aosp-repo repo init -u https://android.googlesource.com/platform/manifest -b master git clone git@github.com:pundiramit/android-local-manifests.git .repo/local_manifests -b master repo sync -j$nproc source build/envsetup.sh lunch aosp_beryllium-userdebug make -j$nproc
NOTE: To get display working on PocoF1, we need supported Adreno firmware binaries, otherwise PocoF1 will not boot to UI.
Adreno binaries are shipped with non-distributable license, hence I'm not shipping them in my build setup. You can extract Adreno a630_* firmware binaries from a working device build. I extracted mine from lineage-16.0-20190612-nightly-beryllium-signed.zip ;) Then copy the binaries to out vendor directory i.e. out/target/product/aosp_beryllium/vendor/firmware, and run "make -j$nproc" to create vendor.img again.
fastboot flash system system.img fastboot flash vendor vendor.img fastboot flash userdata userdata.img fastboot flash boot boot.img fastboot reboot
input swipe 20 2000 20 0 input tap 300 600 input tap 200 600 input tap 200 600 # Scanning for devices here. So wait till your BT mouse appears. input tap 400 600 input keyevent 22 input keyevent 22 input keyevent 66
mkdir kernel-repo cd kernel-repo repo init -u https://android.googlesource.com/kernel/manifest -b common-android-mainline git clone git@github.com:pundiramit/android-local-manifests.git .repo/local_manifests -b kernel repo sync -j$nproc BUILD_CONFIG=beryllium/build.config.beryllium ./build/build.sh
Delete all objects in aosp-repo/device/xiaomi/beryllium/prebuilt-kernel/android-mainline/ then copy build artifacts from kernel-repo/out/android-mainline/dist/ to aosp-repo/device/xiaomi/beryllium/prebuilt-kernel/android-mainline/ build AOSP images again.
cd aosp-repo source build/envsetup.sh lunch aosp_beryllium-userdebug make TARGET_KERNEL_USE=mainline -j$nproc
Now flash and boot AOSP images again with your custom kernel.
ToDo -->