Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/4] support/testing: add mtd test
@ 2024-05-29 20:24 Brandon Maier via buildroot
  2024-05-29 20:24 ` [Buildroot] [PATCH 2/4] package/mtd: switch to https mirror Brandon Maier via buildroot
                   ` (4 more replies)
  0 siblings, 5 replies; 11+ messages in thread
From: Brandon Maier via buildroot @ 2024-05-29 20:24 UTC (permalink / raw)
  To: buildroot; +Cc: Brandon Maier

Signed-off-by: Brandon Maier <brandon.maier@collins.com>
---
 support/testing/tests/package/test_mtd.py | 48 +++++++++++++++++++++++
 1 file changed, 48 insertions(+)
 create mode 100644 support/testing/tests/package/test_mtd.py

diff --git a/support/testing/tests/package/test_mtd.py b/support/testing/tests/package/test_mtd.py
new file mode 100644
index 0000000000..0871ab6457
--- /dev/null
+++ b/support/testing/tests/package/test_mtd.py
@@ -0,0 +1,48 @@
+import os
+
+import infra.basetest
+
+
+class TestMtd(infra.basetest.BRTest):
+    config = infra.basetest.BASIC_TOOLCHAIN_CONFIG + \
+        """
+        BR2_ENABLE_LOCALE_WHITELIST=""
+        BR2_PACKAGE_MTD=y
+        # BR2_TARGET_ROOTFS_TAR is not set
+        BR2_TARGET_ROOTFS_CPIO=y
+        """
+
+    def test_run(self):
+        cpio_file = os.path.join(self.builddir, "images", "rootfs.cpio")
+        self.emulator.boot(arch="armv7",
+                           kernel="builtin",
+                           options=["-initrd", cpio_file])
+
+        self.emulator.login()
+
+        mtd = "/dev/mtd0"
+        erasesize = 256 * 1024
+        test_sectors = 4
+        test_size = erasesize * test_sectors
+
+        output, exit_code = self.emulator.run(f"mtd_debug info {mtd}")
+        output = [x.strip() for x in output if x.strip()]
+        self.assertEqual(output, [
+            "mtd.type = MTD_NORFLASH",
+            "mtd.flags = MTD_CAP_NORFLASH",
+            "mtd.size = 134217728 (128M)",
+            "mtd.erasesize = 262144 (256K)",
+            "mtd.writesize = 1",
+            "mtd.oobsize = 0",
+            "regions = 0",
+        ])
+
+        # Test flashcp
+        self.assertRunOk(f"dd if=/dev/urandom of=random.bin bs={test_size} count=1")
+        self.assertRunOk(f"flashcp random.bin {mtd}")
+        self.assertRunOk(f"cmp -s -n {test_size} random.bin {mtd}")
+
+        # Test flash_erase
+        self.assertRunOk(f"dd if=/dev/zero bs={test_size} count=1 | tr '\\000' '\\377' >nor-erase.bin")
+        self.assertRunOk(f"flash_erase {mtd} 0 {test_sectors}")
+        self.assertRunOk(f"cmp -s -n {test_size} nor-erase.bin {mtd}")
-- 
2.45.1

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

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

* [Buildroot] [PATCH 2/4] package/mtd: switch to https mirror
  2024-05-29 20:24 [Buildroot] [PATCH 1/4] support/testing: add mtd test Brandon Maier via buildroot
