All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 01/17] support/dependencies/dependencies.sh: fix 'mimic' typo
@ 2024-09-20 21:08 Peter Korsgaard
  2024-09-20 21:08 ` [Buildroot] [PATCH 02/17] support/kconfig: fix 'multiple' typo in patch description Peter Korsgaard
                   ` (16 more replies)
  0 siblings, 17 replies; 18+ messages in thread
From: Peter Korsgaard @ 2024-09-20 21:08 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
 support/dependencies/dependencies.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/support/dependencies/dependencies.sh b/support/dependencies/dependencies.sh
index 6d5fc36037..fb0defd0c9 100755
--- a/support/dependencies/dependencies.sh
+++ b/support/dependencies/dependencies.sh
@@ -143,7 +143,7 @@ fi
 
 # Check bash
 # We only check bash is available, setting SHELL appropriately is done
-# in the top-level Makefile, and we mimick the same sequence here
+# in the top-level Makefile, and we mimic the same sequence here
 if   [ -n "${BASH}" ]; then :
 elif [ -x /bin/bash ]; then :
 elif [ -z "$( sh -c 'echo $BASH' )" ]; then
-- 
2.39.2

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [Buildroot] [PATCH 02/17] support/kconfig: fix 'multiple' typo in patch description
  2024-09-20 21:08 [Buildroot] [PATCH 01/17] support/dependencies/dependencies.sh: fix 'mimic' typo Peter Korsgaard
@ 2024-09-20 21:08 ` Peter Korsgaard
  2024-09-20 21:08 ` [Buildroot] [PATCH 03/17] support/misc/Buildroot.cmake: fix 'after all' typo Peter Korsgaard
                   ` (15 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: Peter Korsgaard @ 2024-09-20 21:08 UTC (permalink / raw)
  To: buildroot; +Cc: Petr Vorel

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
 .../18-merge-config.sh-create-temporary-files-in-tmp.patch      | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/support/kconfig/patches/18-merge-config.sh-create-temporary-files-in-tmp.patch b/support/kconfig/patches/18-merge-config.sh-create-temporary-files-in-tmp.patch
index f2a261f308..053366e2fb 100644
--- a/support/kconfig/patches/18-merge-config.sh-create-temporary-files-in-tmp.patch
+++ b/support/kconfig/patches/18-merge-config.sh-create-temporary-files-in-tmp.patch
@@ -5,7 +5,7 @@ Date: Mon, 7 Dec 2015 12:08:45 -0200
     merge_config.sh: create temporary files in /tmp
 
     Creating temporary files in /tmp (or the path pointed by $TMPDIR) allows the
-    buildroot top directory to be read-only and shareable between multible builds.
+    buildroot top directory to be read-only and shareable between multiple builds.
     This follows what other scripts do, e.g. check-kernel-headers.sh.
 
     Signed-off-by: Henrique Marks <henrique.marks@datacom.ind.br>
-- 
2.39.2

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [Buildroot] [PATCH 03/17] support/misc/Buildroot.cmake: fix 'after all' typo
  2024-09-20 21:08 [Buildroot] [PATCH 01/17] support/dependencies/dependencies.sh: fix 'mimic' typo Peter Korsgaard
  2024-09-20 21:08 ` [Buildroot] [PATCH 02/17] support/kconfig: fix 'multiple' typo in patch description Peter Korsgaard
