Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 01/27] package/imx-mkimage: update codeaurora URLs to github
@ 2022-12-29 19:47 Julien Olivain
  2022-12-29 19:47 ` [Buildroot] [PATCH 02/27] package/fmc: " Julien Olivain
                   ` (18 more replies)
  0 siblings, 19 replies; 58+ messages in thread
From: Julien Olivain @ 2022-12-29 19:47 UTC (permalink / raw)
  To: buildroot
  Cc: Bernd Kuhls, Gary Bisson, Jérôme Pouiller, Gilles Talis,
	Refik Tuzakli, Julien Olivain, Erik Larsson, Fabrice Goucem,
	Stephane Viau, Fabio Estevam, Matt Weber

NXP moved all its open source code repositories from Code Aurora Forum
to github. See for example:
https://github.com/nxp-imx/meta-imx/commit/39bc4d81969a40e0da660519cf4ed083b9c53097

Software packages are now grouped in several NXP github
projects/organizations (nxp-imx, nxp-qoriq, ...). See:
https://www.nxp.com/design/software/embedded-software/nxp-github:NXP-GITHUB

The NXP code published on Code Aurora is still present (at the time of
this commit) but is no longer receiving updates. It is also expected
to be shut down on 2023-03-31. The Code Aurora website
https://source.codeaurora.org/ currently show the following message:
"""
Note: Qualcomm Innovation Center Inc. maintained repositories have
migrated to git.codelinaro.org. QUIC repositories on this site will
not receive any updates after March 31, 2022, and will be deleted on
March 31, 2023. If your project depends on these repositories, please
adjust your tooling configuration to use the new, up-to-date project
location.
"""

For this reason, the NXP recipes using codeaurora.org urls need to be
updated to the correct github.com replacement.

Note: this commit does not change the component version. Only the
download URL is updated. The archive content is expected to be the
same.

Note 2: the _SITE_METHOD is also changed from "git" to the default
"wget", for faster downloads. This is why the package hash has
changed.

Signed-off-by: Julien Olivain <ju.o@free.fr>
---
 package/imx-mkimage/Config.in.host   | 2 +-
 package/imx-mkimage/imx-mkimage.hash | 2 +-
 package/imx-mkimage/imx-mkimage.mk   | 3 +--
 3 files changed, 3 insertions(+), 4 deletions(-)

diff --git a/package/imx-mkimage/Config.in.host b/package/imx-mkimage/Config.in.host
index 8d273557a1..09df2a3c29 100644
--- a/package/imx-mkimage/Config.in.host
+++ b/package/imx-mkimage/Config.in.host
@@ -4,4 +4,4 @@ config BR2_PACKAGE_HOST_IMX_MKIMAGE
 	  imx-mkimage is used to combine input images and generate
 	  final boot image with appropriate IVT set.
 
-	  https://source.codeaurora.org/external/imx/imx-mkimage
+	  https://github.com/nxp-imx/imx-mkimage
diff --git a/package/imx-mkimage/imx-mkimage.hash b/package/imx-mkimage/imx-mkimage.hash
index 81d99a5d1c..8346fd64b1 100644
--- a/package/imx-mkimage/imx-mkimage.hash
+++ b/package/imx-mkimage/imx-mkimage.hash
@@ -1,3 +1,3 @@
 # Locally calculated
-sha256  769b3d7376a1f7107ce2958a1babe361bfd29e2cbfbe47eeb2911acc460058e5  imx-mkimage-lf-5.10.72_2.2.0-br1.tar.gz
+sha256  593bd94aac027844bc58c62aae55557c14e1f8a99e68ba235a46f083759df3d4  imx-mkimage-lf-5.10.72_2.2.0.tar.gz
 sha256  231f7edcc7352d7734a96eef0b8030f77982678c516876fcb81e25b32d68564c  COPYING
diff --git a/package/imx-mkimage/imx-mkimage.mk b/package/imx-mkimage/imx-mkimage.mk
index 0bfca72504..54c948e0d3 100644
--- a/package/imx-mkimage/imx-mkimage.mk
+++ b/package/imx-mkimage/imx-mkimage.mk
@@ -5,8 +5,7 @@
 ################################################################################
 
 IMX_MKIMAGE_VERSION = lf-5.10.72_2.2.0
-IMX_MKIMAGE_SITE = https://source.codeaurora.org/external/imx/imx-mkimage
-IMX_MKIMAGE_SITE_METHOD = git
+IMX_MKIMAGE_SITE = $(call github,nxp-imx,imx-mkimage,$(IMX_MKIMAGE_VERSION))
 IMX_MKIMAGE_LICENSE = GPL-2.0+
 IMX_MKIMAGE_LICENSE_FILES = COPYING
 HOST_IMX_MKIMAGE_DEPENDENCIES = host-zlib
-- 
2.39.0

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

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

end of thread, other threads:[~2023-01-04 11:32 UTC | newest]

