Merge pull request #5 from megies/patch-1

Fix modprobe call in README
This commit is contained in:
Simon Fels 2018-07-13 08:04:06 +02:00 committed by GitHub
commit 2a5ea7c88b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 1 deletions

View File

@ -41,13 +41,16 @@ You can verify by loading these modules and checking the created devices:
``` ```
$ sudo modprobe ashmem_linux $ 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 $ ls -alh /dev/binder /dev/ashmem
``` ```
You are expected to see output like: 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 10, 55 Jun 19 16:30 /dev/ashmem
crw-rw-rw- 1 root root 511, 0 Jun 19 16:30 /dev/binder crw-rw-rw- 1 root root 511, 0 Jun 19 16:30 /dev/binder
``` ```