Compare commits

..

5 Commits

Author SHA1 Message Date
William Hubbs
fbfc14040a update ChangeLog 2016-08-31 11:26:56 -05:00
William Hubbs
1522eaf28b version 0.21.7 2016-08-31 10:38:22 -05:00
William Hubbs
eff1f12e5c update ChangeLog 2016-08-31 08:46:06 -05:00
Martin Väth
484e6089b9 Fix typo in RC_UNAME check of modules-load
The $RC_UNAME "Linux" had been misspelled as "linux".
As a consequence, entries in e.g. /etc/modules-load.d failed to
load any module succesfully under Linux(!)
2016-08-31 08:38:07 -05:00
William Hubbs
8b3efa6ae2 version 0.21.6 2016-08-30 21:12:39 -05:00
3 changed files with 36 additions and 2 deletions

View File

@@ -1,3 +1,37 @@
commit 1522eaf28b7a75a1a3a0e25bb6b9828172460451
Author: William Hubbs <w.d.hubbs@gmail.com>
Commit: William Hubbs <w.d.hubbs@gmail.com>
version 0.21.7
commit eff1f12e5c51ceaf6a3451b90488524024b6f728
Author: William Hubbs <w.d.hubbs@gmail.com>
Commit: William Hubbs <w.d.hubbs@gmail.com>
update ChangeLog
commit 484e6089b90ffef9f53bdc8968c240e1b3a3f221
Author: Martin Väth <martin@mvath.de>
Commit: William Hubbs <w.d.hubbs@gmail.com>
Fix typo in RC_UNAME check of modules-load
The $RC_UNAME "Linux" had been misspelled as "linux".
As a consequence, entries in e.g. /etc/modules-load.d failed to
load any module succesfully under Linux(!)
commit 8b3efa6ae25dd07350bff22a998575d9f38b15c9
Author: William Hubbs <w.d.hubbs@gmail.com>
Commit: William Hubbs <w.d.hubbs@gmail.com>
version 0.21.6
commit d1161c8aaec80ae7d0064f45d69b62694cd3d365
Author: William Hubbs <w.d.hubbs@gmail.com>
Commit: William Hubbs <w.d.hubbs@gmail.com>
update ChangeLog
commit 528bfa13f9bac4797e4238d05edcfbc996a6be72
Author: William Hubbs <w.d.hubbs@gmail.com>
Commit: William Hubbs <w.d.hubbs@gmail.com>

View File

@@ -1,3 +1,3 @@
NAME= openrc
VERSION= 0.21.5
VERSION= 0.21.7
PKG= ${NAME}-${VERSION}

View File

@@ -54,7 +54,7 @@ load_modules()
ebegin "Loading module $x"
case "$RC_UNAME" in
FreeBSD) kldload "$x"; rc=$? ;;
linux) modprobe -q "$x"; rc=$? ;;
Linux) modprobe -q "$x"; rc=$? ;;
*) ;;
esac
eend $rc "Failed to load $x"