Skip to content

TWRP build repository for Samsung Galaxy Tab 3 Lite 7.0

Notifications You must be signed in to change notification settings

T11x-TWRP/twrp_build

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 

Repository files navigation

TWRP build repository for Samsung Galaxy Tab 3 Lite 7.0

WORK IN PROGRESS. WILL EAT YOUR CAT.

Disclaimer

These are steps for Ubuntu 20.04 and Ubuntu 18.04.

Prerequisites

  • Oracle JDK 7 (installation steps can be found here)
  • Android build tools (installation steps can be found here)

Syncing TWRP sources

mkdir ~/TWRP
cd ~/TWRP

mkdir ~/.bin
curl http://commondatastorage.googleapis.com/git-repo-downloads/repo > ~/.bin/repo
python3 ~/.bin/repo init --depth=1 -u https://github.com/minimal-manifest-twrp/platform_manifest_twrp_omni.git -b twrp-5.1
git clone --branch twrp-5.1 --single-branch https://github.com/T11x-TWRP/twrp_device_samsung_goya.git ~/TWRP/device/samsung/goya
python3 ~/.bin/repo sync -c --force-sync --optimized-fetch --no-tags --no-clone-bun --prune -j$(nproc --all)

Downloading Oracle JDK 7

mkdir ~/.jdk_7
cd ~/.jdk_7
wget https://download.java.net/openjdk/jdk7u75/ri/openjdk-7u75-b13-linux-x64-18_dec_2014.tar.gz
tar -xzf openjdk-7u75-b13-linux-x64-18_dec_2014.tar.gz

Building TWRP

OLDPATH=$PATH
OLDJAVAHOME=$JAVA_HOME
export PATH="$HOME/.jdk_7/java-se-7u75-ri/bin:$PATH"
export JAVA_HOME="$HOME/.jdk_7/java-se-7u75-ri"
cd ~/TWRP
source build/envsetup.sh
export ALLOW_MISSING_DEPENDENCIES=true
export LC_ALL=C
lunch omni_goya-eng
mka recoveryimage
export PATH=$OLDPATH
export JAVA_HOME=$OLDJAVAHOME

About

TWRP build repository for Samsung Galaxy Tab 3 Lite 7.0

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published