This commit is contained in:
eric
2026-04-04 16:08:32 -05:00
parent e56629bcc2
commit 9672f63cd9
2 changed files with 31 additions and 5 deletions

View File

@@ -92,6 +92,16 @@ python tools/compat.py -c podman --gpu-mode auto
python redroid.py -mtg -i -m
```
Build flags (short options):
| Flag | Long form | Meaning |
|------|-----------|---------|
| **`-mtg`** | `--install-mindthegapps` | Bake **MindTheGapps** (Google apps framework) into the image |
| **`-i`** | `--install-houdini` | Bake **libhoudini** + **redroid houdini hack** (ARM translation on x86) |
| **`-m`** | `--install-magisk` | Bake **Kitsune Mask / Magisk** bootless payload into the image |
Together they produce `redroid/redroid:13.0.0_mindthegapps_houdini_magisk`. None of these control the **screen**; display is set when you **run** the container (`run_redroid.py`).
Air-gapped (requires a complete `offline/` tree):
```bash
@@ -158,13 +168,11 @@ With **`--gpu-mode guest`** (or **`auto`** when no `/dev/dri` exists), the displ
```
The exact device path varies (Intel/AMD/NVIDIA, `nvidia-docker`, etc.); see [redroid-doc](https://github.com/remote-android/redroid-doc) GPU notes.
2. **Stay on software rendering** but tune the virtual panel (sometimes reduces glitches):
2. **Software GLES (`guest`)** — force low load on the virtual display (often reduces black screen / flicker):
```bash
python run_redroid.py ... --adb-insecure \
--extra-prop androidboot.redroid_width=720 \
--extra-prop androidboot.redroid_height=1280 \
--extra-prop androidboot.redroid_fps=15
python run_redroid.py ... --adb-insecure --gpu-mode guest --soft-display --memory 4g
```
`--soft-display` sets 720×1280, 15 FPS, dpi 280. You can tune further with `--extra-prop` if needed.
3. **First boot / SetupWizard** can sit on a dark screen for a while. Run **`bootstrap_redroid.py`** once `adb` shows `device` so provisioning and wizard are skipped as intended.