summaryrefslogtreecommitdiffstats
path: root/tester/wscript
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2017-10-10 20:07:15 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2017-10-10 20:07:15 +0200
commit5df7c3cd510bdee41b62f9a494c4faab5706e2ac (patch)
treefda32e3918f9231192684dbe6ca296cbfa2f9173 /tester/wscript
parenttester: Add a tester off to turn the target off when finished. (diff)
downloadrtems-tools-5df7c3cd510bdee41b62f9a494c4faab5706e2ac.tar.bz2
Install missing files
Diffstat (limited to 'tester/wscript')
-rw-r--r--tester/wscript15
1 files changed, 14 insertions, 1 deletions
diff --git a/tester/wscript b/tester/wscript
index cb16093..59eadc2 100644
--- a/tester/wscript
+++ b/tester/wscript
@@ -60,7 +60,9 @@ def build(bld):
'rt/options.py',
'rt/report.py',
'rt/stty.py',
- 'rt/test.py'],
+ 'rt/telnet.py',
+ 'rt/test.py',
+ 'rt/tftp.py'],
install_from = '.',
install_path = '${PREFIX}/share/rtems/tester')
bld(features = 'py',
@@ -69,6 +71,17 @@ def build(bld):
'rt/pygdb/spark.py'],
install_from = '.',
install_path = '${PREFIX}/share/rtems/tester')
+ bld(features = 'py',
+ source = ['rt/tftpy/__init__.py',
+ 'rt/tftpy/TftpClient.py',
+ 'rt/tftpy/TftpContexts.py',
+ 'rt/tftpy/TftpPacketFactory.py',
+ 'rt/tftpy/TftpPacketTypes.py',
+ 'rt/tftpy/TftpServer.py',
+ 'rt/tftpy/TftpShared.py',
+ 'rt/tftpy/TftpStates.py'],
+ install_from = '.',
+ install_path = '${PREFIX}/share/rtems/tester')
bld.install_files('${PREFIX}/bin',
['rtems-test',
'rtems-bsp-builder'],