Thread overview: 58+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-12-29 19:47 [Buildroot] [PATCH 01/27] package/imx-mkimage: update codeaurora URLs to github Julien Olivain
2022-12-29 19:47 ` [Buildroot] [PATCH 02/27] package/fmc: " Julien Olivain
2023-01-04 11:26   ` Peter Korsgaard
2022-12-29 19:47 ` [Buildroot] [PATCH 03/27] package/fmlib: " Julien Olivain
2023-01-04 11:26   ` Peter Korsgaard
2022-12-29 19:47 ` [Buildroot] [PATCH 04/27] package/freescale-imx/imx-alsa-plugins: " Julien Olivain
2023-01-04 11:26   ` Peter Korsgaard
2022-12-29 19:47 ` [Buildroot] [PATCH 05/27] package/freescale-imx/imx-kobs: update to NXPmicro github organization Julien Olivain
2023-01-04 11:26   ` Peter Korsgaard
2022-12-29 19:47 ` [Buildroot] [PATCH 06/27] package/freescale-imx/imx-lib: update codeaurora URLs to github Julien Olivain
2023-01-04 11:26   ` Peter Korsgaard
2022-12-29 19:47 ` [Buildroot] [PATCH 07/27] package/freescale-imx/imx-m4fwloader: update URLs to NXPmicro github organization Julien Olivain
2023-01-04 11:27   ` Peter Korsgaard
2022-12-29 19:47 ` [Buildroot] [PATCH 08/27] package/mfgtools: " Julien Olivain
2023-01-04 11:27   ` Peter Korsgaard
2022-12-29 19:47 ` [Buildroot] [PATCH 09/27] package/qoriq-rcw: update codeaurora URLs to github Julien Olivain
2022-12-31 11:04   ` François Perrad
2023-01-04 11:27   ` Peter Korsgaard
2022-12-29 19:47 ` [Buildroot] [PATCH 10/27] package/x11r7/xdriver_xf86-video-imx-viv: " Julien Olivain
2023-01-04 11:27   ` Peter Korsgaard
2022-12-29 19:47 ` [Buildroot] [PATCH 11/27] configs/freescale_imx6dlsabreauto: " Julien Olivain
2023-01-04 11:27   ` Peter Korsgaard
2022-12-29 19:47 ` [Buildroot] [PATCH 12/27] configs/freescale_imx6dlsabresd: " Julien Olivain
2023-01-04 11:28   ` Peter Korsgaard
2022-12-29 19:47 ` [Buildroot] [PATCH 13/27] configs/freescale_imx6qsabreauto: " Julien Olivain
2023-01-04 11:28   ` Peter Korsgaard
2022-12-29 19:47 ` [Buildroot] [PATCH 14/27] configs/freescale_imx6qsabresd: " Julien Olivain
2023-01-04 11:28   ` Peter Korsgaard
2022-12-29 20:08 ` [Buildroot] [PATCH 15/27] configs/freescale_imx6sxsabresd: " Julien Olivain
2022-12-29 20:42   ` Fabio Estevam
2023-01-04 11:28   ` Peter Korsgaard
2022-12-29 21:23 ` [Buildroot] [PATCH 16/27] configs/freescale_imx6ullevk: " Julien Olivain
2022-12-29 21:23   ` [Buildroot] [PATCH 17/27] configs/freescale_imx7dsabresd: " Julien Olivain
2023-01-04 11:28     ` Peter Korsgaard
2022-12-29 21:23   ` [Buildroot] [PATCH 18/27] configs/freescale_imx8mqevk: " Julien Olivain
2023-01-04 11:28     ` Peter Korsgaard
2023-01-04 11:28   ` [Buildroot] [PATCH 16/27] configs/freescale_imx6ullevk: " Peter Korsgaard
2022-12-29 22:25 ` [Buildroot] [PATCH 19/27] configs/freescale_imx8mpevk: " Julien Olivain
2022-12-29 22:25   ` [Buildroot] [PATCH 20/27] configs/freescale_imx8mnevk: " Julien Olivain
2023-01-04 11:29     ` Peter Korsgaard
2022-12-29 22:25   ` [Buildroot] [PATCH 21/27] configs/freescale_imx8mmevk: " Julien Olivain
2023-01-04 11:29     ` Peter Korsgaard
2023-01-04 11:28   ` [Buildroot] [PATCH 19/27] configs/freescale_imx8mpevk: " Peter Korsgaard
2022-12-30  9:57 ` [Buildroot] [PATCH 22/27] configs/freescale_imx8qmmek: " Julien Olivain
2022-12-30  9:57   ` [Buildroot] [PATCH 23/27] configs/freescale_imx8qxpmek: " Julien Olivain
2023-01-04 11:29     ` Peter Korsgaard
2022-12-30  9:57   ` [Buildroot] [PATCH 24/27] configs/imx8mmpico: " Julien Olivain
2023-01-04 11:29     ` Peter Korsgaard
2022-12-30  9:57   ` [Buildroot] [PATCH 25/27] configs/imx8mpico: " Julien Olivain
2023-01-04 11:29     ` Peter Korsgaard
2022-12-30  9:57   ` [Buildroot] [PATCH 26/27] configs/imx8mqevk: " Julien Olivain
2023-01-04 11:29     ` Peter Korsgaard
2022-12-30  9:57   ` [Buildroot] [PATCH 27/27] configs/ls1028ardb: " Julien Olivain
2022-12-31 11:04     ` François Perrad
2023-01-04 11:30     ` Peter Korsgaard
2023-01-04 11:29   ` [Buildroot] [PATCH 22/27] configs/freescale_imx8qmmek: " Peter Korsgaard
2022-12-31 16:35 ` [Buildroot] [PATCH 01/27] package/imx-mkimage: " Yann E. MORIN
2023-01-04 11:26 ` Peter Korsgaard

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