nfsclient: Port to LibBSD

This commit is contained in:
Sebastian Huber
2016-06-10 14:11:40 +02:00
parent 4464594567
commit 58c4e1c592
5 changed files with 177 additions and 78 deletions

View File

@@ -1018,6 +1018,10 @@ def build(bld):
'rtemsbsd/local/usb_if.c',
'rtemsbsd/mdns/mdns-hostname-default.c',
'rtemsbsd/mdns/mdns.c',
'rtemsbsd/nfsclient/mount_prot_xdr.c',
'rtemsbsd/nfsclient/nfs.c',
'rtemsbsd/nfsclient/nfs_prot_xdr.c',
'rtemsbsd/nfsclient/rpcio.c',
'rtemsbsd/pppd/auth.c',
'rtemsbsd/pppd/ccp.c',
'rtemsbsd/pppd/chap.c',
@@ -1337,6 +1341,16 @@ def build(bld):
lib = ["m", "z"],
install_path = None)
test_nfs01 = ['testsuite/nfs01/test_main.c']
bld.program(target = "nfs01.exe",
features = "cprogram",
cflags = cflags,
includes = includes,
source = test_nfs01,
use = ["bsd"],
lib = ["m", "z"],
install_path = None)
test_ping01 = ['testsuite/ping01/test_main.c']
bld.program(target = "ping01.exe",
features = "cprogram",