給reno5pro+編譯twrp
準(zhǔn)備工作:
一臺(tái)linux電腦
至少64g的剩余空間
良好的網(wǎng)絡(luò)連接
至少16g的運(yùn)行內(nèi)存

安裝依賴(lài)(以debian系為例)
sudo apt update
sudo apt install bc bison build-essential ccache curl flex g++-multilib gcc-multilib git gnupg gperf imagemagick lib32ncurses5-dev lib32readline-dev lib32z1-dev liblz4-tool libncurses5 libncurses5-dev libsdl1.2-dev libssl-dev libxml2 libxml2-utils lzop pngcrush rsync schedtool squashfs-tools xsltproc zip zlib1g-dev git?repo python python3?python3-pip -y --fix-missing

開(kāi)啟緩存(可選,提高編譯速度)
sudo apt install ccache -y
export USE_CCACHE=1
ccache -M 50g

同步源碼
git config --global user.email "xxx@xxx.com"
git config --global user.name "xxx"
repo init --depth=1 -u https://github.com/minimal-manifest-twrp/platform_manifest_twrp_omni.git -b twrp-12.1
出現(xiàn)repo has been initialized in xxxxxxx就成功了
repo sync(可能需要科學(xué)上網(wǎng))
出現(xiàn)repo sync has finished successfully就成功了

拉取設(shè)備樹(shù)
git clone https://github.com/AndyCGYan/android_device_oppo_OP4EA7 device/oppo/pdrm00

準(zhǔn)備編譯
build/envsetup.sh
lunch omni_pdrm00-eng

開(kāi)始編譯
export ALLOW_MISSING_DEPENDENCIES=true
export LC_ALL="C"
mka recoveryimage -j$(nproc)
編譯完成的twrp在out/target/product/pdrm00里。