diff options
author | Matteo Croce <matteo.croce@canonical.com> | 2016-06-22 15:15:10 +0200 |
---|---|---|
committer | Felix Fietkau <nbd@nbd.name> | 2016-08-11 10:45:33 +0200 |
commit | 1645abffea2785653de27d92ba0e977d1f32a538 (patch) | |
tree | d47dc4f73bdf87a24e1ea84dbf9a9d7b8b67faf4 /include | |
parent | dff6df962556b2f2fed0797a4d0d115dc68e90cb (diff) | |
download | upstream-1645abffea2785653de27d92ba0e977d1f32a538.tar.gz upstream-1645abffea2785653de27d92ba0e977d1f32a538.tar.bz2 upstream-1645abffea2785653de27d92ba0e977d1f32a538.zip |
kernel: add plan 9 fs package
9pfs is used by kvm to share files between host and guest,
add proper config option to enable it.
Signed-off-by: Matteo Croce <matteo.croce@canonical.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/target.mk | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/target.mk b/include/target.mk index 7fe48ecbe3..8b94959bc0 100644 --- a/include/target.mk +++ b/include/target.mk @@ -257,6 +257,9 @@ ifeq ($(DUMP),1) ifneq ($(CONFIG_RTC_CLASS),) FEATURES += rtc endif + ifneq ($(CONFIG_VIRTIO),) + FEATURES += virtio + endif FEATURES += $(foreach v,6 7,$(if $(CONFIG_CPU_V$(v)),arm_v$(v))) # remove duplicates |