diff options
-rw-r--r-- | meta-oe/recipes-core/systemd/systemd-serialgetty.bb | 4 | ||||
-rw-r--r-- | meta-oe/recipes-core/systemd/systemd_git.bb | 10 |
2 files changed, 10 insertions, 4 deletions
diff --git a/meta-oe/recipes-core/systemd/systemd-serialgetty.bb b/meta-oe/recipes-core/systemd/systemd-serialgetty.bb index acc6768370..d7e8571628 100644 --- a/meta-oe/recipes-core/systemd/systemd-serialgetty.bb +++ b/meta-oe/recipes-core/systemd/systemd-serialgetty.bb | |||
@@ -32,12 +32,12 @@ do_install() { | |||
32 | fi | 32 | fi |
33 | } | 33 | } |
34 | 34 | ||
35 | PACKAGES = "{$PN} ${PN}-dbg ${PN}-dev ${PN}-doc" | 35 | PACKAGES = "${PN} ${PN}-dbg ${PN}-dev ${PN}-doc" |
36 | 36 | ||
37 | RRECOMMENDS_${PN} = "" | 37 | RRECOMMENDS_${PN} = "" |
38 | RDEPENDS_${PN} = "systemd" | 38 | RDEPENDS_${PN} = "systemd" |
39 | 39 | ||
40 | # This is a machine specific file | 40 | # This is a machine specific file |
41 | FILES_${PN} = "${base_libdir}/systemd/system/serial-getty@.service ${sysconfdir}/systemd/system/getty.target.wants/getty@${@get_console(bb, d)}.service" | 41 | FILES_${PN} = "${base_libdir}/systemd/system/serial-getty@.service ${sysconfdir}" |
42 | PACKAGE_ARCH = "${MACHINE_ARCH}" | 42 | PACKAGE_ARCH = "${MACHINE_ARCH}" |
43 | 43 | ||
diff --git a/meta-oe/recipes-core/systemd/systemd_git.bb b/meta-oe/recipes-core/systemd/systemd_git.bb index 465a7f6dcc..2a313e0f22 100644 --- a/meta-oe/recipes-core/systemd/systemd_git.bb +++ b/meta-oe/recipes-core/systemd/systemd_git.bb | |||
@@ -15,11 +15,11 @@ 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 | 20 | inherit autotools vala |
21 | 21 | ||
22 | SRCREV = "ae556c210942cb6986c6d77b58505b5daa66bbe2" | 22 | SRCREV = "8585357a0e5e9f4d56e999d7cd1a73e77ae0eb80" |
23 | 23 | ||
24 | SRC_URI = "git://anongit.freedesktop.org/systemd;protocol=git \ | 24 | SRC_URI = "git://anongit.freedesktop.org/systemd;protocol=git \ |
25 | file://0001-systemd-disable-xml-file-stuff-and-introspection.patch \ | 25 | file://0001-systemd-disable-xml-file-stuff-and-introspection.patch \ |
@@ -37,6 +37,12 @@ EXTRA_OECONF = " --with-distro=${SYSTEMDDISTRO} \ | |||
37 | --disable-gtk \ | 37 | --disable-gtk \ |
38 | " | 38 | " |
39 | 39 | ||
40 | do_install() { | ||
41 | autotools_do_install | ||
42 | # provided by a seperate recipe | ||
43 | rm ${D}${base_libdir}/systemd/system/serial-getty* -f | ||
44 | } | ||
45 | |||
40 | # ARM doesn't support hugepages, so don't try to mount them | 46 | # ARM doesn't support hugepages, so don't try to mount them |
41 | do_install_append_arm() { | 47 | do_install_append_arm() { |
42 | rm -f ${D}${base_libdir}/systemd/system/*hugepages.mount | 48 | rm -f ${D}${base_libdir}/systemd/system/*hugepages.mount |