mirror of
https://git.yoctoproject.org/poky
synced 2026-09-19 00:49:33 +02:00
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>
This commit is contained in:
committed by
Richard Purdie
parent
118a0afe1a
commit
f164a95b43
@@ -181,7 +181,8 @@ fi
|
||||
mv "$MODCONFTMPFILE" "$MODCONFFILE"
|
||||
mv "$MODULESTMPFILE" "$MODULESFILE"
|
||||
|
||||
if [ $first_time -eq 1 ]; then
|
||||
# Don't run modutils.sh if systemd is installed
|
||||
if [ $first_time -eq 1 ] && [ ! -e /bin/systemctl ]; then
|
||||
/etc/init.d/modutils.sh || true
|
||||
fi
|
||||
|
||||
|
||||
Reference in New Issue
Block a user