From 1049f488ffeb81058ca49b0094ec0d589a13a5b2 Mon Sep 17 00:00:00 2001 From: Tobias Megies Date: Thu, 12 Jul 2018 15:38:08 +0200 Subject: [PATCH] Update README.md built module name for binder was not correct.. so the modprobe command needs changing compare https://github.com/anbox/anbox-modules/blob/c0c9d8f5d5bd2279a2eda5d4cc4dd7cb7bbe7cac/ashmem/dkms.conf#L5 --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 00edef7..3bd1db7 100644 --- a/README.md +++ b/README.md @@ -41,13 +41,16 @@ You can verify by loading these modules and checking the created devices: ``` $ sudo modprobe ashmem_linux -$ sudo modprobe ashmem_binder +$ sudo modprobe binder_linux +$ lsmod | grep -e ashmem_linux -e binder_linux $ ls -alh /dev/binder /dev/ashmem ``` You are expected to see output like: ``` +binder_linux 114688 0 +ashmem_linux 16384 0 crw-rw-rw- 1 root root 10, 55 Jun 19 16:30 /dev/ashmem crw-rw-rw- 1 root root 511, 0 Jun 19 16:30 /dev/binder ```