summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@intel.com>2013-08-01 11:07:36 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-08-12 13:14:20 +0100
commitbaffd936a5e5c5cf588dec161dfb3289e6248816 (patch)
treef3fd9e8e79e735b30a1b78c064fa1da7eb913b3b /meta
parentbc5e808f01f4863b401c75be582ae1d64cb681da (diff)
downloadpoky-baffd936a5e5c5cf588dec161dfb3289e6248816.tar.gz
u-boot: state the MACHINE when skipping u-boot
If the user accidently tries building u-boot on a machine doesn't use u-boot (such as qemuarm) the error message doesn't make it clear why u-boot was skipped. To help, state the machine that was being built for again. [ YOCTO #4945 ] (From OE-Core master rev: beef66beaee926ec3d3640b79133fdb2ccc404f0) (From OE-Core rev: 0042a3230a0c3b983245aabad6fdc3b3d3fcc2cd) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r--meta/recipes-bsp/u-boot/u-boot.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-bsp/u-boot/u-boot.inc b/meta/recipes-bsp/u-boot/u-boot.inc
index ae53b9019c..adcaa6afec 100644
--- a/meta/recipes-bsp/u-boot/u-boot.inc
+++ b/meta/recipes-bsp/u-boot/u-boot.inc
@@ -13,7 +13,7 @@ python () {
13 FILE = os.path.basename(d.getVar("FILE", True)) 13 FILE = os.path.basename(d.getVar("FILE", True))
14 bb.debug(1, "To build %s, see %s for instructions on \ 14 bb.debug(1, "To build %s, see %s for instructions on \
15 setting up your machine config" % (PN, FILE)) 15 setting up your machine config" % (PN, FILE))
16 raise bb.parse.SkipPackage("because UBOOT_MACHINE is not set") 16 raise bb.parse.SkipPackage("UBOOT_MACHINE is not set in the %s machine configuration." % d.getVar("MACHINE", True))
17} 17}
18 18
19# Some versions of u-boot use .bin and others use .img. By default use .bin 19# Some versions of u-boot use .bin and others use .img. By default use .bin