This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| https://developer.android.com/tools |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| https://github.com/CuriousNom/device_xiaomi_pipa | |
| https://github.com/MufasaXz/device_xiaomi_pipa | |
| https://github.com/Xiaomi-Pad6/device_xiaomi_pipa |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8"?> | |
| <manifest> | |
| <!-- | |
| <remove-project name="hardware/qcom-caf/sdm845/audio" /> | |
| <remove-project name="hardware/qcom-caf/sdm845/display" /> | |
| <remove-project name="hardware/qcom-caf/sdm845/media" /> | |
| <remove-project name="device/lineage/sepolicy" /> | |
| <remove-project name="device/qcom/sepolicy_vndr/legacy-um" /> | |
| --> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| https://wiki.lineageos.org/libvirt-qemu | |
| https://github.com/cnachen/android-lineage-qemu |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Repo manipulation | |
| https://blog.pixelos.net/docs/JoinTheTeam/BuildingPixelOS | |
| https://github.com/derveror/local_manifest | |
| https://github.com/PixelOS-AOSP/android_manifest | |
| https://wiki.lineageos.org/devices/polaris/build | |
| https://wiki.pixelexperience.org/devices/polaris/build | |
| https://source.android.com/docs/setup/download/troubleshoot-sync | |
| # Device trees | |
| https://github.com/duckyduckG |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| set -e -o errexit -o pipefail -o nounset | |
| set -x | |
| VMID=$1 | |
| PHASE="$2" | |
| get_pci_driver() { | |
| address="$1" | |
| driver=$(lspci -vvv -s $address | grep "Kernel driver in use" | awk '{print $5}') |