diff options
Diffstat (limited to 'meta')
-rw-r--r-- | meta/classes/image.bbclass | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/meta/classes/image.bbclass b/meta/classes/image.bbclass index f471f1a132..8bfd24193e 100644 --- a/meta/classes/image.bbclass +++ b/meta/classes/image.bbclass | |||
@@ -393,6 +393,8 @@ python () { | |||
393 | for ctype in ctypes: | 393 | for ctype in ctypes: |
394 | if bt.endswith("." + ctype): | 394 | if bt.endswith("." + ctype): |
395 | type = bt[0:-len(ctype) - 1] | 395 | type = bt[0:-len(ctype) - 1] |
396 | if type.startswith("debugfs_"): | ||
397 | type = type[8:] | ||
396 | # Create input image first. | 398 | # Create input image first. |
397 | gen_conversion_cmds(type) | 399 | gen_conversion_cmds(type) |
398 | localdata.setVar('type', type) | 400 | localdata.setVar('type', type) |
@@ -406,7 +408,7 @@ python () { | |||
406 | gen_conversion_cmds(bt) | 408 | gen_conversion_cmds(bt) |
407 | 409 | ||
408 | localdata.setVar('type', realt) | 410 | localdata.setVar('type', realt) |
409 | if realt not in alltypes: | 411 | if t not in alltypes: |
410 | rm_tmp_images.add(localdata.expand("${IMAGE_NAME}${IMAGE_NAME_SUFFIX}.${type}")) | 412 | rm_tmp_images.add(localdata.expand("${IMAGE_NAME}${IMAGE_NAME_SUFFIX}.${type}")) |
411 | else: | 413 | else: |
412 | subimages.append(realt) | 414 | subimages.append(realt) |