zhouziyang
zhouziyang
not sure whether related to #181 anyway, will update the `libLLVM.so` soon
Docker in Docker solution is feasible (mount docker daemon socket into your Ubuntu container, then start redroid container inside Ubuntu container). Possible you should try overlay data partition to share...
same issues here. but seems not cause problems. I will look into this later.
try to set `ro.hardware.camera=goldfish` or `ro.hardware.camera=ranchu`
personally, I tested on `redroid-9`, but `redroid-11` should work out of the box. I will look into this soon. you may try some running under software rendering `docker run ......
for `goldfish` / `ranchu` emulator camera, need create a camera service to feed metadata / video stream; and change `qemupipe` to some other `IPC` mechanism (`socket` etc,)
`redroid` is a totally different solution compared with `goldfish` emulator. `redroid` is a pure container solution, and can access all devices in Host directly. Well, Camera is not emulated in...
did you mount the same `data` directory to both containers? (should mount a different folder) ``` docker run ... -v ~/dara9:/data ... ```
try ``` docker run -itd --privileged -v ~/data-test9:/data \ -p 5599:5555 --name redroid5599 \ redroid/redroid:9.0.0-latest \ net.eth0.proxy.type=static \ net.eth0.proxy.port=172.17.0.1 \ net.eth0.proxy.port=8081 \ redroid.gpu.mode=guest docker exec mount -t binder binder /dev/binderfs...
not much useful logs in logcat (`vold` logs are flushed). Try to refine your binderfs module to support `stats=global` options; Since running on Ubuntu, why not just use the generic...