Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add net/tun to rump kernel src-netbsd #85

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .srcgitrev
Original file line number Diff line number Diff line change
@@ -1 +1 @@
82f3a6905f6a3a65ceb3a21046de62437f61e7dd
2cc68366d2137bb3873f4926f227dca3cf832ffe
6 changes: 3 additions & 3 deletions checkout.sh
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
# that once buildrump.sh is published, the NetBSD sources will be
# available via git.
#
NBSRC_CVSDATE="20160728 1100UTC"
NBSRC_CVSDATE="201601005 0100UTC"
NBSRC_CVSFLAGS="-z3"

# If set, timestamp for src/sys/rump/listsrcdir. If unset,
Expand All @@ -62,8 +62,8 @@ NBSRC_EXTRA_posix=''

NBSRC_EXTRA_usr=''

GITREPO='https://github.com/rumpkernel/src-netbsd'
GITREPOPUSH='git@github.com:rumpkernel/src-netbsd'
GITREPO='https://github.com/huikang/src-netbsd'
GITREPOPUSH='https://github.com/huikang/src-netbsd'
GITREVFILE='.srcgitrev'

checkoutcvs ()
Expand Down
2 changes: 1 addition & 1 deletion tests/dynamic/Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PROG= dynamic

RUMPLIBS= -lrump -lrumpuser
RUMPLIBS= -lrump -lrumpuser -lrumpdev -lrumpvfs

.include <bsd.prog.mk>
2 changes: 1 addition & 1 deletion tests/nettest_routed/Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PROG= nettest_routed

RUMPLIBS= -lrumpnet_shmif -lrumpnet_config -lrumpnet_netinet -lrumpnet_net
RUMPLIBS+=-lrumpnet ${RUMPKERN_SYSPROXY} -lrump -lrumpuser
RUMPLIBS+=-lrumpnet ${RUMPKERN_SYSPROXY} -lrump -lrumpuser -lrumpdev -lrumpvfs

CLEANFILES+= busmem1 busmem2

Expand Down
2 changes: 1 addition & 1 deletion tests/nettest_routed6/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ PROG= nettest_routed6
SRCS= nettest_routed.c

RUMPLIBS= -lrumpnet_shmif -lrumpnet_config -lrumpnet_netinet6 -lrumpnet_net
RUMPLIBS+=-lrumpnet ${RUMPKERN_SYSPROXY} -lrump -lrumpuser
RUMPLIBS+=-lrumpnet ${RUMPKERN_SYSPROXY} -lrump -lrumpuser -lrumpdev -lrumpvfs

CLEANFILES+= busmem1 busmem2

Expand Down
2 changes: 1 addition & 1 deletion tests/nettest_simple/Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PROG= nettest_simple

RUMPLIBS= -lrumpnet_shmif -lrumpnet_config -lrumpnet_netinet -lrumpnet_net
RUMPLIBS+=-lrumpnet ${RUMPKERN_SYSPROXY} -lrump -lrumpuser
RUMPLIBS+=-lrumpnet ${RUMPKERN_SYSPROXY} -lrump -lrumpuser -lrumpdev -lrumpvfs

CLEANFILES+= busmem

Expand Down
2 changes: 1 addition & 1 deletion tests/nettest_simple6/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ PROG= nettest_simple6
SRCS= nettest_simple.c

RUMPLIBS= -lrumpnet_shmif -lrumpnet_config -lrumpnet_netinet6 -lrumpnet_net
RUMPLIBS+=-lrumpnet ${RUMPKERN_SYSPROXY} -lrump -lrumpuser
RUMPLIBS+=-lrumpnet ${RUMPKERN_SYSPROXY} -lrump -lrumpuser -lrumpdev -lrumpvfs

CLEANFILES+= busmem

Expand Down