Update README with correct setup instructions (clone + symlink)

This commit is contained in:
Brendan Szymanski 2026-07-10 17:06:41 -04:00
parent 1c92bc3370
commit 07e3ddb5c0

View file

@ -17,10 +17,22 @@ repo init -u https://github.com/LineageOS/android.git -b lineage-23.2
# Add this local manifest
git clone https://git.bscubed.dev/lineage-rockchip/android_local_manifest.git .repo/local_manifests/android_local_manifest
# Create a symlink so repo picks up the manifest (repo only reads XML files
# directly in .repo/local_manifests/, not from subdirectories)
ln -s android_local_manifest/manifest.xml .repo/local_manifests/bscubed.xml
# Sync the full source tree (including local manifest overrides)
repo sync -c -j$(nproc)
```
### Updating the local manifest
```bash
cd .repo/local_manifests/android_local_manifest
git pull
# The symlink picks up changes automatically
```
## Building
```bash