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 /scripts | |
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 'scripts')
-rwxr-xr-x | scripts/target-metadata.pl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/target-metadata.pl b/scripts/target-metadata.pl index 7e7d26bac9..a7239166f7 100755 --- a/scripts/target-metadata.pl +++ b/scripts/target-metadata.pl @@ -39,6 +39,7 @@ sub target_config_features(@) { /low_mem/ and $ret .= "\tselect LOW_MEMORY_FOOTPRINT\n"; /small_flash/ and $ret .= "\tselect SMALL_FLASH\n"; /nand/ and $ret .= "\tselect NAND_SUPPORT\n"; + /virtio/ and $ret .= "\tselect VIRTIO_SUPPORT\n"; } return $ret; } |