summaryrefslogtreecommitdiffstats
path: root/meta/recipes-kernel/update-modules/update-modules-1.0/update-modules
diff options
context:
space:
mode:
authorSteve Sakoman <steve@sakoman.com>2012-01-06 20:51:55 -0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-01-10 17:28:44 +0000
commitf164a95b43fdda1e774195622f31f0cd998138d3 (patch)
treed41569422ab018e9bc59b0726546b4c3b41eceb9 /meta/recipes-kernel/update-modules/update-modules-1.0/update-modules
parent118a0afe1ad766d80aee64792ca2cafbecbf4854 (diff)
downloadpoky-f164a95b43fdda1e774195622f31f0cd998138d3.tar.gz
update-modules: don't run modutils.sh if systemd is installed
systemd has its own mechanism for loading kernel modules at startup (From OE-Core rev: 553deffc8040afabd56b1c1d87a8a8d24bbae5d0) Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-kernel/update-modules/update-modules-1.0/update-modules')
-rwxr-xr-xmeta/recipes-kernel/update-modules/update-modules-1.0/update-modules3
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/recipes-kernel/update-modules/update-modules-1.0/update-modules b/meta/recipes-kernel/update-modules/update-modules-1.0/update-modules
index 636fe1c0d4..7ee7df8192 100755
--- a/meta/recipes-kernel/update-modules/update-modules-1.0/update-modules
+++ b/meta/recipes-kernel/update-modules/update-modules-1.0/update-modules
@@ -181,7 +181,8 @@ fi
181mv "$MODCONFTMPFILE" "$MODCONFFILE" 181mv "$MODCONFTMPFILE" "$MODCONFFILE"
182mv "$MODULESTMPFILE" "$MODULESFILE" 182mv "$MODULESTMPFILE" "$MODULESFILE"
183 183
184if [ $first_time -eq 1 ]; then 184# Don't run modutils.sh if systemd is installed
185if [ $first_time -eq 1 ] && [ ! -e /bin/systemctl ]; then
185 /etc/init.d/modutils.sh || true 186 /etc/init.d/modutils.sh || true
186fi 187fi
187 188