VirtIO9P.py (10391:4a501e0f7540) VirtIO9P.py (12076:d6fa15da87cd)
1# -*- mode:python -*-
2
1# -*- mode:python -*-
2
3# Copyright (c) 2014 ARM Limited
3# Copyright (c) 2014,2017 ARM Limited
4# All rights reserved.
5#
6# The license below extends only to copyright in the software and shall
7# not be construed as granting a license to any other intellectual
8# property including but not limited to intellectual property relating
9# to a hardware implementation of the functionality of the software
10# licensed hereunder. You may use the software subject to the license
11# terms below provided that you ensure that this notice is replicated

--- 44 unchanged lines hidden (view full) ---

56 cxx_header = 'dev/virtio/fs9p.hh'
57
58class VirtIO9PDiod(VirtIO9PProxy):
59 type = 'VirtIO9PDiod'
60 cxx_header = 'dev/virtio/fs9p.hh'
61
62 diod = Param.String("/usr/sbin/diod", "Path to diod")
63 root = Param.String("/tmp", "Path to export through diod")
4# All rights reserved.
5#
6# The license below extends only to copyright in the software and shall
7# not be construed as granting a license to any other intellectual
8# property including but not limited to intellectual property relating
9# to a hardware implementation of the functionality of the software
10# licensed hereunder. You may use the software subject to the license
11# terms below provided that you ensure that this notice is replicated

--- 44 unchanged lines hidden (view full) ---

56 cxx_header = 'dev/virtio/fs9p.hh'
57
58class VirtIO9PDiod(VirtIO9PProxy):
59 type = 'VirtIO9PDiod'
60 cxx_header = 'dev/virtio/fs9p.hh'
61
62 diod = Param.String("/usr/sbin/diod", "Path to diod")
63 root = Param.String("/tmp", "Path to export through diod")
64 socketPath = Param.String("Unused socket to diod")
64
65class VirtIO9PSocket(VirtIO9PProxy):
66 type = 'VirtIO9PSocket'
67 cxx_header = 'dev/virtio/fs9p.hh'
68
69 server = Param.String("127.0.0.1", "9P server address or host name")
70 port = Param.String("564", "9P server port")
65
66class VirtIO9PSocket(VirtIO9PProxy):
67 type = 'VirtIO9PSocket'
68 cxx_header = 'dev/virtio/fs9p.hh'
69
70 server = Param.String("127.0.0.1", "9P server address or host name")
71 port = Param.String("564", "9P server port")