Describe how to build linux image with 9p boot, fixes #81

This commit is contained in:
copy 2016-07-29 23:10:37 +02:00
parent ec27e84b58
commit e013825c8c

14
docs/linux-9p-image.md Normal file
View file

@ -0,0 +1,14 @@
In order to create a Linux image that can mount the 9p file system, use add the following lines to the kernel config:
```
CONFIG_NET_9P=y
CONFIG_NET_9P_VIRTIO=y
CONFIG_NET_9P_DEBUG=y
CONFIG_VIRTIO=y
CONFIG_VIRTIO_PCI=y
CONFIG_9P_FS=y
CONFIG_9P_FSCACHE=y
CONFIG_9P_FS_POSIX_ACL=y
```
A Dockerfile for this build is here: https://github.com/ysangkok/build-v86-9p-linux