From 279b605e8b943bc64e847037df3ec264f59f9e05 Mon Sep 17 00:00:00 2001 From: Firewolf Date: Wed, 10 Oct 2018 19:51:02 +0600 Subject: [PATCH] Update README.md --- README.md | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 2045a12..c852759 100644 --- a/README.md +++ b/README.md @@ -4,37 +4,37 @@ Getting Started To get started with PitchBlack Recovery, you'll need to get familiar with [Git and Repo](https://source.android.com/source/using-repo.html). -To initialize your local repository using the minimal-manifest-twrp trees to build PBRP, use a command like this: +To initialize your local repository using the minimal-manifest-twrp trees omni to build PBRP, use a command like this: ```bash -repo init -u git://github.com/PitchBlack-Recovery/manifest_pb.git -b PBRP +$ repo init -u git://github.com/PitchBlack-Recovery/manifest_pb.git -b PBRP ``` For Initial Low RAM Devices or older MTK Devices: ```bash -repo init -u git://github.com/PitchBlack-Recovery/manifest_pb.git -b twrp-6.0 +$ repo init -u git://github.com/PitchBlack-Recovery/manifest_pb.git -b twrp-6.0 ``` To initialize a shallow clone, which will save even more space, use a command like this: ```bash -repo init --depth=1 -u git://github.com/PitchBlack-Recovery/manifest_pb.git -b PBRP +$ repo init --depth=1 -u git://github.com/PitchBlack-Recovery/manifest_pb.git -b PBRP ``` For Initial Low RAM Devices: ```bash -repo init --depth=1 -u git://github.com/PitchBlack-Recovery/manifest_pb.git -b twrp-6.0 +$ repo init --depth=1 -u git://github.com/PitchBlack-Recovery/manifest_pb.git -b twrp-6.0 ``` Then to sync up: ```bash -repo sync +$ repo sync ``` Then to build: ```bash - cd + $ cd - export ALLOW_MISSING_DEPENDENCIES=true + $ export ALLOW_MISSING_DEPENDENCIES=true - . build/envsetup.sh + $ . build/envsetup.sh - lunch omni_-eng + $ lunch omni_-eng - mka recoveryimage + $ mka recoveryimage ```