summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorian <ian@FreeBSD.org>2016-03-16 16:21:30 +0000
committerian <ian@FreeBSD.org>2016-03-16 16:21:30 +0000
commitb7b28dc6d80f46c504ca926799c38c8b684090a3 (patch)
tree4040d1d0711051b576af51cae7c5d04ba5803da7
parentff676aafaa6ef4d55f8c026b44980786b87f8f22 (diff)
downloadFreeBSD-src-b7b28dc6d80f46c504ca926799c38c8b684090a3.zip
FreeBSD-src-b7b28dc6d80f46c504ca926799c38c8b684090a3.tar.gz
MFC r296807:
Require firewall setup before running rc.d/netwait, otherwise the ping packets sent by netwait may not get through. PR: 207916
-rw-r--r--contrib/llvm/tools/clang/lib/Driver/Tools.cpp2
-rwxr-xr-xetc/rc.d/netwait2
2 files changed, 2 insertions, 2 deletions
diff --git a/contrib/llvm/tools/clang/lib/Driver/Tools.cpp b/contrib/llvm/tools/clang/lib/Driver/Tools.cpp
index 86d046b..83d3447 100644
--- a/contrib/llvm/tools/clang/lib/Driver/Tools.cpp
+++ b/contrib/llvm/tools/clang/lib/Driver/Tools.cpp
@@ -5777,7 +5777,7 @@ void freebsd::Assemble::ConstructJob(Compilation &C, const JobAction &JA,
}
} else if (getToolChain().getArch() == llvm::Triple::arm ||
getToolChain().getArch() == llvm::Triple::thumb) {
- CmdArgs.push_back("-mfpu=softvfp");
+ CmdArgs.push_back("-mfpu=vfpv3");
switch(getToolChain().getTriple().getEnvironment()) {
case llvm::Triple::GNUEABI:
case llvm::Triple::EABI:
diff --git a/etc/rc.d/netwait b/etc/rc.d/netwait
index 6ccca04..e9c23ca 100755
--- a/etc/rc.d/netwait
+++ b/etc/rc.d/netwait
@@ -3,7 +3,7 @@
# $FreeBSD$
#
# PROVIDE: netwait
-# REQUIRE: devd routing
+# REQUIRE: devd ipfilter ipfw pf routing
# KEYWORD: nojail
#
# The netwait script helps handle two situations:
OpenPOWER on IntegriCloud