diff options
author | Christian Neukirchen <chneukirchen@gmail.com> | 2014-07-29 17:26:05 +0200 |
---|---|---|
committer | Christian Neukirchen <chneukirchen@gmail.com> | 2014-07-29 17:26:05 +0200 |
commit | 013d8e704d0e5c02ff6b4db94ee1c9d2e051a3ab (patch) | |
tree | 7455329b8661d373fd8028fb499c7bc77a07bc6f /1 | |
parent | 50f15847aab985ea4a8a57ca8a5350746e2d2410 (diff) | |
download | runit-void-013d8e704d0e5c02ff6b4db94ee1c9d2e051a3ab.tar.gz runit-void-013d8e704d0e5c02ff6b4db94ee1c9d2e051a3ab.tar.xz runit-void-013d8e704d0e5c02ff6b4db94ee1c9d2e051a3ab.zip |
1: short output for modules-load
Diffstat (limited to '1')
-rwxr-xr-x | 1 | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/1 b/1 index 30b7980..dda6746 100755 --- a/1 +++ b/1 @@ -138,8 +138,9 @@ cp /var/lib/random-seed /dev/urandom >/dev/null 2>&1 || true install -m0664 -o root -g utmp /dev/null /run/utmp rm -f /etc/nologin /forcefsck /forcequotacheck /fastboot -msg "Loading kernel modules: ${MODULES} ...\n" -modules-load ${MODULES} +msg "Loading kernel modules...\n" +modules-load -v ${MODULES} | tr '\n' ' ' | sed 's:insmod [^ ]*/::g; s:\.ko\(\.gz\)\? ::g' +echo dmesg >/var/log/dmesg.log |