diff options
author | Robert P. J. Day <rpjday@crashcourse.ca> | 2020-02-16 08:23:02 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-02-18 23:53:54 +0000 |
commit | e1a2a5a206438e125811c22b25bc271014fc7e76 (patch) | |
tree | 544c87b081efc4ea7534539308ed0d604db6f5b1 /meta/classes | |
parent | 39970f583dddf04139a039cbe04e62b7236f0481 (diff) | |
download | poky-e1a2a5a206438e125811c22b25bc271014fc7e76.tar.gz |
fix various, innocuous typos
Corrections:
- environment
- accommodate
- conversion
- compatible
(From OE-Core rev: 9797d3b45b4e1b9d77f0f2ee299c17b48d8d3cf6)
Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/testimage.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/testimage.bbclass b/meta/classes/testimage.bbclass index 9588f2c4f8..01d8598604 100644 --- a/meta/classes/testimage.bbclass +++ b/meta/classes/testimage.bbclass | |||
@@ -243,7 +243,7 @@ def testimage_main(d): | |||
243 | if d.getVar("TEST_TARGET") == "qemu": | 243 | if d.getVar("TEST_TARGET") == "qemu": |
244 | fstypes = [fs for fs in fstypes if fs in supported_fstypes] | 244 | fstypes = [fs for fs in fstypes if fs in supported_fstypes] |
245 | if not fstypes: | 245 | if not fstypes: |
246 | bb.fatal('Unsupported image type built. Add a comptible image to ' | 246 | bb.fatal('Unsupported image type built. Add a compatible image to ' |
247 | 'IMAGE_FSTYPES. Supported types: %s' % | 247 | 'IMAGE_FSTYPES. Supported types: %s' % |
248 | ', '.join(supported_fstypes)) | 248 | ', '.join(supported_fstypes)) |
249 | qfstype = fstypes[0] | 249 | qfstype = fstypes[0] |