summaryrefslogtreecommitdiffstats
path: root/meta/classes/grub-efi.bbclass
diff options
context:
space:
mode:
authorMihai Lindner <mihaix.lindner@linux.intel.com>2012-08-24 21:06:12 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-08-25 14:47:00 +0100
commita807818544df4b13ed13d6778b27ccb23d0fd764 (patch)
tree13a781cd7a333b178758478a10e9446d46e98af3 /meta/classes/grub-efi.bbclass
parent1736b1d4cd17626e41b87a110d6e47009d879886 (diff)
downloadpoky-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.bbclass2
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
17do_bootimg[depends] += "grub-efi-${TARGET_ARCH}-native:do_deploy" 17do_bootimg[depends] += "grub-efi-${TRANSLATED_TARGET_ARCH}-native:do_deploy"
18 18
19GRUBCFG = "${S}/grub.cfg" 19GRUBCFG = "${S}/grub.cfg"
20GRUB_TIMEOUT ?= "10" 20GRUB_TIMEOUT ?= "10"