Created
December 6, 2019 15:54
-
-
Save T-rex2017/baab38929822b22f922a8b2eb60b7312 to your computer and use it in GitHub Desktop.
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
ROMNAME=lineage-14.1 | |
LINK=https://github.com/LineageOS/android | |
BRANCH=cm-14.1 | |
THREAD_COUNT_SYNC=8 | |
echo -e "# Installing necessary packages..." | |
sudo apt install bc pxz wput | |
echo -e "# Installed" | |
echo -e "# Installing repo..." | |
repo init -u $LINK -b $BRANCH --depth 1 -q | |
echo -e "# Installed" | |
echo -e "# Syncing..." | |
repo sync -c -f -q --force-sync --no-clone-bundle --no-tags --optimized-fetch --prune -j$THREAD_COUNT_SYNC | |
echo -e "# Synced" | |
echo -e "# Starting Compression..." | |
export XZ_OPT=-9e | |
tar -I pxz -cf - * | split -b 4000M - $ROMNAME.tar.xz. | |
echo -e "# Compressed" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment