Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit b829f7f

Browse files
committedMar 19, 2025··
android/avf: readme
1 parent fcad378 commit b829f7f

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed
 

‎android/avf/README.md

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# android/avf/
2+
3+
Android Virtualization Framework is a new virtualization environment for Android
4+
5+
Among others, it is used to provide the Terminal App starting from Android 15 QPR2
6+
7+
This profile contains the necesarry services and kernel configs
8+
9+
The system changes have been taken from https://android.googlesource.com/platform/packages/modules/Virtualization/+/refs/heads/main/build/debian
10+
11+
# Building initial image
12+
13+
Assuming current folder is the root of this repo, build the following default.nix
14+
15+
```nix
16+
(import <nixpkgs/nixos/lib/eval-config.nix> {
17+
system = "aarch64-linux";
18+
modules = [
19+
(
20+
{ modulesPath, ... }:
21+
{
22+
imports = [
23+
./android/avf
24+
];
25+
}
26+
)
27+
];
28+
}).config.system.build.avfImage
29+
```
30+
31+
If the VM fails to start, include `./android/avf/debug.nix` and view the logs on a debuggable version of the Terminal app (there is no better way currently)
32+

0 commit comments

Comments
 (0)
Please sign in to comment.