summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobert P. J. Day <rpjday@crashcourse.ca>2020-02-16 08:23:02 -0500
committerRichard Purdie <richard.purdie@linuxfoundation.org>2020-02-18 23:53:54 +0000
commite1a2a5a206438e125811c22b25bc271014fc7e76 (patch)
tree544c87b081efc4ea7534539308ed0d604db6f5b1
parent39970f583dddf04139a039cbe04e62b7236f0481 (diff)
downloadpoky-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>
-rw-r--r--meta/classes/testimage.bbclass2
-rw-r--r--meta/conf/licenses.conf2
-rw-r--r--meta/lib/oeqa/manual/eclipse-plugin.json6
-rw-r--r--meta/lib/oeqa/sdk/context.py2
-rw-r--r--meta/lib/oeqa/selftest/cases/devtool.py2
-rw-r--r--meta/lib/oeqa/selftest/cases/oelib/buildhistory.py2
-rw-r--r--scripts/pybootchartgui/pybootchartgui/draw.py2
7 files changed, 9 insertions, 9 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]
diff --git a/meta/conf/licenses.conf b/meta/conf/licenses.conf
index 1c586a3bc6..751424d1b6 100644
--- a/meta/conf/licenses.conf
+++ b/meta/conf/licenses.conf
@@ -1,7 +1,7 @@
1# Standards are great! Everyone has their own. In an effort to standardize licensing 1# Standards are great! Everyone has their own. In an effort to standardize licensing
2# names, common-licenses will use the SPDX standard license names. In order to not 2# names, common-licenses will use the SPDX standard license names. In order to not
3# break the non-standardized license names that we find in LICENSE, we'll set 3# break the non-standardized license names that we find in LICENSE, we'll set
4# up a bunch of VarFlags to accomodate non-SPDX license names. 4# up a bunch of VarFlags to accommodate non-SPDX license names.
5# 5#
6# We should really discuss standardizing this field, but that's a longer term goal. 6# We should really discuss standardizing this field, but that's a longer term goal.
7# For now, we can do this and it should grab the most common LICENSE naming variations. 7# For now, we can do this and it should grab the most common LICENSE naming variations.
diff --git a/meta/lib/oeqa/manual/eclipse-plugin.json b/meta/lib/oeqa/manual/eclipse-plugin.json
index 9869150dcf..d77d0e673b 100644
--- a/meta/lib/oeqa/manual/eclipse-plugin.json
+++ b/meta/lib/oeqa/manual/eclipse-plugin.json
@@ -82,7 +82,7 @@
82 ], 82 ],
83 "execution": { 83 "execution": {
84 "1": { 84 "1": {
85 "action": "Launch a QEMU of target enviroment.(Reference to case \"ADT - Launch qemu by eclipse\") ", 85 "action": "Launch a QEMU of target environment.(Reference to case \"ADT - Launch qemu by eclipse\") ",
86 "expected_results": "" 86 "expected_results": ""
87 }, 87 },
88 "2": { 88 "2": {
@@ -164,7 +164,7 @@
164 ], 164 ],
165 "execution": { 165 "execution": {
166 "1": { 166 "1": {
167 "action": "Launch a QEMU of target enviroment.(Reference to case \"ADT - Launch qemu by eclipse\") ", 167 "action": "Launch a QEMU of target environment.(Reference to case \"ADT - Launch qemu by eclipse\") ",
168 "expected_results": "" 168 "expected_results": ""
169 }, 169 },
170 "2": { 170 "2": {
@@ -319,4 +319,4 @@
319 "summary": "Eclipse_Poky_installation_and_setup" 319 "summary": "Eclipse_Poky_installation_and_setup"
320 } 320 }
321 } 321 }
322] \ No newline at end of file 322]
diff --git a/meta/lib/oeqa/sdk/context.py b/meta/lib/oeqa/sdk/context.py
index 09e77c19fe..01c38c24e6 100644
--- a/meta/lib/oeqa/sdk/context.py
+++ b/meta/lib/oeqa/sdk/context.py
@@ -136,7 +136,7 @@ class OESDKTestContextExecutor(OETestContextExecutor):
136 sdk_envs = OESDKTestContextExecutor._get_sdk_environs(args.sdk_dir) 136 sdk_envs = OESDKTestContextExecutor._get_sdk_environs(args.sdk_dir)
137 if not sdk_envs: 137 if not sdk_envs:
138 raise argparse_oe.ArgumentUsageError("No available SDK "\ 138 raise argparse_oe.ArgumentUsageError("No available SDK "\
139 "enviroments found at %s" % args.sdk_dir, self.name) 139 "environments found at %s" % args.sdk_dir, self.name)
140 140
141 if args.list_sdk_env: 141 if args.list_sdk_env:
142 self._display_sdk_envs(logger.info, args, sdk_envs) 142 self._display_sdk_envs(logger.info, args, sdk_envs)
diff --git a/meta/lib/oeqa/selftest/cases/devtool.py b/meta/lib/oeqa/selftest/cases/devtool.py
index e2f91bcb6c..5886862d6c 100644
--- a/meta/lib/oeqa/selftest/cases/devtool.py
+++ b/meta/lib/oeqa/selftest/cases/devtool.py
@@ -1741,7 +1741,7 @@ class DevtoolUpgradeTests(DevtoolBase):
1741 when building the kernel. 1741 when building the kernel.
1742 """ 1742 """
1743 kernel_provider = get_bb_var('PREFERRED_PROVIDER_virtual/kernel') 1743 kernel_provider = get_bb_var('PREFERRED_PROVIDER_virtual/kernel')
1744 # Clean up the enviroment 1744 # Clean up the environment
1745 bitbake('%s -c clean' % kernel_provider) 1745 bitbake('%s -c clean' % kernel_provider)
1746 tempdir = tempfile.mkdtemp(prefix='devtoolqa') 1746 tempdir = tempfile.mkdtemp(prefix='devtoolqa')
1747 tempdir_cfg = tempfile.mkdtemp(prefix='config_qa') 1747 tempdir_cfg = tempfile.mkdtemp(prefix='config_qa')
diff --git a/meta/lib/oeqa/selftest/cases/oelib/buildhistory.py b/meta/lib/oeqa/selftest/cases/oelib/buildhistory.py
index 6d80827652..d4664bd0df 100644
--- a/meta/lib/oeqa/selftest/cases/oelib/buildhistory.py
+++ b/meta/lib/oeqa/selftest/cases/oelib/buildhistory.py
@@ -45,7 +45,7 @@ class TestBlobParsing(OESelftestTestCase):
45 45
46 def test_blob_to_dict(self): 46 def test_blob_to_dict(self):
47 """ 47 """
48 Test convertion of git blobs to dictionary 48 Test conversion of git blobs to dictionary
49 """ 49 """
50 from oe.buildhistory_analysis import blob_to_dict 50 from oe.buildhistory_analysis import blob_to_dict
51 valuesmap = { "foo" : "1", "bar" : "2" } 51 valuesmap = { "foo" : "1", "bar" : "2" }
diff --git a/scripts/pybootchartgui/pybootchartgui/draw.py b/scripts/pybootchartgui/pybootchartgui/draw.py
index add5c53882..53324b9f8b 100644
--- a/scripts/pybootchartgui/pybootchartgui/draw.py
+++ b/scripts/pybootchartgui/pybootchartgui/draw.py
@@ -308,7 +308,7 @@ sec_w_base = 1 # the width of a second
308proc_h = 16 # the height of a process 308proc_h = 16 # the height of a process
309leg_s = 10 309leg_s = 10
310MIN_IMG_W = 800 310MIN_IMG_W = 800
311CUML_HEIGHT = 2000 # Increased value to accomodate CPU and I/O Graphs 311CUML_HEIGHT = 2000 # Increased value to accommodate CPU and I/O Graphs
312OPTIONS = None 312OPTIONS = None
313 313
314def extents(options, xscale, trace): 314def extents(options, xscale, trace):