From 8d220139073e3bced054179b09f7a6ef460e00bb Mon Sep 17 00:00:00 2001 From: imp Date: Mon, 12 Feb 2018 04:52:25 +0000 Subject: [PATCH] Install devmatch int /etc/rc.d and echo modules being installed. --- etc/rc.d/Makefile | 1 + etc/rc.d/devmatch | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/etc/rc.d/Makefile b/etc/rc.d/Makefile index 5e4d5b5c72fa..a5bd73b55355 100644 --- a/etc/rc.d/Makefile +++ b/etc/rc.d/Makefile @@ -29,6 +29,7 @@ FILES= DAEMON \ defaultroute \ devd \ devfs \ + devmatch \ dhclient \ dmesg \ dumpon \ diff --git a/etc/rc.d/devmatch b/etc/rc.d/devmatch index 4c89bb107f99..f94ce342595f 100755 --- a/etc/rc.d/devmatch +++ b/etc/rc.d/devmatch @@ -33,7 +33,7 @@ . /etc/rc.subr name="devmatch" -desc="Use devmatch(8) to load kernel modules +desc="Use devmatch(8) to load kernel modules" start_cmd="${name}_start" stop_cmd=':' @@ -46,7 +46,7 @@ devmatch_start() [ -n "$x" ] || return - echo "Autoloading modules" + echo "Autoloading modules: ${x}" kldload ${x} }