summaryrefslogtreecommitdiffstats
path: root/etc
diff options
context:
space:
mode:
authorjeff <jeff@FreeBSD.org>2011-03-21 09:58:24 +0000
committerjeff <jeff@FreeBSD.org>2011-03-21 09:58:24 +0000
commit5115240a6cdc054f7eea804355742f97c74578d8 (patch)
tree3051c12f4ce44a65c025b72ec5821b35b2ec46be /etc
parent2d7d8c05e7404fbebf1f0fe24c13bc5bb58d2338 (diff)
downloadFreeBSD-src-5115240a6cdc054f7eea804355742f97c74578d8.zip
FreeBSD-src-5115240a6cdc054f7eea804355742f97c74578d8.tar.gz
- Merge in OFED 1.5.3 from projects/ofed/head
Diffstat (limited to 'etc')
-rw-r--r--etc/defaults/rc.conf1
-rw-r--r--etc/mtree/BSD.include.dist12
-rw-r--r--etc/mtree/BSD.var.dist2
-rw-r--r--etc/rc.d/Makefile4
-rw-r--r--etc/rc.d/opensm28
5 files changed, 47 insertions, 0 deletions
diff --git a/etc/defaults/rc.conf b/etc/defaults/rc.conf
index 703cebc..42722b9 100644
--- a/etc/defaults/rc.conf
+++ b/etc/defaults/rc.conf
@@ -647,6 +647,7 @@ bsdextended_script="/etc/rc.bsdextended" # Default mac_bsdextended(4)
newsyslog_enable="YES" # Run newsyslog at startup.
newsyslog_flags="-CN" # Newsyslog flags to create marked files
mixer_enable="YES" # Run the sound mixer.
+opensm_enable="NO" # Opensm(8) for infiniband devices defaults to off
##############################################################
### Jail Configuration #######################################
diff --git a/etc/mtree/BSD.include.dist b/etc/mtree/BSD.include.dist
index 2d9fa26..b227bdb 100644
--- a/etc/mtree/BSD.include.dist
+++ b/etc/mtree/BSD.include.dist
@@ -207,6 +207,16 @@
..
gssapi
..
+ infiniband
+ complib
+ ..
+ iba
+ ..
+ opensm
+ ..
+ vendor
+ ..
+ ..
isofs
cd9660
..
@@ -275,6 +285,8 @@
..
protocols
..
+ rdma
+ ..
readline
..
rpc
diff --git a/etc/mtree/BSD.var.dist b/etc/mtree/BSD.var.dist
index 9ad314b..4481b10 100644
--- a/etc/mtree/BSD.var.dist
+++ b/etc/mtree/BSD.var.dist
@@ -22,6 +22,8 @@
/set gname=wheel
backups
..
+ cache
+ ..
crash
..
cron
diff --git a/etc/rc.d/Makefile b/etc/rc.d/Makefile
index 6f80b87..ed10b87 100644
--- a/etc/rc.d/Makefile
+++ b/etc/rc.d/Makefile
@@ -42,6 +42,10 @@ FILES= DAEMON FILESYSTEMS LOGIN NETWORKING SERVERS \
ypset ypupdated ypxfrd \
zfs zvol
+.if ${MK_OFED} != "no"
+FILES+= opensm
+.endif
+
.if ${MK_OPENSSH} != "no"
FILES+= sshd
.endif
diff --git a/etc/rc.d/opensm b/etc/rc.d/opensm
new file mode 100644
index 0000000..310476b
--- /dev/null
+++ b/etc/rc.d/opensm
@@ -0,0 +1,28 @@
+#!/bin/sh
+#
+# $FreeBSD$
+#
+
+# PROVIDE: opensm
+# BEFORE: netif
+# REQUIRE: FILESYSTEMS
+
+. /etc/rc.subr
+
+name="opensm"
+start_cmd="opensm_start"
+rcvar="opensm_enable"
+
+command=/usr/bin/opensm
+command_args="-B"
+
+opensm_start()
+{
+ for guid in `ibstat | grep "Port GUID" | cut -d ':' -f2`; do
+ [ -z "${rc_quiet}" ] && echo "Starting ${guid} opensm."
+ ${command} ${command_args} -g ${guid} >> /dev/null
+ done
+}
+
+load_rc_config $name
+run_rc_command $*
OpenPOWER on IntegriCloud