diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-06-02 16:12:32 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-06-02 16:52:43 +0100 |
commit | 5d9ea7dea48e640b7345b7d664b284f731a4d6f9 (patch) | |
tree | a91682d98a0108160a6dfcb8c9b345e09d4f416d | |
parent | 4547e5ae122287d7a45e6fb6649424a2a04ba683 (diff) | |
download | poky-5d9ea7dea48e640b7345b7d664b284f731a4d6f9.tar.gz |
sysvinit: Mark as machine specific since there are machine specific components to this recipe
The inittab file depends on variables that are part of the machine config
such as the SERIAL_CONSOLE so the whole recipe must get built as machine
specific. Better might be to split the config out into a separate recipes
from the binaries but this fixes the immediate problem.
[YOCTO ##1131]
(From OE-Core rev: 5bcd6b2c3e935858ac80b17266b9e427060c1650)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-core/sysvinit/sysvinit_2.88dsf.bb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/recipes-core/sysvinit/sysvinit_2.88dsf.bb b/meta/recipes-core/sysvinit/sysvinit_2.88dsf.bb index 2cb650eab6..e683cc7ce3 100644 --- a/meta/recipes-core/sysvinit/sysvinit_2.88dsf.bb +++ b/meta/recipes-core/sysvinit/sysvinit_2.88dsf.bb | |||
@@ -7,6 +7,9 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe \ | |||
7 | file://COPYRIGHT;endline=15;md5=349c872e0066155e1818b786938876a4" | 7 | file://COPYRIGHT;endline=15;md5=349c872e0066155e1818b786938876a4" |
8 | PR = "r3" | 8 | PR = "r3" |
9 | 9 | ||
10 | # Need to set this since it has machine specific components | ||
11 | PACKAGE_ARCH = "${MACHINE_ARCH}" | ||
12 | |||
10 | # USE_VT and SERIAL_CONSOLE are generally defined by the MACHINE .conf. | 13 | # USE_VT and SERIAL_CONSOLE are generally defined by the MACHINE .conf. |
11 | # Set PACKAGE_ARCH appropriately. | 14 | # Set PACKAGE_ARCH appropriately. |
12 | PACKAGE_ARCH_${PN}-inittab = "${MACHINE_ARCH}" | 15 | PACKAGE_ARCH_${PN}-inittab = "${MACHINE_ARCH}" |