summaryrefslogtreecommitdiffstats
path: root/meta/classes
diff options
context:
space:
mode:
Diffstat (limited to 'meta/classes')
-rw-r--r--meta/classes/uboot-config.bbclass5
1 files changed, 5 insertions, 0 deletions
diff --git a/meta/classes/uboot-config.bbclass b/meta/classes/uboot-config.bbclass
index ba01bffa5f..5068f49bfc 100644
--- a/meta/classes/uboot-config.bbclass
+++ b/meta/classes/uboot-config.bbclass
@@ -51,4 +51,9 @@ python () {
51 if len(items) > 1 and items[1]: 51 if len(items) > 1 and items[1]:
52 bb.debug(1, "Appending '%s' to IMAGE_FSTYPES." % items[1]) 52 bb.debug(1, "Appending '%s' to IMAGE_FSTYPES." % items[1])
53 d.appendVar('IMAGE_FSTYPES', ' ' + items[1]) 53 d.appendVar('IMAGE_FSTYPES', ' ' + items[1])
54
55 # Go out as we found a match!
56 break
57 else:
58 raise ValueError("UBOOT_CONFIG %s is not supported" % ubootconfig)
54} 59}