04-07-2022, 02:11 PM
(02-15-2022, 06:32 PM)TheBlindEarthican Wrote: I found a case where they disabled the hardware render to get waydroid to start on the Pro.
#!/bin/bash
# Download image, can be slow
sudo waydroid init
# Older android images cant use hardware acceleration on new hardware, so turn off.
( sudo echo "ro.hardware.gralloc=default" ; sudo echo "ro.hardware.egl=swiftshader" ) >>/var/lib/waydroid/waydroid_base.prop
sudo systemctl enable waydroid-container.service
sudo systemctl restart waydroid-container.service
Then for start script:
#!/bin/bash
waydroid session start &
waydroid show-full-ui &
There is no guarantee that it will work, but you can try.
Thanks for this suggestion. This got Waydroid running for me on Pinephone Pro running Arch ARM in Phosh. Does this mean the Pinephone Pro GPU is not supported by Wayland?