-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathsetup.py
189 lines (153 loc) · 6.24 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
# Copyright (c) 2017, Xilinx, Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# 1. Redistributions of source code must retain the above copyright notice,
# this list of conditions and the following disclaimer.
#
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
#
# 3. Neither the name of the copyright holder nor the names of its
# contributors may be used to endorse or promote products derived from
# this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
# THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
# OR BUSINESS INTERRUPTION). HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
from setuptools import setup, find_packages
from distutils.dir_util import copy_tree, remove_tree
from distutils.file_util import copy_file
import subprocess
import sys
import os
import glob
from datetime import datetime
__author__ = "Yun Rock Qu"
__copyright__ = "Copyright 2017, Xilinx"
__email__ = "yunq@xilinx.com"
GIT_DIR = os.path.dirname(os.path.realpath(__file__))
# Board specific package delivery setup
def exclude_from_files(exclude, path):
return [file for file in os.listdir(path)
if os.path.isfile(os.path.join(path, file))
and file != exclude]
def find_overlays(path):
return [f for f in os.listdir(path)
if os.path.isdir(os.path.join(path, f))
and len(glob.glob(os.path.join(path, f, "*.bit"))) > 0]
def collect_pynq_overlays():
overlay_files = []
overlay_dirs = find_overlays(board_folder)
for ol in overlay_dirs:
copy_tree(os.path.join(board_folder, ol),
os.path.join("pynq_networking/overlays", ol))
newdir = os.path.join("pynq_networking/overlays", ol)
files = exclude_from_files('makefile', newdir)
overlay_files.extend(
[os.path.join("..", newdir, f) for f in files])
return overlay_files
pynq_package_files = []
if 'BOARD' not in os.environ:
print("Please set the BOARD environment variable "
"to get any BOARD specific overlays (e.g. Pynq-Z1).")
board = None
board_folder = None
else:
board = os.environ['BOARD']
board_folder = 'boards/{}'.format(board)
pynq_package_files.extend(collect_pynq_overlays())
default_nb_dir = '/home/xilinx/jupyter_notebooks'
if 'PYNQ_JUPYTER_NOTEBOOKS' in os.environ:
notebooks_dir = os.environ['PYNQ_JUPYTER_NOTEBOOKS']
elif os.path.exists(default_nb_dir):
notebooks_dir = default_nb_dir
else:
notebooks_dir = None
# Update interfaces
def update_interfaces():
eth0_file = '/etc/network/interfaces.d/eth0'
backup_file = '/etc/network/interfaces.d/.{}'.format(
datetime.now().strftime("%Y_%m_%d_%H_%M_%S"))
copy_file(eth0_file, backup_file)
copy_file(GIT_DIR + '/interfaces.d/eth0', eth0_file)
print("Update interface files done ...")
# Build submodules
def build_submodules():
subprocess.check_call(['git', 'submodule', 'init'])
subprocess.check_call(['git', 'submodule', 'update'])
copy_tree(GIT_DIR + '/mqtt-sn-tools',
GIT_DIR + '/pynq_networking/mqtt-sn-tools')
copy_tree(GIT_DIR + '/rsmb',
GIT_DIR + '/pynq_networking/rsmb')
print("Update submodules done ...")
# Notebook delivery
def copy_overlay_notebooks():
if notebooks_dir is None or board_folder is None:
return None
if os.path.isdir(board_folder):
overlay_notebook_folders = [
(os.path.join(notebooks_dir, overlay),
os.path.join(board_folder, overlay, 'notebooks/'))
for overlay in list(os.listdir(board_folder))
if os.path.isdir(os.path.join(board_folder, overlay, 'notebooks'))]
for dst_folder, src_folder in overlay_notebook_folders:
if os.path.exists(dst_folder):
remove_tree(dst_folder)
copy_tree(src_folder, dst_folder)
print("Filling notebooks done ...")
# Run makefiles
def run_make(src_path, output_lib):
status = subprocess.check_call(["make", "-C", GIT_DIR + '/' + src_path])
if status is not 0:
print("Error while running make for", output_lib, "Exiting..")
sys.exit(1)
print("Running make for " + output_lib + " done ...")
# Bring br0 up online
def if_up_br0():
subprocess.check_call(['ifup', 'br0'])
subprocess.check_call(['service', 'networking', 'restart'])
print("Bringing up br0 done ...")
update_interfaces()
build_submodules()
copy_overlay_notebooks()
run_make("pynq_networking/rsmb/rsmb/src/", "broker_mqtts")
if_up_br0()
def package_files(directory):
paths = []
for (path, directories, file_names) in os.walk(directory):
for file_name in file_names:
paths.append(os.path.join('..', path, file_name))
return paths
pynq_package_files.extend(package_files('pynq_networking'))
setup(name='pynq_networking',
version='2.4',
description='PYNQ networking package',
author='Xilinx networking group',
author_email='stephenn@xilinx.com',
url='https://github.com/Xilinx/PYNQ-Networking',
packages=find_packages(),
download_url='https://github.com/Xilinx/PYNQ-Networking',
package_data={
'': pynq_package_files,
},
install_requires=[
'kamene',
'wurlitzer',
'pytest-runner',
'paho-mqtt',
'netifaces',
'pynq>=2.4'
]
)