naz664 / xdroid_gsi

Patches for building Xdroid gsi

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Project xdroid

To get started with building xdroid GSI,

you'll need to get familiar with Git and Repo as well as How to build a GSI.

Create the directories

As a first step, you'll have to create and enter a folder with the appropriate name. To do that, run these commands:

   mkdir xdroid
   cd xdroid

To initialize your local repository, run this command:

   repo init -u https://github.com/xdroid-oss/xd_manifest -b twelve

Clone the Manifest to add necessary dependencies for gsi:

git clone https://github.com/naz664/treble_manifest.git .repo/local_manifests  -b 13

Afterwards, sync the source by running this command:

repo sync --force-sync --optimized-fetch --no-tags --no-clone-bundle --prune -j$(nproc --all)

After syncing, apply the patches:

Copy the patches folder to rom folder and in rom folder

   bash patches/apply-patches.sh .

Generating Rom Makefile

In rom folder,

   cd device/phh/treble
   bash generate.sh xdroid

Turn on caching to speed up build

You can speed up subsequent builds by adding these lines to your ~/.bashrc OR ~/.zshrc file:

export USE_CCACHE=1
export CCACHE_COMPRESS=1
export CCACHE_MAXSIZE=50G # 50 GB

Compilation

In rom folder,

. build/envsetup.sh
ccache -M 50G -F 0
lunch treble_arm64_bgN-userdebug 
make systemimage -j$(nproc --all)

Compress

After compilation, If you want to compress the build. In rom folder,

     cd out/target/product/tdgsi_arm64_ab
     xz -z -k system.img 

Troubleshoot

If you face any conflicts while applying patches, apply the patch manually.

Screenshots

image image image image image image

Credits

These people have helped this project in some way or another, so they should be the ones who receive all the credit:

About

Patches for building Xdroid gsi


Languages

Language:Makefile 100.0%