@ 2024-05-29 20:24 ` Brandon Maier via buildroot
  2024-06-01 19:37   ` Yann E. MORIN
  2024-06-08 16:56   ` Peter Korsgaard
  2024-05-29 20:24 ` [Buildroot] [PATCH 3/4] package/mtd: bump to version 2.2.0 Brandon Maier via buildroot
                   ` (3 subsequent siblings)
  4 siblings, 2 replies; 11+ messages in thread
From: Brandon Maier via buildroot @ 2024-05-29 20:24 UTC (permalink / raw)
  To: buildroot; +Cc: Brandon Maier

As mentioned in the last release notes, there is an https mirror[1].
Switch to this as ftp is not as widely supported anymore.

[1] https://lists.infradead.org/pipermail/linux-mtd/2023-August/100922.html

Signed-off-by: Brandon Maier <brandon.maier@collins.com>
---
 package/mtd/mtd.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/mtd/mtd.mk b/package/mtd/mtd.mk
index 998cc419b3..39b9f2a523 100644
--- a/package/mtd/mtd.mk
+++ b/package/mtd/mtd.mk
@@ -6,7 +6,7 @@
 
 MTD_VERSION = 2.1.6
 MTD_SOURCE = mtd-utils-$(MTD_VERSION).tar.bz2
-MTD_SITE = ftp://ftp.infradead.org/pub/mtd-utils
+MTD_SITE = https://infraroot.at/pub/mtd
 MTD_LICENSE = GPL-2.0
 MTD_LICENSE_FILES = COPYING
 MTD_CPE_ID_VENDOR = mtd-utils_project
-- 
2.45.1

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

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

* [Buildroot] [PATCH 3/4] package/mtd: bump to version 2.2.0
  2024-05-29 20:24 [Buildroot] [PATCH 1/4] support/testing: add mtd test Brandon Maier via buildroot
  2024-05-29 20:24 ` [Buildroot] [PATCH 2/4] package/mtd: switch to https mirror Brandon Maier via buildroot
@ 2024-05-29 20:24 ` Brandon Maier via buildroot
  2024-06-01 19:37   ` Yann E. MORIN
  2024-05-29 20:24 ` [Buildroot] [PATCH 4/4] DEVELOPERS: add myself for package/mtd Brandon Maier via buildroot
                   ` (2 subsequent siblings)
  4 siblings, 1 reply; 11+ messages in thread
From: Brandon Maier via buildroot @ 2024-05-29 20:24 UTC (permalink / raw)
  To: buildroot; +Cc: Brandon Maier

https://lists.infradead.org/pipermail/linux-mtd/2024-March/104058.html

Signed-off-by: Brandon Maier <brandon.maier@collins.com>
---
 package/mtd/mtd.hash | 4 ++--
 package/mtd/mtd.mk   | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/package/mtd/mtd.hash b/package/mtd/mtd.hash
index 9926a34a80..1efb06f490 100644
--- a/package/mtd/mtd.hash
+++ b/package/mtd/mtd.hash
@@ -1,4 +1,4 @@
 # Locally calculated after checking pgp signature
-# https://infraroot.at/pub/mtd/mtd-utils-2.1.6.tar.bz2.asc
-sha256  c1d853bc4adf83bcabd2792fc95af33bdd8643c97e8f7b3f0180af36af76f0e5  mtd-utils-2.1.6.tar.bz2
+# https://infraroot.at/pub/mtd/mtd-utils-2.2.0.tar.bz2.asc
+sha256  250d082f67375ca8451b5fcfc9a23a53ced3ebebd8312c288daf2507bbab1324  mtd-utils-2.2.0.tar.bz2
 sha256  dcc100d4161cc0b7177545ab6e47216f84857cda3843847c792a25289852dcaa  COPYING
diff --git a/package/mtd/mtd.mk b/package/mtd/mtd.mk
index 39b9f2a523..a20e00e9da 100644
--- a/package/mtd/mtd.mk
+++ b/package/mtd/mtd.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-MTD_VERSION = 2.1.6
+MTD_VERSION = 2.2.0
 MTD_SOURCE = mtd-utils-$(MTD_VERSION).tar.bz2
 MTD_SITE = https://infraroot.at/pub/mtd
 MTD_LICENSE = GPL-2.0
-- 
2.45.1

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

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

* [Buildroot] [PATCH 4/4] DEVELOPERS: add myself for package/mtd
  2024-05-29 20:24 [Buildroot] [PATCH 1/4] support/testing: add mtd test Brandon Maier via buildroot
  2024-05-29 20:24 ` [Buildroot] [PATCH 2/4] package/mtd: switch to https mirror Brandon Maier via buildroot
  2024-05-29 20:24 ` [Buildroot] [PATCH 3/4] package/mtd: bump to version 2.2.0 Brandon Maier via buildroot