@ 2024-09-20 21:08 ` Peter Korsgaard
  2024-09-20 21:08 ` [Buildroot] [PATCH 04/17] support/misc/utils.mk: fix typos Peter Korsgaard
                   ` (14 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: Peter Korsgaard @ 2024-09-20 21:08 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
 support/misc/Buildroot.cmake | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/support/misc/Buildroot.cmake b/support/misc/Buildroot.cmake
index 761b6d7ae2..3f8cd22f7d 100644
--- a/support/misc/Buildroot.cmake
+++ b/support/misc/Buildroot.cmake
@@ -1,4 +1,4 @@
-# Impersonate a Linux system. Afterall, that's what we are...
+# Impersonate a Linux system. After all, that's what we are...
 set(CMAKE_SYSTEM_NAME Linux)
 set(CMAKE_SYSTEM ${CMAKE_SYSTEM_NAME})
 include(Platform/Linux)
-- 
2.39.2

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [Buildroot] [PATCH 04/17] support/misc/utils.mk: fix typos
  2024-09-20 21:08 [Buildroot] [PATCH 01/17] support/dependencies/dependencies.sh: fix 'mimic' typo Peter Korsgaard
  2024-09-20 21:08 ` [Buildroot] [PATCH 02/17] support/kconfig: fix 'multiple' typo in patch description Peter Korsgaard
  2024-09-20 21:08 ` [Buildroot] [PATCH 03/17] support/misc/Buildroot.cmake: fix 'after all' typo Peter Korsgaard
@ 2024-09-20 21:08 ` Peter Korsgaard
  2024-09-20 21:08 ` [Buildroot] [PATCH 05/17] support/scripts/cve.py: fix 'useful' typo Peter Korsgaard
                   ` (13 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: Peter Korsgaard @ 2024-09-20 21:08 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
 support/misc/utils.mk | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/support/misc/utils.mk b/support/misc/utils.mk
index 4d0efcced0..5275006d6d 100644
--- a/support/misc/utils.mk
+++ b/support/misc/utils.mk
@@ -40,7 +40,7 @@ SHARP_SIGN := \#
 # In other words, every letter is substituted one by one.
 #
 # The caseconvert-helper allows us to create this definition out of the
-# [FROM] and [TO] lists, so we don't need to write down every substition
+# [FROM] and [TO] lists, so we don't need to write down every substitution
 # manually. The uses of $ and $$ quoting are chosen in order to do as
 # much expansion as possible up-front.
 #
@@ -131,7 +131,7 @@ QUOTE = '
 # Once everything has been escaped, it is passed between single quotes
 # (that's why the single-quotes are escaped they way they are, above,
 # and why the dollar sign is not escaped) to printf(1). A trailing
-# newline is apended, too.
+# newline is appended, too.
 #
 # Note: leading or trailing spaces are *not* stripped.
 #
-- 
2.39.2

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [Buildroot] [PATCH 05/17] support/scripts/cve.py: fix 'useful' typo
  2024-09-20 21:08 [Buildroot] [PATCH 01/17] support/dependencies/dependencies.sh: fix 'mimic' typo Peter Korsgaard
                   ` (2 preceding siblings ...)
  2024-09-20 21:08 ` [Buildroot] [PATCH 04/17] support/misc/utils.mk: fix typos Peter Korsgaard
@ 2024-09-20 21:08 ` Peter Korsgaard
  2024-09-20 21:08 ` [Buildroot] [PATCH 06/17] support/scripts/graph-build-time: fix 'auxiliary' typo Peter Korsgaard
                   ` (12 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: Peter Korsgaard @ 2024-09-20 21:08 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
 support/scripts/cve.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/support/scripts/cve.py b/support/scripts/cve.py
index e25825581e..5af6e0c43f 100755
--- a/support/scripts/cve.py
+++ b/support/scripts/cve.py
@@ -120,7 +120,7 @@ class CVE:
     def parse_node(self, node):
         """
         Parse the node inside the configurations section to extract the
-        cpe information usefull to know if a product is affected by
+        cpe information useful to know if a product is affected by
         the CVE. Actually only the product name and the version
         descriptor are needed, but we also provide the vendor name.
         """
-- 
2.39.2

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [Buildroot] [PATCH 06/17] support/scripts/graph-build-time: fix 'auxiliary' typo
  2024-09-20 21:08 [Buildroot] [PATCH 01/17] support/dependencies/dependencies.sh: fix 'mimic' typo Peter Korsgaard
                   ` (3 preceding siblings ...)
  2024-09-20 21:08 ` [Buildroot] [PATCH 05/17] support/scripts/cve.py: fix 'useful' typo Peter Korsgaard
@ 2024-09-20 21:08 ` Peter Korsgaard
  2024-09-20 21:08 ` [Buildroot] [PATCH 07/17] support/scripts/pkg-stats: fix 'dictionary' typo Peter Korsgaard
                   ` (11 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: Peter Korsgaard @ 2024-09-20 21:08 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
 support/scripts/graph-build-time | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/support/scripts/graph-build-time b/support/scripts/graph-build-time
index 1edc3b3c00..abbbb26151 100755
--- a/support/scripts/graph-build-time
+++ b/support/scripts/graph-build-time
@@ -311,7 +311,7 @@ def read_data(input_file):
     reader = csv.reader(input_file, delimiter=':')
     pkgs = []
 
-    # Auxilliary function to find a package by name in the list.
+    # Auxiliary function to find a package by name in the list.
     def getpkg(name):
         for p in pkgs:
             if p.name == name:
-- 
2.39.2

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [Buildroot] [PATCH 07/17] support/scripts/pkg-stats: fix 'dictionary' typo
  2024-09-20 21:08 [Buildroot] [PATCH 01/17] support/dependencies/dependencies.sh: fix 'mimic' typo Peter Korsgaard
                   ` (4 preceding siblings ...)
  2024-09-20 21:08 ` [Buildroot] [PATCH 06/17] support/scripts/graph-build-time: fix 'auxiliary' typo Peter Korsgaard
@ 2024-09-20 21:08 ` Peter Korsgaard
  2024-09-20 21:08 ` [Buildroot] [PATCH 08/17] support/testing/tests/init/test_systemd.py: fix 'on top' typo Peter Korsgaard
                   ` (10 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: Peter Korsgaard @ 2024-09-20 21:08 UTC (permalink / raw)
  To: buildroot; +Cc: Sen Hastings

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
 support/scripts/pkg-stats | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/support/scripts/pkg-stats b/support/scripts/pkg-stats
index 4dc1857a9e..f143af6446 100755
--- a/support/scripts/pkg-stats
+++ b/support/scripts/pkg-stats
@@ -1209,7 +1209,7 @@ def dump_html(packages, stats, date, commit, output):
 
 
 def dump_json(packages, defconfigs, stats, date, commit, output):
-    # Format packages as a dictionnary instead of a list
+    # Format packages as a dictionary instead of a list
     # Exclude local field that does not contains real date
     excluded_fields = ['url_worker', 'name', 'tree_path']
     pkgs = {
-- 
2.39.2

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [Buildroot] [PATCH 08/17] support/testing/tests/init/test_systemd.py: fix 'on top' typo
  2024-09-20 21:08 [Buildroot] [PATCH 01/17] support/dependencies/dependencies.sh: fix 'mimic' typo Peter Korsgaard
                   ` (5 preceding siblings ...)
  2024-09-20 21:08 ` [Buildroot] [PATCH 07/17] support/scripts/pkg-stats: fix 'dictionary' typo Peter Korsgaard
@ 2024-09-20 21:08 ` Peter Korsgaard
  2024-09-20 21:08 ` [Buildroot] [PATCH 09/17] support/testing/tests/package/test_acpica.py: fix typos in comments Peter Korsgaard
                   ` (9 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: Peter Korsgaard @ 2024-09-20 21:08 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
 support/testing/tests/init/test_systemd.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/support/testing/tests/init/test_systemd.py b/support/testing/tests/init/test_systemd.py
index 7bbc112a56..05a65223b3 100644
--- a/support/testing/tests/init/test_systemd.py
+++ b/support/testing/tests/init/test_systemd.py
@@ -198,7 +198,7 @@ class TestInitSystemSystemdRwFull(InitSystemSystemdBase):
 
 
 # The following tests are all about read-only rootfs, and exercise either
-# using an un-populated factory for /var, or an overlaysfs ontop of a
+# using an un-populated factory for /var, or an overlaysfs on top of a
 # pre-populated /var. They all specialise the TestInitSystemSystemdRo*
 # test cases above.
 
-- 
2.39.2

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [Buildroot] [PATCH 09/17] support/testing/tests/package/test_acpica.py: fix typos in comments
  2024-09-20 21:08 [Buildroot] [PATCH 01/17] support/dependencies/dependencies.sh: fix 'mimic' typo Peter Korsgaard
                   ` (6 preceding siblings ...)
  2024-09-20 21:08 ` [Buildroot] [PATCH 08/17] support/testing/tests/init/test_systemd.py: fix 'on top' typo Peter Korsgaard
@ 2024-09-20 21:08 ` Peter Korsgaard
  2024-09-20 21:08 ` [Buildroot] [PATCH 10/17] support/testing/tests/package/test_bash.py: fix 'running' typo Peter Korsgaard
                   ` (8 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: Peter Korsgaard @ 2024-09-20 21:08 UTC (permalink / raw)
  To: buildroot; +Cc: Julien Olivain

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
 support/testing/tests/package/test_acpica.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/support/testing/tests/package/test_acpica.py b/support/testing/tests/package/test_acpica.py
index f7dd64d7f0..adfb93d504 100644
--- a/support/testing/tests/package/test_acpica.py
+++ b/support/testing/tests/package/test_acpica.py
@@ -43,12 +43,12 @@ class TestAcpica(infra.basetest.BRTest):
         cmd += " | grep -F '\"Hello Buildroot!\"'"
         self.assertRunOk(cmd)
 
-        # INT1 is exepcted to be 12345678
+        # INT1 is expected to be 12345678
         cmd = "acpiexec -b 'evaluate INT1' dsdt.aml"
         cmd += " | grep -F 12345678"
         self.assertRunOk(cmd)
 
-        # Evalute the TEST method which prints its argument
+        # Evaluate the TEST method which prints its argument
         cmd = "acpiexec -b 'evaluate TST2 \"Hello World\"' dsdt.aml"
         cmd += " | grep -F 'Arg0=Hello World'"
         self.assertRunOk(cmd)
-- 
2.39.2

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [Buildroot] [PATCH 10/17] support/testing/tests/package/test_bash.py: fix 'running' typo
  2024-09-20 21:08 [Buildroot] [PATCH 01/17] support/dependencies/dependencies.sh: fix 'mimic' typo Peter Korsgaard
                   ` (7 preceding siblings ...)
  2024-09-20 21:08 ` [Buildroot] [PATCH 09/17] support/testing/tests/package/test_acpica.py: fix typos in comments Peter Korsgaard
@ 2024-09-20 21:08 ` Peter Korsgaard
  2024-09-20 21:08 ` [Buildroot] [PATCH 11/17] support/testing/tests/package/test_compressor_base.py: fix 'extension' typo Peter Korsgaard
                   ` (7 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: Peter Korsgaard @ 2024-09-20 21:08 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
 support/testing/tests/package/test_bash.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/support/testing/tests/package/test_bash.py b/support/testing/tests/package/test_bash.py
index f0ee8cadc1..7ec6e85ef9 100644
--- a/support/testing/tests/package/test_bash.py
+++ b/support/testing/tests/package/test_bash.py
@@ -28,7 +28,7 @@ class TestBash(infra.basetest.BRTest):
         self.assertEqual(out[0], "", "Already running bash instead of busybox' sh")
 
         self.assertRunOk("bash -il")
-        # Twist! The above command is still runing, it's just that
+        # Twist! The above command is still running, it's just that
         # bash did display the prompt we expect. Check we are indeed
         # actually bash
         out, _ = self.emulator.run('echo "${BASH}"')
-- 
2.39.2

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [Buildroot] [PATCH 11/17] support/testing/tests/package/test_compressor_base.py: fix 'extension' typo
  2024-09-20 21:08 [Buildroot] [PATCH 01/17] support/dependencies/dependencies.sh: fix 'mimic' typo Peter Korsgaard
                   ` (8 preceding siblings ...)
  2024-09-20 21:08 ` [Buildroot] [PATCH 10/17] support/testing/tests/package/test_bash.py: fix 'running' typo Peter Korsgaard
@ 2024-09-20 21:08 ` Peter Korsgaard
  2024-09-20 21:08 ` [Buildroot] [PATCH 12/17] support/testing/tests/package/test_cryptsetup.py: fix 'encrypted' typo Peter Korsgaard
                   ` (6 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: Peter Korsgaard @ 2024-09-20 21:08 UTC (permalink / raw)
  To: buildroot; +Cc: Julien Olivain

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
 support/testing/tests/package/test_compressor_base.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/support/testing/tests/package/test_compressor_base.py b/support/testing/tests/package/test_compressor_base.py
index 6555584c10..e822c21139 100644
--- a/support/testing/tests/package/test_compressor_base.py
+++ b/support/testing/tests/package/test_compressor_base.py
@@ -24,7 +24,7 @@ class TestCompressorBase(infra.basetest.BRTest):
                        in unset, the default value is "compress_cmd" appended
                        with " -t".
     compressed_file_ext
-                     - the file extention of compressed files created by the
+                     - the file extension of compressed files created by the
                        compress command. (ex: ".gz")
                        if unset, the default value is a dot "." appended with
                        the value of "compress_cmd".
-- 
2.39.2

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [Buildroot] [PATCH 12/17] support/testing/tests/package/test_cryptsetup.py: fix 'encrypted' typo
  2024-09-20 21:08 [Buildroot] [PATCH 01/17] support/dependencies/dependencies.sh: fix 'mimic' typo Peter Korsgaard
                   ` (9 preceding siblings ...)
  2024-09-20 21:08 ` [Buildroot] [PATCH 11/17] support/testing/tests/package/test_compressor_base.py: fix 'extension' typo Peter Korsgaard
@ 2024-09-20 21:08 ` Peter Korsgaard
  2024-09-20 21:08 ` [Buildroot] [PATCH 13/17] support/testing/tests/package/test_ddrescue.py: fix 'normally' typo Peter Korsgaard
                   ` (5 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: Peter Korsgaard @ 2024-09-20 21:08 UTC (permalink / raw)
  To: buildroot; +Cc: Julien Olivain

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
 support/testing/tests/package/test_cryptsetup.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/support/testing/tests/package/test_cryptsetup.py b/support/testing/tests/package/test_cryptsetup.py
index 759dfd7c5f..e409ea93e6 100644
--- a/support/testing/tests/package/test_cryptsetup.py
+++ b/support/testing/tests/package/test_cryptsetup.py
@@ -109,7 +109,7 @@ class TestCryptSetup(infra.basetest.BRTest):
         self.assertRunOk(f"cryptsetup close {dm_name}")
 
         # We are NOT supposed to find our plain text message on the
-        # crypted storage device.
+        # encrypted storage device.
         _, ret = self.emulator.run(f"grep -Fq '{msg}' {dev}", timeout=10)
         self.assertNotEqual(ret, 0)
 
-- 
2.39.2

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [Buildroot] [PATCH 13/17] support/testing/tests/package/test_ddrescue.py: fix 'normally' typo
  2024-09-20 21:08 [Buildroot] [PATCH 01/17] support/dependencies/dependencies.sh: fix 'mimic' typo Peter Korsgaard
                   ` (10 preceding siblings ...)
  2024-09-20 21:08 ` [Buildroot] [PATCH 12/17] support/testing/tests/package/test_cryptsetup.py: fix 'encrypted' typo Peter Korsgaard
@ 2024-09-20 21:08 ` Peter Korsgaard
  2024-09-20 21:08 ` [Buildroot] [PATCH 14/17] support/testing/tests/package/test_iptables.py: fix 'OUTPUT' typo Peter Korsgaard
                   ` (4 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: Peter Korsgaard @ 2024-09-20 21:08 UTC (permalink / raw)
  To: buildroot; +Cc: Julien Olivain

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
 support/testing/tests/package/test_ddrescue.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/support/testing/tests/package/test_ddrescue.py b/support/testing/tests/package/test_ddrescue.py
index 2206971421..989abc8f01 100644
--- a/support/testing/tests/package/test_ddrescue.py
+++ b/support/testing/tests/package/test_ddrescue.py
@@ -76,7 +76,7 @@ class TestDdrescue(infra.basetest.BRTest):
         # Where a normal 'dd' fails, 'ddrescue' is expected to succeed
         self.assertRunOk(f"ddrescue {dm_dev} {ddrescue_img}")
 
-        # ddrescue does not normaly write any output data when there
+        # ddrescue does not normally write any output data when there
         # is I/O error on the input. The intent is to preserve any
         # data that could have been read in a previous pass. There is
         # one exception, when the output is a non-existing regular
-- 
2.39.2

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [Buildroot] [PATCH 14/17] support/testing/tests/package/test_iptables.py: fix 'OUTPUT' typo
  2024-09-20 21:08 [Buildroot] [PATCH 01/17] support/dependencies/dependencies.sh: fix 'mimic' typo Peter Korsgaard
                   ` (11 preceding siblings ...)
  2024-09-20 21:08 ` [Buildroot] [PATCH 13/17] support/testing/tests/package/test_ddrescue.py: fix 'normally' typo Peter Korsgaard
@ 2024-09-20 21:08 ` Peter Korsgaard
  2024-09-20 21:08 ` [Buildroot] [PATCH 15/17] support/testing/tests/package/test_micropython.py: fix 'returned' typo Peter Korsgaard
                   ` (3 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: Peter Korsgaard @ 2024-09-20 21:08 UTC (permalink / raw)
  To: buildroot; +Cc: Julien Olivain

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
 support/testing/tests/package/test_iptables.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/support/testing/tests/package/test_iptables.py b/support/testing/tests/package/test_iptables.py
index ee57b31558..924a483ddb 100644
--- a/support/testing/tests/package/test_iptables.py
+++ b/support/testing/tests/package/test_iptables.py
@@ -40,7 +40,7 @@ class TestIptables(infra.basetest.BRTest):
         self.assertRunOk("iptables --version")
 
         # We delete all rules in all chains. We also set default
-        # policies to ACCEPT for INPUT and OUPUT chains. This should
+        # policies to ACCEPT for INPUT and OUTPUT chains. This should
         # already be the case (default Kernel config). This makes sure
         # this test starts from a known state and also those common
         # command invocations works.
-- 
2.39.2

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [Buildroot] [PATCH 15/17] support/testing/tests/package/test_micropython.py: fix 'returned' typo
  2024-09-20 21:08 [Buildroot] [PATCH 01/17] support/dependencies/dependencies.sh: fix 'mimic' typo Peter Korsgaard
                   ` (12 preceding siblings ...)
  2024-09-20 21:08 ` [Buildroot] [PATCH 14/17] support/testing/tests/package/test_iptables.py: fix 'OUTPUT' typo Peter Korsgaard
@ 2024-09-20 21:08 ` Peter Korsgaard
  2024-09-20 21:08 ` [Buildroot] [PATCH 16/17] support/testing/tests/package/test_mtools.py: fix 'unformatted' typo Peter Korsgaard
                   ` (2 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: Peter Korsgaard @ 2024-09-20 21:08 UTC (permalink / raw)
  To: buildroot; +Cc: Julien Olivain

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
 support/testing/tests/package/test_micropython.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/support/testing/tests/package/test_micropython.py b/support/testing/tests/package/test_micropython.py
index 371deb2978..cc0e5854c8 100644
--- a/support/testing/tests/package/test_micropython.py
+++ b/support/testing/tests/package/test_micropython.py
@@ -16,7 +16,7 @@ class TestMicroPython(infra.basetest.BRTest):
     def run_upy_code(self, python_code, opts=""):
         cmd = f'micropython {opts} -c "{python_code}"'
         output, ret = self.emulator.run(cmd)
-        self.assertEqual(ret, 0, f"could not run '{cmd}', returnd {ret}: '{output}'")
+        self.assertEqual(ret, 0, f"could not run '{cmd}', returned {ret}: '{output}'")
         return output
 
     def test_run(self):
-- 
2.39.2

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [Buildroot] [PATCH 16/17] support/testing/tests/package/test_mtools.py: fix 'unformatted' typo
  2024-09-20 21:08 [Buildroot] [PATCH 01/17] support/dependencies/dependencies.sh: fix 'mimic' typo Peter Korsgaard
                   ` (13 preceding siblings ...)
  2024-09-20 21:08 ` [Buildroot] [PATCH 15/17] support/testing/tests/package/test_micropython.py: fix 'returned' typo Peter Korsgaard
@ 2024-09-20 21:08 ` Peter Korsgaard
  2024-09-20 21:08 ` [Buildroot] [PATCH 17/17] support/testing/tests/package/test_weston/overlay/etc/weston.ini: fix 'independent' typo Peter Korsgaard
  2024-09-21 18:49 ` [Buildroot] [PATCH 01/17] support/dependencies/dependencies.sh: fix 'mimic' typo Yann E. MORIN
  16 siblings, 0 replies; 18+ messages in thread
From: Peter Korsgaard @ 2024-09-20 21:08 UTC (permalink / raw)
  To: buildroot; +Cc: Julien Olivain

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
 support/testing/tests/package/test_mtools.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/support/testing/tests/package/test_mtools.py b/support/testing/tests/package/test_mtools.py
index 4a232bc926..23ec08b6d6 100644
--- a/support/testing/tests/package/test_mtools.py
+++ b/support/testing/tests/package/test_mtools.py
@@ -26,7 +26,7 @@ class TestMtools(infra.basetest.BRTest):
         # Create an empty image file to hold the FAT partition
         self.assertRunOk(f"dd if=/dev/zero of={dos_img} bs=1M count=1")
 
-        # Any Mtools command is expected to fail on an unformated
+        # Any Mtools command is expected to fail on an unformatted
         # partition.
         cmd = f"minfo {mtools_opts} ::"
         _, exit_code = self.emulator.run(cmd)
-- 
2.39.2

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 18+ messages in thread

* [Buildroot] [PATCH 17/17] support/testing/tests/package/test_weston/overlay/etc/weston.ini: fix 'independent' typo
  2024-09-20 21:08 [Buildroot] [PATCH 01/17] support/dependencies/dependencies.sh: fix 'mimic' typo Peter Korsgaard
                   ` (14 preceding siblings ...)
  2024-09-20 21:08 ` [Buildroot] [PATCH 16/17] support/testing/tests/package/test_mtools.py: fix 'unformatted' typo Peter Korsgaard
@ 2024-09-20 21:08 ` Peter Korsgaard
  2024-09-21 18:49 ` [Buildroot] [PATCH 01/17] support/dependencies/dependencies.sh: fix 'mimic' typo Yann E. MORIN
  16 siblings, 0 replies; 18+ messages in thread
From: Peter Korsgaard @ 2024-09-20 21:08 UTC (permalink / raw)
  To: buildroot; +Cc: Julien Olivain

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
 .../testing/tests/package/test_weston/overlay/etc/weston.ini    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/support/testing/tests/package/test_weston/overlay/etc/weston.ini b/support/testing/tests/package/test_weston/overlay/etc/weston.ini
index 534b5c1f4a..1d710ca727 100644
--- a/support/testing/tests/package/test_weston/overlay/etc/weston.ini
+++ b/support/testing/tests/package/test_weston/overlay/etc/weston.ini
@@ -1,5 +1,5 @@
 # The shell "clock-format" is set to "none", in order to have stable
-#  display output, independant from the time. The display output can
+#  display output, independent from the time. The display output can
 # then be reliably checked with VKMS CRC.
 # "startup-animation" and "close-animation" are set to "none" for
 # faster transitions (fade animations with a software GLES
-- 
2.39.2

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 18+ messages in thread

* Re: [Buildroot] [PATCH 01/17] support/dependencies/dependencies.sh: fix 'mimic' typo
  2024-09-20 21:08 [Buildroot] [PATCH 01/17] support/dependencies/dependencies.sh: fix 'mimic' typo Peter Korsgaard
                   ` (15 preceding siblings ...)
  2024-09-20 21:08 ` [Buildroot] [PATCH 17/17] support/testing/tests/package/test_weston/overlay/etc/weston.ini: fix 'independent' typo Peter Korsgaard
@ 2024-09-21 18:49 ` Yann E. MORIN
  16 siblings, 0 replies; 18+ messages in thread
From: Yann E. MORIN @ 2024-09-21 18:49 UTC (permalink / raw)
  To: Peter Korsgaard; +Cc: buildroot

Peter, All,

On 2024-09-20 23:08 +0200, Peter Korsgaard spake thusly:
> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>

Whole series applied to master, thanks.

Regards,
Yann E. MORIN.

> ---
>  support/dependencies/dependencies.sh | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/support/dependencies/dependencies.sh b/support/dependencies/dependencies.sh
> index 6d5fc36037..fb0defd0c9 100755
> --- a/support/dependencies/dependencies.sh
> +++ b/support/dependencies/dependencies.sh
> @@ -143,7 +143,7 @@ fi
>  
>  # Check bash
>  # We only check bash is available, setting SHELL appropriately is done
> -# in the top-level Makefile, and we mimick the same sequence here
> +# in the top-level Makefile, and we mimic the same sequence here
>  if   [ -n "${BASH}" ]; then :
>  elif [ -x /bin/bash ]; then :
>  elif [ -z "$( sh -c 'echo $BASH' )" ]; then
> -- 
> 2.39.2
> 
> _______________________________________________
> buildroot mailing list
> buildroot@buildroot.org
> https://lists.buildroot.org/mailman/listinfo/buildroot

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 561 099 427 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 18+ messages in thread

end of thread, other threads:[~2024-09-21 18:49 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-09-20 21:08 [Buildroot] [PATCH 01/17] support/dependencies/dependencies.sh: fix 'mimic' typo Peter Korsgaard
2024-09-20 21:08 ` [Buildroot] [PATCH 02/17] support/kconfig: fix 'multiple' typo in patch description Peter Korsgaard
2024-09-20 21:08 ` [Buildroot] [PATCH 03/17] support/misc/Buildroot.cmake: fix 'after all' typo Peter Korsgaard
2024-09-20 21:08 ` [Buildroot] [PATCH 04/17] support/misc/utils.mk: fix typos Peter Korsgaard
2024-09-20 21:08 ` [Buildroot] [PATCH 05/17] support/scripts/cve.py: fix 'useful' typo Peter Korsgaard
2024-09-20 21:08 ` [Buildroot] [PATCH 06/17] support/scripts/graph-build-time: fix 'auxiliary' typo Peter Korsgaard
2024-09-20 21:08 ` [Buildroot] [PATCH 07/17] support/scripts/pkg-stats: fix 'dictionary' typo Peter Korsgaard
2024-09-20 21:08 ` [Buildroot] [PATCH 08/17] support/testing/tests/init/test_systemd.py: fix 'on top' typo Peter Korsgaard
2024-09-20 21:08 ` [Buildroot] [PATCH 09/17] support/testing/tests/package/test_acpica.py: fix typos in comments Peter Korsgaard
2024-09-20 21:08 ` [Buildroot] [PATCH 10/17] support/testing/tests/package/test_bash.py: fix 'running' typo Peter Korsgaard
2024-09-20 21:08 ` [Buildroot] [PATCH 11/17] support/testing/tests/package/test_compressor_base.py: fix 'extension' typo Peter Korsgaard
2024-09-20 21:08 ` [Buildroot] [PATCH 12/17] support/testing/tests/package/test_cryptsetup.py: fix 'encrypted' typo Peter Korsgaard
2024-09-20 21:08 ` [Buildroot] [PATCH 13/17] support/testing/tests/package/test_ddrescue.py: fix 'normally' typo Peter Korsgaard
2024-09-20 21:08 ` [Buildroot] [PATCH 14/17] support/testing/tests/package/test_iptables.py: fix 'OUTPUT' typo Peter Korsgaard
2024-09-20 21:08 ` [Buildroot] [PATCH 15/17] support/testing/tests/package/test_micropython.py: fix 'returned' typo Peter Korsgaard
2024-09-20 21:08 ` [Buildroot] [PATCH 16/17] support/testing/tests/package/test_mtools.py: fix 'unformatted' typo Peter Korsgaard
2024-09-20 21:08 ` [Buildroot] [PATCH 17/17] support/testing/tests/package/test_weston/overlay/etc/weston.ini: fix 'independent' typo Peter Korsgaard
2024-09-21 18:49 ` [Buildroot] [PATCH 01/17] support/dependencies/dependencies.sh: fix 'mimic' typo Yann E. MORIN

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.