summaryrefslogtreecommitdiff
path: root/netsources.py
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2023-04-18 16:08:04 +1000
committerChris Johns <chrisj@rtems.org>2023-04-20 15:27:18 +1000
commit6b9c8b4e8d9d1fa603c54b146e8a6f51fe5ff79f (patch)
tree27ddb73ab5d5b13b7c6a27d1cf64a748da42769b /netsources.py
parentd22fbcb0412e309850c0f49ab61bc410184b9b5c (diff)
bsd: Add getaddrinfom, gai_strerror, ipv6_addr, if_nametoindex and BSD programs
- These additions let the net services repo build with the legacy stack
Diffstat (limited to 'netsources.py')
-rw-r--r--netsources.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/netsources.py b/netsources.py
index 9f1b7ff..54dbbf1 100644
--- a/netsources.py
+++ b/netsources.py
@@ -30,8 +30,9 @@ class source:
network = [
# rtems
'rtems/mkrootfs.c',
- 'rtems/rtems_bootp.c',
'rtems/rtems-bsd-iface.c',
+ 'rtems/rtems-kernel-program.c',
+ 'rtems/rtems_bootp.c',
'rtems/rtems_bsdnet_malloc_starvation.c',
'rtems/rtems_dhcp.c',
'rtems/rtems_dhcp_failsafe.c',
@@ -74,6 +75,7 @@ class source:
'net/if.c',
'net/if_ethersubr.c',
'net/if_loop.c',
+ 'net/if_nametoindex.c',
'net/if_ppp.c',
'net/ppp_tty.c',
'net/radix.c',
@@ -166,6 +168,8 @@ class source:
'lib/syslog.c',
# libc
'libc/base64.c',
+ 'libc/gai_strerror.c',
+ 'libc/getaddrinfo.c',
'libc/gethostbydns.c',
'libc/gethostbyht.c',
'libc/gethostbynis.c',
@@ -214,6 +218,7 @@ class source:
'libc/res_stubs.c',
'libc/res_update.c',
'libc/send.c',
+ 'libc/vars.c',
# libtest
'libtest/testbeginend.c',
'libtest/testbusy.c',