@ 2024-05-29 20:24 ` Brandon Maier via buildroot
  2024-06-01 19:37   ` Yann E. MORIN
  2024-06-08 16:56   ` Peter Korsgaard
  2024-06-01 19:36 ` [Buildroot] [PATCH 1/4] support/testing: add mtd test Yann E. MORIN
  2024-06-08 16:56 ` Peter Korsgaard
  4 siblings, 2 replies; 11+ messages in thread
From: Brandon Maier via buildroot @ 2024-05-29 20:24 UTC (permalink / raw)
  To: buildroot; +Cc: Brandon Maier

Signed-off-by: Brandon Maier <brandon.maier@collins.com>
---
 DEVELOPERS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/DEVELOPERS b/DEVELOPERS
index 52c9b84a9d..cc9f3b7165 100644
--- a/DEVELOPERS
+++ b/DEVELOPERS
@@ -544,6 +544,7 @@ F:	configs/ls1046a-frwy_defconfig
 F:	package/bats-assert/
 F:	package/bats-file/
 F:	package/bats-support/
+F:	package/mtd/
 F:	package/python-pysensors/
 F:	package/qoriq-fm-ucode/
 F:	package/unifdef/
-- 
2.45.1

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

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

* Re: [Buildroot] [PATCH 1/4] support/testing: add mtd test
  2024-05-29 20:24 [Buildroot] [PATCH 1/4] support/testing: add mtd test Brandon Maier via buildroot
                   ` (2 preceding siblings ...)
  2024-05-29 20:24 ` [Buildroot] [PATCH 4/4] DEVELOPERS: add myself for package/mtd Brandon Maier via buildroot
@ 2024-06-01 19:36 ` Yann E. MORIN
  2024-06-08 16:56 ` Peter Korsgaard
  4 siblings, 0 replies; 11+ messages in thread
From: Yann E. MORIN @ 2024-06-01 19:36 UTC (permalink / raw)
  To: Brandon Maier; +Cc: buildroot

Brandon, All,

On 2024-05-29 20:24 +0000, Brandon Maier via buildroot spake thusly:
> Signed-off-by: Brandon Maier <brandon.maier@collins.com>

I've dropped the BR2_ENABLE_LOCALE_WHITELIST seting, because it is not
needed.

Applied to master, thanks.

Regards,
Yann E. MORIN.

> ---
>  support/testing/tests/package/test_mtd.py | 48 +++++++++++++++++++++++
>  1 file changed, 48 insertions(+)
>  create mode 100644 support/testing/tests/package/test_mtd.py
> 
> diff --git a/support/testing/tests/package/test_mtd.py b/support/testing/tests/package/test_mtd.py
> new file mode 100644
> index 0000000000..0871ab6457
> --- /dev/null
> +++ b/support/testing/tests/package/test_mtd.py
> @@ -0,0 +1,48 @@
> +import os
> +
> +import infra.basetest
> +
> +
> +class TestMtd(infra.basetest.BRTest):
> +    config = infra.basetest.BASIC_TOOLCHAIN_CONFIG + \
> +        """
> +        BR2_ENABLE_LOCALE_WHITELIST=""
> +        BR2_PACKAGE_MTD=y
> +        # BR2_TARGET_ROOTFS_TAR is not set
> +        BR2_TARGET_ROOTFS_CPIO=y
> +        """
> +
> +    def test_run(self):
> +        cpio_file = os.path.join(self.builddir, "images", "rootfs.cpio")
> +        self.emulator.boot(arch="armv7",
> +                           kernel="builtin",
> +                           options=["-initrd", cpio_file])
> +
> +        self.emulator.login()
> +
> +        mtd = "/dev/mtd0"
> +        erasesize = 256 * 1024
> +        test_sectors = 4
> +        test_size = erasesize * test_sectors
> +
> +        output, exit_code = self.emulator.run(f"mtd_debug info {mtd}")
> +        output = [x.strip() for x in output if x.strip()]
> +        self.assertEqual(output, [
> +            "mtd.type = MTD_NORFLASH",
> +            "mtd.flags = MTD_CAP_NORFLASH",
> +            "mtd.size = 134217728 (128M)",
> +            "mtd.erasesize = 262144 (256K)",
> +            "mtd.writesize = 1",
> +            "mtd.oobsize = 0",
> +            "regions = 0",
> +        ])
> +
> +        # Test flashcp
> +        self.assertRunOk(f"dd if=/dev/urandom of=random.bin bs={test_size} count=1")
> +        self.assertRunOk(f"flashcp random.bin {mtd}")
> +        self.assertRunOk(f"cmp -s -n {test_size} random.bin {mtd}")
> +
> +        # Test flash_erase
> +        self.assertRunOk(f"dd if=/dev/zero bs={test_size} count=1 | tr '\\000' '\\377' >nor-erase.bin")
> +        self.assertRunOk(f"flash_erase {mtd} 0 {test_sectors}")
> +        self.assertRunOk(f"cmp -s -n {test_size} nor-erase.bin {mtd}")
> -- 
> 2.45.1
> 
> _______________________________________________
> 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] 11+ messages in thread

* Re: [Buildroot] [PATCH 2/4] package/mtd: switch to https mirror
  2024-05-29 20:24 ` [Buildroot] [PATCH 2/4] package/mtd: switch to https mirror Brandon Maier via buildroot
