summaryrefslogtreecommitdiff
path: root/misc/wscript
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2019-08-19 14:29:03 +1000
committerChris Johns <chrisj@rtems.org>2019-08-19 16:44:11 +1000
commitdeb54b61457c831cac8881fb63fd8dbb747bc3ea (patch)
tree5da5224f3f7ab91b2117c652bfea2a0d41e262e5 /misc/wscript
parent30a5cd65cc542bbc925f50903be09b45cdabb37a (diff)
misc/tftpproxy: Add a proxy TFTP server.
- Uses a config INI file to map clients to servers - Handle a number of requests to a single server's TFTP port (69) and multiplex to a non-su ports or different servers. - Supports running rtems-test to more than one hardware device using TFTP at once.
Diffstat (limited to '')
-rw-r--r--misc/wscript9
1 files changed, 7 insertions, 2 deletions
diff --git a/misc/wscript b/misc/wscript
index f83c74b..7d90968 100644
--- a/misc/wscript
+++ b/misc/wscript
@@ -75,11 +75,16 @@ def build(bld):
#
bld(features = 'py',
source = ['tools/boot.py',
- 'tools/cmd-boot-image.py'],
+ 'tools/cmd-boot-image.py',
+ 'tools/cmd-tftpproxy.py',
+ 'tools/tftpproxy.py',
+ 'tools/getmac/__init__.py',
+ 'tools/getmac/getmac.py'],
install_from = '.',
install_path = '${PREFIX}/share/rtems/misc')
bld.install_files('${PREFIX}/bin',
- ['rtems-boot-image'],
+ ['rtems-boot-image',
+ 'rtems-tftp-proxy'],
chmod = 0o755)
bld.install_files('${PREFIX}/share/rtems/tools/config',
'tools/config/rtems-boot.ini')