1# Microfuchsia 2 3Microfuchsia is an experimental solution for running trusted applications on 4pkvm using the Android Virtualization Framework (AVF). 5 6# How to use 7 8Add the `com.android.microfuchsia` apex to your product. 9 10``` 11PRODUCT_PACKAGES += com.android.microfuchsia 12``` 13 14Define and add a `com.android.microfuchsia.images` apex to hold the images. 15 16``` 17PRODUCT_PACKAGES += com.android.microfuchsia.images 18``` 19 20This apex must have a prebuilt `fuchsia.zbi` in `/etc/fuchsia.zbi` and a boot 21shim in `/etc/linux-arm64-boot-shim.bin`. 22 23# Using the console 24 25This command will open the console for the first VM running in AVF, and can be 26used to connect to the microfuchsia console. 27 28``` 29adb shell -t /apex/com.android.virt/bin/vm console 30``` 31