@ 2024-06-01 19:37   ` Yann E. MORIN
  2024-06-08 16:56   ` Peter Korsgaard
  1 sibling, 0 replies; 11+ messages in thread
From: Yann E. MORIN @ 2024-06-01 19:37 UTC (permalink / raw)
  To: Brandon Maier; +Cc: buildroot

Brandon, All,

On 2024-05-29 20:24 +0000, Brandon Maier via buildroot spake thusly:
> As mentioned in the last release notes, there is an https mirror[1].
> Switch to this as ftp is not as widely supported anymore.
> 
> [1] https://lists.infradead.org/pipermail/linux-mtd/2023-August/100922.html
> 
> Signed-off-by: Brandon Maier <brandon.maier@collins.com>

Applied to master, thanks.

Regards,
Yann E. MORIN.

> ---
>  package/mtd/mtd.mk | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/package/mtd/mtd.mk b/package/mtd/mtd.mk
> index 998cc419b3..39b9f2a523 100644
> --- a/package/mtd/mtd.mk
> +++ b/package/mtd/mtd.mk
> @@ -6,7 +6,7 @@
>  
>  MTD_VERSION = 2.1.6
>  MTD_SOURCE = mtd-utils-$(MTD_VERSION).tar.bz2
> -MTD_SITE = ftp://ftp.infradead.org/pub/mtd-utils
> +MTD_SITE = https://infraroot.at/pub/mtd
>  MTD_LICENSE = GPL-2.0
>  MTD_LICENSE_FILES = COPYING
>  MTD_CPE_ID_VENDOR = mtd-utils_project
> -- 
> 2.45.1
> 
> _______________________________________________
> 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] 11+ messages in thread

* Re: [Buildroot] [PATCH 3/4] package/mtd: bump to version 2.2.0
  2024-05-29 20:24 ` [Buildroot] [PATCH 3/4] package/mtd: bump to version 2.2.0 Brandon Maier via buildroot
@ 2024-06-01 19:37   ` Yann E. MORIN
  0 siblings, 0 replies; 11+ messages in thread
From: Yann E. MORIN @ 2024-06-01 19:37 UTC (permalink / raw)
  To: Brandon Maier; +Cc: buildroot

Brandon, all,

On 2024-05-29 20:24 +0000, Brandon Maier via buildroot spake thusly:
> https://lists.infradead.org/pipermail/linux-mtd/2024-March/104058.html
> 
> Signed-off-by: Brandon Maier <brandon.maier@collins.com>

