commit | 95938b98281381b893b18c375db414a10ab7517e | [log] [tgz] |
---|---|---|
author | Amit Pundir <amit.pundir@linaro.org> | Wed Feb 19 00:05:38 2020 +0530 |
committer | Amit Pundir <amit.pundir@linaro.org> | Tue Mar 31 10:26:53 2020 +0530 |
tree | 44e76ce0091cf8484372d50d066b12e6e00a9f4f | |
parent | 648e1d0f470b1abfae9cc1fe00ced72ea4979c14 [diff] |
mediaswcodec: Fix non-fatal selinux and seccomp policy denials cherry-picked from https://android-review.googlesource.com/c/1238348 Fix non-fatal mediaswcodec selinux and seccomp denials. mediaswcodec need gpu access, plus it also crashes with following seccomp error during youtube playback: E media.swcodec: libminijail[2139]: blocked syscall: sysinfo So whitelist sysinfo syscall for mediaswcodec. Change-Id: I11db36aeda475c4ca73121efb8b2bfd3d7590be0 Signed-off-by: Amit Pundir <amit.pundir@linaro.org> Signed-off-by: Amit Pundir <pundiramit@gmail.com>
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 :)
repo init -u https://android.googlesource.com/platform/manifest -b master git clone git@github.com:pundiramit/android-local-manifests.git .repo/local_manifests 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
Use standard abootimg commands to update kernel (Image.gz-dtb) in boot.img and fastboot flash the updated boot.img.
My working kernel is hosted at -->
https://github.com/pundiramit/linux/tree/display (beryllium_defconfig).
Prepare bootable kernel image (Image.gz-dtb) by running -->
$ cat arch/arm64/boot/Image.gz arch/arm64/boot/dts/qcom/sdm845-beryllium.dtb > arch/arm64/boot/Image.gz-dtb