diff options
Diffstat (limited to 'meta/classes/uboot-config.bbclass')
-rw-r--r-- | meta/classes/uboot-config.bbclass | 19 |
1 files changed, 16 insertions, 3 deletions
diff --git a/meta/classes/uboot-config.bbclass b/meta/classes/uboot-config.bbclass index cb061af348..3f760f2fbe 100644 --- a/meta/classes/uboot-config.bbclass +++ b/meta/classes/uboot-config.bbclass | |||
@@ -3,7 +3,7 @@ | |||
3 | # The format to specify it, in the machine, is: | 3 | # The format to specify it, in the machine, is: |
4 | # | 4 | # |
5 | # UBOOT_CONFIG ??= <default> | 5 | # UBOOT_CONFIG ??= <default> |
6 | # UBOOT_CONFIG[foo] = "config,images" | 6 | # UBOOT_CONFIG[foo] = "config,images,binary" |
7 | # | 7 | # |
8 | # or | 8 | # or |
9 | # | 9 | # |
@@ -11,9 +11,13 @@ | |||
11 | # | 11 | # |
12 | # Copyright 2013, 2014 (C) O.S. Systems Software LTDA. | 12 | # Copyright 2013, 2014 (C) O.S. Systems Software LTDA. |
13 | 13 | ||
14 | UBOOT_BINARY ?= "u-boot.${UBOOT_SUFFIX}" | ||
15 | |||
14 | python () { | 16 | python () { |
15 | ubootmachine = d.getVar("UBOOT_MACHINE", True) | 17 | ubootmachine = d.getVar("UBOOT_MACHINE", True) |
16 | ubootconfigflags = d.getVarFlags('UBOOT_CONFIG') | 18 | ubootconfigflags = d.getVarFlags('UBOOT_CONFIG') |
19 | ubootbinary = d.getVar('UBOOT_BINARY', True) | ||
20 | ubootbinaries = d.getVar('UBOOT_BINARIES', True) | ||
17 | # The "doc" varflag is special, we don't want to see it here | 21 | # The "doc" varflag is special, we don't want to see it here |
18 | ubootconfigflags.pop('doc', None) | 22 | ubootconfigflags.pop('doc', None) |
19 | 23 | ||
@@ -27,6 +31,9 @@ python () { | |||
27 | if ubootmachine and ubootconfigflags: | 31 | if ubootmachine and ubootconfigflags: |
28 | raise bb.parse.SkipPackage("You cannot use UBOOT_MACHINE and UBOOT_CONFIG at the same time.") | 32 | raise bb.parse.SkipPackage("You cannot use UBOOT_MACHINE and UBOOT_CONFIG at the same time.") |
29 | 33 | ||
34 | if ubootconfigflags and ubootbinaries: | ||
35 | raise bb.parse.SkipPackage("You cannot use UBOOT_BINARIES as it is internal to uboot_config.bbclass.") | ||
36 | |||
30 | if not ubootconfigflags: | 37 | if not ubootconfigflags: |
31 | return | 38 | return |
32 | 39 | ||
@@ -36,13 +43,19 @@ python () { | |||
36 | for f, v in ubootconfigflags.items(): | 43 | for f, v in ubootconfigflags.items(): |
37 | if config == f: | 44 | if config == f: |
38 | items = v.split(',') | 45 | items = v.split(',') |
39 | if items[0] and len(items) > 2: | 46 | if items[0] and len(items) > 3: |
40 | raise bb.parse.SkipPackage('Only config,images can be specified!') | 47 | raise bb.parse.SkipPackage('Only config,images,binary can be specified!') |
41 | d.appendVar('UBOOT_MACHINE', ' ' + items[0]) | 48 | d.appendVar('UBOOT_MACHINE', ' ' + items[0]) |
42 | # IMAGE_FSTYPES appending | 49 | # IMAGE_FSTYPES appending |
43 | if len(items) > 1 and items[1]: | 50 | if len(items) > 1 and items[1]: |
44 | bb.debug(1, "Appending '%s' to IMAGE_FSTYPES." % items[1]) | 51 | bb.debug(1, "Appending '%s' to IMAGE_FSTYPES." % items[1]) |
45 | d.appendVar('IMAGE_FSTYPES', ' ' + items[1]) | 52 | d.appendVar('IMAGE_FSTYPES', ' ' + items[1]) |
53 | if len(items) > 2 and items[2]: | ||
54 | bb.debug(1, "Appending '%s' to UBOOT_BINARIES." % items[2]) | ||
55 | d.appendVar('UBOOT_BINARIES', ' ' + items[2]) | ||
56 | else: | ||
57 | bb.debug(1, "Appending '%s' to UBOOT_BINARIES." % ubootbinary) | ||
58 | d.appendVar('UBOOT_BINARIES', ' ' + ubootbinary) | ||
46 | break | 59 | break |
47 | elif len(ubootconfig) == 0: | 60 | elif len(ubootconfig) == 0: |
48 | raise bb.parse.SkipPackage('You must set a default in UBOOT_CONFIG.') | 61 | raise bb.parse.SkipPackage('You must set a default in UBOOT_CONFIG.') |