diff options
author | Koen Kooi <koen@dominion.thruhere.net> | 2011-05-28 15:14:54 +0200 |
---|---|---|
committer | Koen Kooi <koen@dominion.thruhere.net> | 2011-05-28 16:42:55 +0200 |
commit | f1b62bb0a907068af55b38919b71116f3423bcdf (patch) | |
tree | 0d0aee79875114a9405ec5d751dfeda39a2bbbcb /meta-oe/recipes-core | |
parent | 73ee0542d93ed095233f909184b79e0c7184a38a (diff) | |
download | meta-openembedded-f1b62bb0a907068af55b38919b71116f3423bcdf.tar.gz |
systemd: expand RRECOMMENDS with kernel modules recommended by INSTALL
This makes on-demand mounting work for systems that have autofs4 as a module
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
Diffstat (limited to 'meta-oe/recipes-core')
-rw-r--r-- | meta-oe/recipes-core/systemd/systemd_git.bb | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/meta-oe/recipes-core/systemd/systemd_git.bb b/meta-oe/recipes-core/systemd/systemd_git.bb index d1f4cbed9..ba57a0239 100644 --- a/meta-oe/recipes-core/systemd/systemd_git.bb +++ b/meta-oe/recipes-core/systemd/systemd_git.bb | |||
@@ -15,7 +15,7 @@ inherit gitpkgv | |||
15 | PKGV = "v${GITPKGVTAG}" | 15 | PKGV = "v${GITPKGVTAG}" |
16 | 16 | ||
17 | PV = "git" | 17 | PV = "git" |
18 | PR = "r2" | 18 | PR = "r3" |
19 | 19 | ||
20 | inherit autotools vala update-alternatives | 20 | inherit autotools vala update-alternatives |
21 | 21 | ||
@@ -90,7 +90,12 @@ RDEPENDS_${PN} += "dbus-systemd udev-systemd" | |||
90 | # kbd -> loadkeys,setfont | 90 | # kbd -> loadkeys,setfont |
91 | # systemd calls 'modprobe -sab --', which busybox doesn't support due to lack | 91 | # systemd calls 'modprobe -sab --', which busybox doesn't support due to lack |
92 | # of blacklist support, so use proper modprobe from module-init-tools | 92 | # of blacklist support, so use proper modprobe from module-init-tools |
93 | RRECOMMENDS_${PN} += "kbd kbd-consolefonts ${PN}-serialgetty module-init-tools" | 93 | # And pull in the kernel modules mentioned in INSTALL |
94 | RRECOMMENDS_${PN} += "kbd kbd-consolefonts \ | ||
95 | ${PN}-serialgetty \ | ||
96 | module-init-tools \ | ||
97 | kernel-module-autofs4 kernel-module-unix kernel-module-ipv6 \ | ||
98 | " | ||
94 | 99 | ||
95 | # TODO: | 100 | # TODO: |
96 | # u-a for runlevel and telinit | 101 | # u-a for runlevel and telinit |