Skip to content

Instantly share code, notes, and snippets.

@T-rex2017
Created December 6, 2019 15:54
Show Gist options
  • Save T-rex2017/baab38929822b22f922a8b2eb60b7312 to your computer and use it in GitHub Desktop.
Save T-rex2017/baab38929822b22f922a8b2eb60b7312 to your computer and use it in GitHub Desktop.
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