From 53a09fa9d57bad1b074d0f72a302ffc4517d4b0f Mon Sep 17 00:00:00 2001 From: Juan RP Date: Thu, 7 Aug 2014 17:22:57 +0200 Subject: Added "core" services that are run from scripts on stage 1. - /etc/runit/functions: contains common functions to be used in core-services. - /etc/runit/core-services: directory containing one-time tasks run in stage 1. - Added LXC container detection to disable some core services. This accidentally also fixes the issue of unicode not working in the active TTY from stage 1. --- core-services/07-kmods.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100755 core-services/07-kmods.sh (limited to 'core-services/07-kmods.sh') diff --git a/core-services/07-kmods.sh b/core-services/07-kmods.sh new file mode 100755 index 0000000..07a5310 --- /dev/null +++ b/core-services/07-kmods.sh @@ -0,0 +1,11 @@ +#!/bin/sh +# vim: set ts=4 sw=4 et: + +. /etc/runit/functions +[ -r /etc/rc.conf ] && . /etc/rc.conf + +[ -n "$VIRTUALIZATION" ] && return 0 + +msg "Loading kernel modules...\n" +modules-load -v ${MODULES} | tr '\n' ' ' | sed 's:insmod [^ ]*/::g; s:\.ko\(\.gz\)\? ::g' +echo -- cgit 1.4.1