Anbox kernel modules
Go to file
Dhiego Cassiano Fogaça Barbosa b0c3c5a7c9 compilation fix for kernel 5.15.2
Linux 5.15.2 updated security.h  security_binder_* functions (like security_binder_transfer_binder(), so it uses struct cred* instead of struct task_struct*)
2021-11-29 08:05:31 +01:00
ashmem Fix compilation of binder and ashmem on kernel 5.7 and later 2021-03-08 20:19:16 +01:00
binder compilation fix for kernel 5.15.2 2021-11-29 08:05:31 +01:00
debian Update changelog for release 12 and 13 2018-09-02 13:45:47 +02:00
scripts Update Travis configuration 2019-07-04 19:02:11 +09:00
.gitignore Update binder to the latest version 2021-09-26 18:54:51 +02:00
.travis.yml travis: Add kernel v5.4 2020-01-01 20:29:30 +01:00
99-anbox.rules Import kernel module source from original Anbox repository 2018-06-08 17:20:21 +02:00
INSTALL.sh feat: add script that automates install steps 2020-03-04 10:23:32 +01:00
README.md docs: describe the purpose of the INSTALL.sh 2020-03-04 10:25:36 +01:00
anbox.conf Import kernel module source from original Anbox repository 2018-06-08 17:20:21 +02:00

README.md

Build Status

Anbox Kernel Modules

This repository contains the kernel modules necessary to run the Anbox Android container runtime. They're split out of the original Anbox repository to make packaging in various Linux distributions easier.

Install Instruction

You need to have dkms and linux-headers on your system. You can install them by sudo apt install dkms or sudo yum install dkms (dkms is available in epel repo for CentOS).

Package name for linux-headers varies on different distributions, e.g. linux-headers-generic (Ubuntu), linux-headers-amd64 (Debian), kernel-devel (CentOS, Fedora), kernel-default-devel (openSUSE).

You can either run ./INSTALL.sh script to automate the installation steps or follow them manually below:

  • First install the configuration files:

    $ sudo cp anbox.conf /etc/modules-load.d/
    $ sudo cp 99-anbox.rules /lib/udev/rules.d/
    
  • Then copy the module sources to /usr/src/:

    $ sudo cp -rT ashmem /usr/src/anbox-ashmem-1
    $ sudo cp -rT binder /usr/src/anbox-binder-1
    
  • Finally use dkms to build and install:

    $ sudo dkms install anbox-ashmem/1
    $ sudo dkms install anbox-binder/1
    

You can verify by loading these modules and checking the created devices:

$ sudo modprobe ashmem_linux
$ 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