Applied to next, thanks.

Regards,
Yann E. MORIN.

> ---
>  package/mtd/mtd.hash | 4 ++--
>  package/mtd/mtd.mk   | 2 +-
>  2 files changed, 3 insertions(+), 3 deletions(-)
> 
> diff --git a/package/mtd/mtd.hash b/package/mtd/mtd.hash
> index 9926a34a80..1efb06f490 100644
> --- a/package/mtd/mtd.hash
> +++ b/package/mtd/mtd.hash
> @@ -1,4 +1,4 @@
>  # Locally calculated after checking pgp signature
> -# https://infraroot.at/pub/mtd/mtd-utils-2.1.6.tar.bz2.asc
> -sha256  c1d853bc4adf83bcabd2792fc95af33bdd8643c97e8f7b3f0180af36af76f0e5  mtd-utils-2.1.6.tar.bz2
> +# https://infraroot.at/pub/mtd/mtd-utils-2.2.0.tar.bz2.asc
> +sha256  250d082f67375ca8451b5fcfc9a23a53ced3ebebd8312c288daf2507bbab1324  mtd-utils-2.2.0.tar.bz2
>  sha256  dcc100d4161cc0b7177545ab6e47216f84857cda3843847c792a25289852dcaa  COPYING
> diff --git a/package/mtd/mtd.mk b/package/mtd/mtd.mk
> index 39b9f2a523..a20e00e9da 100644
> --- a/package/mtd/mtd.mk
> +++ b/package/mtd/mtd.mk
> @@ -4,7 +4,7 @@
>  #
>  ################################################################################
>  
> -MTD_VERSION = 2.1.6
> +MTD_VERSION = 2.2.0
>  MTD_SOURCE = mtd-utils-$(MTD_VERSION).tar.bz2
>  MTD_SITE = https://infraroot.at/pub/mtd
>  MTD_LICENSE = GPL-2.0
> -- 
> 2.45.1
> 
> _______________________________________________
> 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] 11+ messages in thread

* Re: [Buildroot] [PATCH 4/4] DEVELOPERS: add myself for package/mtd
  2024-05-29 20:24 ` [Buildroot] [PATCH 4/4] DEVELOPERS: add myself for package/mtd Brandon Maier via buildroot
@ 2024-06-01 19:37   ` Yann E. MORIN
  2024-06-08 16:56   ` Peter Korsgaard
  1 sibling, 0 replies; 11+ messages in thread
From: Yann E. MORIN @ 2024-06-01 19:37 UTC (permalink / raw)
  To: Brandon Maier; +Cc: buildroot

Brandon, All,

On 2024-05-29 20:24 +0000, Brandon Maier via buildroot spake thusly:
> Signed-off-by: Brandon Maier <brandon.maier@collins.com>

Applied to master, thanks.

Regards,
Yann E. MORIN.

> ---
>  DEVELOPERS | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/DEVELOPERS b/DEVELOPERS
> index 52c9b84a9d..cc9f3b7165 100644
> --- a/DEVELOPERS
> +++ b/DEVELOPERS
> @@ -544,6 +544,7 @@ F:	configs/ls1046a-frwy_defconfig
>  F:	package/bats-assert/
>  F:	package/bats-file/
>  F:	package/bats-support/
> +F:	package/mtd/
>  F:	package/python-pysensors/
>  F:	package/qoriq-fm-ucode/
>  F:	package/unifdef/
> -- 
> 2.45.1
> 
> _______________________________________________
> 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] 11+ messages in thread

* Re: [Buildroot] [PATCH 1/4] support/testing: add mtd test
  2024-05-29 20:24 [Buildroot] [PATCH 1/4] support/testing: add mtd test Brandon Maier via buildroot
                   ` (3 preceding siblings ...)
  2024-06-01 19:36 ` [Buildroot] [PATCH 1/4] support/testing: add mtd test Yann E. MORIN
@ 2024-06-08 16:56 ` Peter Korsgaard
  4 siblings, 0 replies; 11+ messages in thread
