do_sys_sync() is part of vfs, hence rumpvfs. Used by pmf(9) during
device suspend, so explicitly link against rumpvfs to resolve that symbol when linking rumpdev. Unbreaks "rumptest" target.
This commit is contained in:
parent
062de7c5a1
commit
ae1d24749f
6
build.sh
6
build.sh
|
@ -1,5 +1,5 @@
|
||||||
#! /usr/bin/env sh
|
#! /usr/bin/env sh
|
||||||
# $NetBSD: build.sh,v 1.251 2011/10/17 16:22:12 mbalmer Exp $
|
# $NetBSD: build.sh,v 1.252 2011/12/05 23:04:39 jym Exp $
|
||||||
#
|
#
|
||||||
# Copyright (c) 2001-2011 The NetBSD Foundation, Inc.
|
# Copyright (c) 2001-2011 The NetBSD Foundation, Inc.
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
|
@ -1632,7 +1632,7 @@ createmakewrapper()
|
||||||
eval cat <<EOF ${makewrapout}
|
eval cat <<EOF ${makewrapout}
|
||||||
#! ${HOST_SH}
|
#! ${HOST_SH}
|
||||||
# Set proper variables to allow easy "make" building of a NetBSD subtree.
|
# Set proper variables to allow easy "make" building of a NetBSD subtree.
|
||||||
# Generated from: \$NetBSD: build.sh,v 1.251 2011/10/17 16:22:12 mbalmer Exp $
|
# Generated from: \$NetBSD: build.sh,v 1.252 2011/12/05 23:04:39 jym Exp $
|
||||||
# with these arguments: ${_args}
|
# with these arguments: ${_args}
|
||||||
#
|
#
|
||||||
|
|
||||||
|
@ -1830,7 +1830,7 @@ installworld()
|
||||||
RUMP_LIBSETS='
|
RUMP_LIBSETS='
|
||||||
-lrump,
|
-lrump,
|
||||||
-lrumpvfs -lrump,
|
-lrumpvfs -lrump,
|
||||||
-lrumpdev -lrump,
|
-lrumpvfs -lrumpdev -lrump,
|
||||||
-lrumpnet -lrump,
|
-lrumpnet -lrump,
|
||||||
-lrumpkern_tty -lrumpvfs -lrump,
|
-lrumpkern_tty -lrumpvfs -lrump,
|
||||||
-lrumpfs_tmpfs -lrumpvfs -lrump,
|
-lrumpfs_tmpfs -lrumpvfs -lrump,
|
||||||
|
|
Loading…
Reference in New Issue