diff options
| -rw-r--r-- | meta/classes/uboot-config.bbclass | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/classes/uboot-config.bbclass b/meta/classes/uboot-config.bbclass index 09a0c0f7b5..ba01bffa5f 100644 --- a/meta/classes/uboot-config.bbclass +++ b/meta/classes/uboot-config.bbclass | |||
| @@ -47,7 +47,8 @@ python () { | |||
| 47 | bb.debug(1, "Setting UBOOT_MACHINE to %s." % items[0]) | 47 | bb.debug(1, "Setting UBOOT_MACHINE to %s." % items[0]) |
| 48 | d.setVar('UBOOT_MACHINE', items[0]) | 48 | d.setVar('UBOOT_MACHINE', items[0]) |
| 49 | 49 | ||
| 50 | if items[1]: | 50 | # IMAGE_FSTYPES appending |
| 51 | if len(items) > 1 and items[1]: | ||
| 51 | bb.debug(1, "Appending '%s' to IMAGE_FSTYPES." % items[1]) | 52 | bb.debug(1, "Appending '%s' to IMAGE_FSTYPES." % items[1]) |
| 52 | d.appendVar('IMAGE_FSTYPES', ' ' + items[1]) | 53 | d.appendVar('IMAGE_FSTYPES', ' ' + items[1]) |
| 53 | } | 54 | } |