From: Peter Korsgaard @ 2024-06-08 16:56 UTC (permalink / raw)
  To: Brandon Maier via buildroot; +Cc: Brandon Maier

>>>>> "Brandon" == Brandon Maier via buildroot <buildroot@buildroot.org> writes:

 > Signed-off-by: Brandon Maier <brandon.maier@collins.com>

Committed to 2024.02.x, thanks.

-- 
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 2/4] package/mtd: switch to https mirror
  2024-05-29 20:24 ` [Buildroot] [PATCH 2/4] package/mtd: switch to https mirror Brandon Maier via buildroot
  2024-06-01 19:37   ` Yann E. MORIN
@ 2024-06-08 16:56   ` Peter Korsgaard
  1 sibling, 0 replies; 11+ messages in thread
From: Peter Korsgaard @ 2024-06-08 16:56 UTC (permalink / raw)
  To: Brandon Maier via buildroot; +Cc: Brandon Maier

>>>>> "Brandon" == Brandon Maier via buildroot <buildroot@buildroot.org> writes:

 > As mentioned in the last release notes, there is an https mirror[1].
 > Switch to this as ftp is not as widely supported anymore.

 > [1] https://lists.infradead.org/pipermail/linux-mtd/2023-August/100922.html

 > Signed-off-by: Brandon Maier <brandon.maier@collins.com>

Committed to 2024.02.x, thanks.

-- 
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 4/4] DEVELOPERS: add myself for package/mtd
  2024-05-29 20:24 ` [Buildroot] [PATCH 4/4] DEVELOPERS: add myself for package/mtd Brandon Maier via buildroot
  2024-06-01 19:37   ` Yann E. MORIN
@ 2024-06-08 16:56   ` Peter Korsgaard
  1 sibling, 0 replies; 11+ messages in thread
From: Peter Korsgaard @ 2024-06-08 16:56 UTC (permalink / raw)
  To: Brandon Maier via buildroot; +Cc: Brandon Maier

>>>>> "Brandon" == Brandon Maier via buildroot <buildroot@buildroot.org> writes:

 > Signed-off-by: Brandon Maier <brandon.maier@collins.com>

Committed to 2024.02.x, thanks.

> ---
 >  DEVELOPERS | 1 +
 >  1 file changed, 1 insertion(+)

 > diff --git a/DEVELOPERS b/DEVELOPERS
 > index 52c9b84a9d..cc9f3b7165 100644
 > --- a/DEVELOPERS
 > +++ b/DEVELOPERS
 > @@ -544,6 +544,7 @@ F:	configs/ls1046a-frwy_defconfig
 >  F:	package/bats-assert/
 >  F:	package/bats-file/
 >  F:	package/bats-support/
 > +F:	package/mtd/
 >  F:	package/python-pysensors/
 >  F:	package/qoriq-fm-ucode/
 >  F:	package/unifdef/
 > -- 

 > 2.45.1

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


-- 
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

end of thread, other threads:[~2024-06-08 16:56 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-05-29 20:24 [Buildroot] [PATCH 1/4] support/testing: add mtd test Brandon Maier via buildroot
2024-05-29 20:24 ` [Buildroot] [PATCH 2/4] package/mtd: switch to https mirror Brandon Maier via buildroot
2024-06-01 19:37   ` Yann E. MORIN
2024-06-08 16:56   ` Peter Korsgaard
2024-05-29 20:24 ` [Buildroot] [PATCH 3/4] package/mtd: bump to version 2.2.0 Brandon Maier via buildroot
2024-06-01 19:37   ` Yann E. MORIN
2024-05-29 20:24 ` [Buildroot] [PATCH 4/4] DEVELOPERS: add myself for package/mtd Brandon Maier via buildroot
2024-06-01 19:37   ` Yann E. MORIN
2024-06-08 16:56   ` Peter Korsgaard
2024-06-01 19:36 ` [Buildroot] [PATCH 1/4] support/testing: add mtd test Yann E. MORIN
2024-06-08 16:56 ` Peter Korsgaard

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox