diff options
author | Mihai Lindner <mihaix.lindner@linux.intel.com> | 2012-08-24 21:06:12 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-08-25 14:47:00 +0100 |
commit | a807818544df4b13ed13d6778b27ccb23d0fd764 (patch) | |
tree | 13a781cd7a333b178758478a10e9446d46e98af3 /meta/classes/grub-efi.bbclass | |
parent | 1736b1d4cd17626e41b87a110d6e47009d879886 (diff) | |
download | poky-a807818544df4b13ed13d6778b27ccb23d0fd764.tar.gz |
grub-efi: fix Nothing PROVIDES 'grub-efi-x86_64-native'
"ERROR: Nothing PROVIDES 'grub-efi-x86_64-native'" is returned when
trying to build meta-intel/meta-cedartrail with DEFAULTTUNE = "core2-64"
Used TRANSLATED_TARGET_ARCH instead of TARGET_ARCH in grub-efi.bbclass
[YOCTO #3013]
(From OE-Core rev: 20e2aaacb36113604c4ea7c40dd0bbbf224b8360)
Signed-off-by: Mihai Lindner <mihaix.lindner@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/grub-efi.bbclass')
-rw-r--r-- | meta/classes/grub-efi.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/grub-efi.bbclass b/meta/classes/grub-efi.bbclass index a093628455..c6f5d4e246 100644 --- a/meta/classes/grub-efi.bbclass +++ b/meta/classes/grub-efi.bbclass | |||
@@ -14,7 +14,7 @@ | |||
14 | # ${GRUB_OPTS} - additional options to add to the config, ';' delimited # (optional) | 14 | # ${GRUB_OPTS} - additional options to add to the config, ';' delimited # (optional) |
15 | # ${GRUB_TIMEOUT} - timeout before executing the deault label (optional) | 15 | # ${GRUB_TIMEOUT} - timeout before executing the deault label (optional) |
16 | 16 | ||
17 | do_bootimg[depends] += "grub-efi-${TARGET_ARCH}-native:do_deploy" | 17 | do_bootimg[depends] += "grub-efi-${TRANSLATED_TARGET_ARCH}-native:do_deploy" |
18 | 18 | ||
19 | GRUBCFG = "${S}/grub.cfg" | 19 | GRUBCFG = "${S}/grub.cfg" |
20 | GRUB_TIMEOUT ?= "10" | 20 | GRUB_TIMEOUT ?= "10" |