diff options
-rw-r--r-- | meta/classes/image.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/image.bbclass b/meta/classes/image.bbclass index 4542e95d1e..6b9f9798db 100644 --- a/meta/classes/image.bbclass +++ b/meta/classes/image.bbclass | |||
@@ -166,7 +166,7 @@ python () { | |||
166 | if temp: | 166 | if temp: |
167 | bb.fatal("%s contains conflicting IMAGE_FEATURES %s %s" % (d.getVar('PN', True), feature, ' '.join(list(temp)))) | 167 | bb.fatal("%s contains conflicting IMAGE_FEATURES %s %s" % (d.getVar('PN', True), feature, ' '.join(list(temp)))) |
168 | 168 | ||
169 | d.setVar('IMAGE_FEATURES', ' '.join(list(remain_features))) | 169 | d.setVar('IMAGE_FEATURES', ' '.join(sorted(list(remain_features)))) |
170 | 170 | ||
171 | check_image_features(d) | 171 | check_image_features(d) |
172 | initramfs_image = d.getVar('INITRAMFS_IMAGE', True) or "" | 172 | initramfs_image = d.getVar('INITRAMFS_IMAGE', True) or "" |