diff options
author | Ross Burton <ross.burton@intel.com> | 2014-12-01 23:47:45 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-12-03 12:23:56 +0000 |
commit | e89a5d046e4aa3b78ce0240f4310a9f0e79580a6 (patch) | |
tree | fb77eb9e01d5651b33b23c23bbc7d8de832cedf8 | |
parent | cd904146d6f0a576689bcfcdb99aa2244c4e9c61 (diff) | |
download | poky-e89a5d046e4aa3b78ce0240f4310a9f0e79580a6.tar.gz |
uboot-config.bbclass: don't skip defaultval
This field is now internal and won't be seen.
(From OE-Core rev: cce39741bb9d1b0166c7fd63506f96abaa0d8af6)
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/classes/uboot-config.bbclass | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/meta/classes/uboot-config.bbclass b/meta/classes/uboot-config.bbclass index 8ac1b71bc2..b467659cbb 100644 --- a/meta/classes/uboot-config.bbclass +++ b/meta/classes/uboot-config.bbclass | |||
@@ -38,9 +38,6 @@ python () { | |||
38 | ubootconfig = ubootconfig[0] | 38 | ubootconfig = ubootconfig[0] |
39 | 39 | ||
40 | for f, v in ubootconfigflags.items(): | 40 | for f, v in ubootconfigflags.items(): |
41 | if f == 'defaultval': | ||
42 | continue | ||
43 | |||
44 | items = v.split(',') | 41 | items = v.split(',') |
45 | if items[0] and len(items) > 2: | 42 | if items[0] and len(items) > 2: |
46 | raise bb.parse.SkipPackage('Only config,images can be specified!') | 43 | raise bb.parse.SkipPackage('Only config,images can be specified!') |