readme: anbox-support: Make sure /dev/binderfs exists through /etc/tmpfiles.d

Thanks to Saancreed for pointing it out!
This commit is contained in:
Tk-Glitch 2021-03-11 15:28:01 +01:00
parent 2e41105b58
commit 08c5623a1c

View File

@ -38,7 +38,11 @@ sudo mkdir /dev/binderfs
sudo mount -t binder binder /dev/binderfs
```
To make this persistent, you can add the following to your `/etc/fstab` :
To make this persistent, you can create `/etc/tmpfiles.d/anbox.conf` with the following content :
```
d! /dev/binderfs 0755 root root
```
After which you can add the following to your `/etc/fstab` :
```
binder /dev/binderfs binder nofail 0 0
```