* [Buildroot] [PATCH 02/27] package/fmc: update codeaurora URLs to github
2022-12-29 19:47 [Buildroot] [PATCH 01/27] package/imx-mkimage: update codeaurora URLs to github Julien Olivain
@ 2022-12-29 19:47 ` Julien Olivain
2023-01-04 11:26 ` Peter Korsgaard
2022-12-29 19:47 ` [Buildroot] [PATCH 03/27] package/fmlib: " Julien Olivain
` (17 subsequent siblings)
18 siblings, 1 reply; 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.
This commit also:
- changes the _SITE_METHOD from "git" to the default "wget",
- updates an old and broken freescale.com app note link,
- adds the github project page as project url.
Note: this commit does not change the component version. Only the
download URL is updated. The archive content is expected to be the
same. The version "fsl-sdk-v2.0" is an old tag from 2015. It was not
migrated to github. This commit use instead the commit id
corresponding to this tag.
See:
https://source.codeaurora.org/external/qoriq/qoriq-yocto-sdk/fmc/commit/?h=fsl-sdk-v2.0&id=a079d2c844edd85dff85a317a63198e7988bcd09
The commit id exists on github:
https://github.com/nxp-qoriq/fmc/commit/a079d2c844edd85dff85a317a63198e7988bcd09
Signed-off-by: Julien Olivain <ju.o@free.fr>
---
package/fmc/Config.in | 4 +++-
package/fmc/fmc.hash | 2 +-
package/fmc/fmc.mk | 5 ++---
3 files changed, 6 insertions(+), 5 deletions(-)
diff --git a/package/fmc/Config.in b/package/fmc/Config.in
index 4399aa2cab..c89a87c99e 100644
--- a/package/fmc/Config.in
+++ b/package/fmc/Config.in
@@ -21,5 +21,7 @@ config BR2_PACKAGE_FMC
packets flow into hardware configuration. The tool provides an
abstraction layer between the end customer's vision of the PCD
task definition and real hardware implementation.
+ See application note:
+ https://www.nxp.com/docs/en/application-note/AN4760.pdf
- http://cache.freescale.com/files/32bit/doc/app_note/AN4760.pdf
+ https://github.com/nxp-qoriq/fmc
diff --git a/package/fmc/fmc.hash b/package/fmc/fmc.hash
index fed33091cd..7309562b09 100644
--- a/package/fmc/fmc.hash
+++ b/package/fmc/fmc.hash
@@ -1,3 +1,3 @@
# Locally calculated
-sha256 cb896ec1fac2fe9a3a9bb8be2221b79acf5f9b75841609a681db0d9e7bec02a0 fmc-fsl-sdk-v2.0-br1.tar.gz
+sha256 e8594e37eb81e5b1f492f8494b98086f65180637b1e2e08d8a4475c23653a404 fmc-a079d2c844edd85dff85a317a63198e7988bcd09.tar.gz
sha256 f92862ceb95db5492f50a59d7c799c9395b714db88db92d11891dc0233e2ac42 COPYING
diff --git a/package/fmc/fmc.mk b/package/fmc/fmc.mk
index b385730138..6ac8c768df 100644
--- a/package/fmc/fmc.mk
+++ b/package/fmc/fmc.mk
@@ -4,9 +4,8 @@
#
################################################################################
-FMC_VERSION = fsl-sdk-v2.0
-FMC_SITE = https://source.codeaurora.org/external/qoriq/qoriq-yocto-sdk/fmc
-FMC_SITE_METHOD = git
+FMC_VERSION = a079d2c844edd85dff85a317a63198e7988bcd09
+FMC_SITE = $(call github,nxp-qoriq,fmc,$(FMC_VERSION))
FMC_LICENSE = MIT
FMC_LICENSE_FILES = COPYING
FMC_DEPENDENCIES = libxml2 tclap fmlib
--
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* Re: [Buildroot] [PATCH 02/27] package/fmc: update codeaurora URLs to github
2022-12-29 19:47 ` [Buildroot] [PATCH 02/27] package/fmc: " Julien Olivain
@ 2023-01-04 11:26 ` Peter Korsgaard
0 siblings, 0 replies; 58+ messages in thread
From: Peter Korsgaard @ 2023-01-04 11:26 UTC (permalink / raw)
To: Julien Olivain
Cc: Bernd Kuhls, Gary Bisson, Jérôme Pouiller, Gilles Talis,
Refik Tuzakli, Erik Larsson, Fabrice Goucem, Stephane Viau,
buildroot, Fabio Estevam, Matt Weber
>>>>> "Julien" == Julien Olivain <ju.o@free.fr> writes:
> 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.
> This commit also:
> - changes the _SITE_METHOD from "git" to the default "wget",
> - updates an old and broken freescale.com app note link,
> - adds the github project page as project url.
> Note: this commit does not change the component version. Only the
> download URL is updated. The archive content is expected to be the
> same. The version "fsl-sdk-v2.0" is an old tag from 2015. It was not
> migrated to github. This commit use instead the commit id
> corresponding to this tag.
> See:
> https://source.codeaurora.org/external/qoriq/qoriq-yocto-sdk/fmc/commit/?h=fsl-sdk-v2.0&id=a079d2c844edd85dff85a317a63198e7988bcd09
> The commit id exists on github:
> https://github.com/nxp-qoriq/fmc/commit/a079d2c844edd85dff85a317a63198e7988bcd09
> Signed-off-by: Julien Olivain <ju.o@free.fr>
Committed to 2022.11.x and 2022.02.x, thanks.
--
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 58+ messages in thread
* [Buildroot] [PATCH 03/27] package/fmlib: update codeaurora URLs to github
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
@ 2022-12-29 19:47 ` 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
` (16 subsequent siblings)
18 siblings, 1 reply; 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. The version fsl-sdk-v2.0 is an old tag from 2016. It was not
migrated to github. This commit use instead the commit id
corresponding to this tag.
See:
https://source.codeaurora.org/external/qoriq/qoriq-yocto-sdk/fmlib/commit/?h=fsl-sdk-v2.0&id=43fa98fdbf0c697167e415c3f060896d5b482791
The commit id exists on github:
https://github.com/nxp-qoriq/fmlib/commit/43fa98fdbf0c697167e415c3f060896d5b482791
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/fmlib/Config.in | 2 +-
package/fmlib/fmlib.hash | 2 +-
package/fmlib/fmlib.mk | 5 ++---
3 files changed, 4 insertions(+), 5 deletions(-)
diff --git a/package/fmlib/Config.in b/package/fmlib/Config.in
index 7bccfd7c83..97d55d1250 100644
--- a/package/fmlib/Config.in
+++ b/package/fmlib/Config.in
@@ -13,7 +13,7 @@ config BR2_PACKAGE_FMLIB
configure driver parameters and PCD (parse - classify -
distribute) rules.
- http://git.freescale.com/git/cgit.cgi/ppc/sdk/fmlib.git/tree/README
+ https://github.com/nxp-qoriq/fmlib
if BR2_PACKAGE_FMLIB
choice
diff --git a/package/fmlib/fmlib.hash b/package/fmlib/fmlib.hash
index 47460d091c..d4dcf3be5c 100644
--- a/package/fmlib/fmlib.hash
+++ b/package/fmlib/fmlib.hash
@@ -1,3 +1,3 @@
# Locally computed
-sha256 59415d346af1d22f510f2785be4c7e3606dc3181476a666e832270550f7d44a6 fmlib-fsl-sdk-v2.0-br1.tar.gz
+sha256 6e9e6bdb42dc2a6a76cfd756a2d4cdfcc2be90925c1f439e8a11eafa871896a6 fmlib-43fa98fdbf0c697167e415c3f060896d5b482791.tar.gz
sha256 837559e20d83910a005e7883b876cc5c42805fe4abcf7e5c5b3c8d036b7f61c8 COPYING
diff --git a/package/fmlib/fmlib.mk b/package/fmlib/fmlib.mk
index 8cb779201d..9509f3de56 100644
--- a/package/fmlib/fmlib.mk
+++ b/package/fmlib/fmlib.mk
@@ -4,9 +4,8 @@
#
################################################################################
-FMLIB_VERSION = fsl-sdk-v2.0
-FMLIB_SITE = https://source.codeaurora.org/external/qoriq/qoriq-yocto-sdk/fmlib
-FMLIB_SITE_METHOD = git
+FMLIB_VERSION = 43fa98fdbf0c697167e415c3f060896d5b482791
+FMLIB_SITE = $(call github,nxp-qoriq,fmlib,$(FMLIB_VERSION))
FMLIB_LICENSE = BSD-3-Clause, GPL-2.0+
FMLIB_LICENSE_FILES = COPYING
FMLIB_DEPENDENCIES = linux
--
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* Re: [Buildroot] [PATCH 03/27] package/fmlib: update codeaurora URLs to github
2022-12-29 19:47 ` [Buildroot] [PATCH 03/27] package/fmlib: " Julien Olivain
@ 2023-01-04 11:26 ` Peter Korsgaard
0 siblings, 0 replies; 58+ messages in thread
From: Peter Korsgaard @ 2023-01-04 11:26 UTC (permalink / raw)
To: Julien Olivain
Cc: Bernd Kuhls, Gary Bisson, Jérôme Pouiller, Gilles Talis,
Refik Tuzakli, Erik Larsson, Fabrice Goucem, Stephane Viau,
buildroot, Fabio Estevam, Matt Weber
>>>>> "Julien" == Julien Olivain <ju.o@free.fr> writes:
> 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. The version fsl-sdk-v2.0 is an old tag from 2016. It was not
> migrated to github. This commit use instead the commit id
> corresponding to this tag.
> See:
> https://source.codeaurora.org/external/qoriq/qoriq-yocto-sdk/fmlib/commit/?h=fsl-sdk-v2.0&id=43fa98fdbf0c697167e415c3f060896d5b482791
> The commit id exists on github:
> https://github.com/nxp-qoriq/fmlib/commit/43fa98fdbf0c697167e415c3f060896d5b482791
> 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>
Committed to 2022.11.x and 2022.02.x, thanks.
--
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 58+ messages in thread
* [Buildroot] [PATCH 04/27] package/freescale-imx/imx-alsa-plugins: update codeaurora URLs to github
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
2022-12-29 19:47 ` [Buildroot] [PATCH 03/27] package/fmlib: " Julien Olivain
@ 2022-12-29 19:47 ` 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
` (15 subsequent siblings)
18 siblings, 1 reply; 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.
Note 3: this commit also adds the github as project homepage in
Config.in.
Signed-off-by: Julien Olivain <ju.o@free.fr>
---
package/freescale-imx/imx-alsa-plugins/Config.in | 2 ++
package/freescale-imx/imx-alsa-plugins/imx-alsa-plugins.hash | 2 +-
package/freescale-imx/imx-alsa-plugins/imx-alsa-plugins.mk | 3 +--
3 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/package/freescale-imx/imx-alsa-plugins/Config.in b/package/freescale-imx/imx-alsa-plugins/Config.in
index ec9b5b19cf..df47edd16d 100644
--- a/package/freescale-imx/imx-alsa-plugins/Config.in
+++ b/package/freescale-imx/imx-alsa-plugins/Config.in
@@ -13,6 +13,8 @@ config BR2_PACKAGE_IMX_ALSA_PLUGINS
* Rate Converter Plugin Using Freescale ASRC Hardware
Resampler (i.MX53 and most i.MX6)
+ https://github.com/nxp-imx/imx-alsa-plugins
+
comment "imx-alsa-libs needs an imx-specific Linux kernel to be built"
depends on BR2_arm
depends on !BR2_LINUX_KERNEL
diff --git a/package/freescale-imx/imx-alsa-plugins/imx-alsa-plugins.hash b/package/freescale-imx/imx-alsa-plugins/imx-alsa-plugins.hash
index bb7beede9d..1ca7697f03 100644
--- a/package/freescale-imx/imx-alsa-plugins/imx-alsa-plugins.hash
+++ b/package/freescale-imx/imx-alsa-plugins/imx-alsa-plugins.hash
@@ -1,3 +1,3 @@
# Locally calculated:
-sha256 a9a5ef408a7329c2c5fa2a084ae7824afbfbebed68612bd72509488ccb0b94b3 imx-alsa-plugins-rel_imx_4.9.x_1.0.0_ga-br1.tar.gz
+sha256 089bba009f82bf5e4a1e34b77a7d3badce2948619d92bec7a7ad42e766442d4c imx-alsa-plugins-rel_imx_4.9.x_1.0.0_ga.tar.gz
sha256 32b1062f7da84967e7019d01ab805935caa7ab7321a7ced0e30ebe75e5df1670 COPYING.GPL
diff --git a/package/freescale-imx/imx-alsa-plugins/imx-alsa-plugins.mk b/package/freescale-imx/imx-alsa-plugins/imx-alsa-plugins.mk
index 9c81ff0df0..912cc7c68b 100644
--- a/package/freescale-imx/imx-alsa-plugins/imx-alsa-plugins.mk
+++ b/package/freescale-imx/imx-alsa-plugins/imx-alsa-plugins.mk
@@ -5,8 +5,7 @@
################################################################################
IMX_ALSA_PLUGINS_VERSION = rel_imx_4.9.x_1.0.0_ga
-IMX_ALSA_PLUGINS_SITE = https://source.codeaurora.org/external/imx/imx-alsa-plugins
-IMX_ALSA_PLUGINS_SITE_METHOD = git
+IMX_ALSA_PLUGINS_SITE = $(call github,nxp-imx,imx-alsa-plugins,$(IMX_ALSA_PLUGINS_VERSION))
IMX_ALSA_PLUGINS_LICENSE = GPL-2.0+
IMX_ALSA_PLUGINS_LICENSE_FILES = COPYING.GPL
IMX_ALSA_PLUGINS_DEPENDENCIES = host-pkgconf alsa-lib
--
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* Re: [Buildroot] [PATCH 04/27] package/freescale-imx/imx-alsa-plugins: update codeaurora URLs to github
2022-12-29 19:47 ` [Buildroot] [PATCH 04/27] package/freescale-imx/imx-alsa-plugins: " Julien Olivain
@ 2023-01-04 11:26 ` Peter Korsgaard
0 siblings, 0 replies; 58+ messages in thread
From: Peter Korsgaard @ 2023-01-04 11:26 UTC (permalink / raw)
To: Julien Olivain
Cc: Bernd Kuhls, Gary Bisson, Jérôme Pouiller, Gilles Talis,
Refik Tuzakli, Erik Larsson, Fabrice Goucem, Stephane Viau,
buildroot, Fabio Estevam, Matt Weber
>>>>> "Julien" == Julien Olivain <ju.o@free.fr> writes:
> 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.
> Note 3: this commit also adds the github as project homepage in
> Config.in.
> Signed-off-by: Julien Olivain <ju.o@free.fr>
Committed to 2022.11.x and 2022.02.x, thanks.
--
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 58+ messages in thread
* [Buildroot] [PATCH 05/27] package/freescale-imx/imx-kobs: update to NXPmicro github organization
2022-12-29 19:47 [Buildroot] [PATCH 01/27] package/imx-mkimage: update codeaurora URLs to github Julien Olivain
` (2 preceding siblings ...)
2022-12-29 19:47 ` [Buildroot] [PATCH 04/27] package/freescale-imx/imx-alsa-plugins: " Julien Olivain
@ 2022-12-29 19:47 ` 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
` (14 subsequent siblings)
18 siblings, 1 reply; 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
imx-kobs was removed from the github codeauroraforum organization.
It is now redirecting to NXPmicro. This patch updates the link to
directly point to the correct place.
The commit also replaces the Config.in comment saying the package does
not have an upstream by the github.com project page.
Signed-off-by: Julien Olivain <ju.o@free.fr>
---
package/freescale-imx/imx-kobs/Config.in | 3 +--
package/freescale-imx/imx-kobs/imx-kobs.mk | 2 +-
2 files changed, 2 insertions(+), 3 deletions(-)
diff --git a/package/freescale-imx/imx-kobs/Config.in b/package/freescale-imx/imx-kobs/Config.in
index 61be9f26d4..a81842b9a5 100644
--- a/package/freescale-imx/imx-kobs/Config.in
+++ b/package/freescale-imx/imx-kobs/Config.in
@@ -5,5 +5,4 @@ config BR2_PACKAGE_IMX_KOBS
The imx-kobs tool is used for writing images to NAND on i.MX
platforms.
- This library is provided by Freescale as-is and doesn't have
- an upstream.
+ https://github.com/NXPmicro/imx-kobs
diff --git a/package/freescale-imx/imx-kobs/imx-kobs.mk b/package/freescale-imx/imx-kobs/imx-kobs.mk
index d6a250cf72..91b39f6fa4 100644
--- a/package/freescale-imx/imx-kobs/imx-kobs.mk
+++ b/package/freescale-imx/imx-kobs/imx-kobs.mk
@@ -5,7 +5,7 @@
################################################################################
IMX_KOBS_VERSION = a0e9adce2fb7fcd57e794d7f9a5deba0f94f521b
-IMX_KOBS_SITE = $(call github,codeauroraforum,imx-kobs,$(IMX_KOBS_VERSION))
+IMX_KOBS_SITE = $(call github,NXPmicro,imx-kobs,$(IMX_KOBS_VERSION))
IMX_KOBS_LICENSE = GPL-2.0+
IMX_KOBS_LICENSE_FILES = COPYING
--
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* Re: [Buildroot] [PATCH 05/27] package/freescale-imx/imx-kobs: update to NXPmicro github organization
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
0 siblings, 0 replies; 58+ messages in thread
From: Peter Korsgaard @ 2023-01-04 11:26 UTC (permalink / raw)
To: Julien Olivain
Cc: Bernd Kuhls, Gary Bisson, Jérôme Pouiller, Gilles Talis,
Refik Tuzakli, Erik Larsson, Fabrice Goucem, Stephane Viau,
buildroot, Fabio Estevam, Matt Weber
>>>>> "Julien" == Julien Olivain <ju.o@free.fr> writes:
> imx-kobs was removed from the github codeauroraforum organization.
> It is now redirecting to NXPmicro. This patch updates the link to
> directly point to the correct place.
> The commit also replaces the Config.in comment saying the package does
> not have an upstream by the github.com project page.
> Signed-off-by: Julien Olivain <ju.o@free.fr>
Committed to 2022.11.x and 2022.02.x, thanks.
--
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 58+ messages in thread
* [Buildroot] [PATCH 06/27] package/freescale-imx/imx-lib: update codeaurora URLs to github
2022-12-29 19:47 [Buildroot] [PATCH 01/27] package/imx-mkimage: update codeaurora URLs to github Julien Olivain
` (3 preceding siblings ...)
2022-12-29 19:47 ` [Buildroot] [PATCH 05/27] package/freescale-imx/imx-kobs: update to NXPmicro github organization Julien Olivain
@ 2022-12-29 19:47 ` 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
` (13 subsequent siblings)
18 siblings, 1 reply; 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.
The commit also:
- removes the comment in Config.in that the package does not have
an upstream,
- adds the new github.com url as the package url
Signed-off-by: Julien Olivain <ju.o@free.fr>
---
package/freescale-imx/imx-lib/Config.in | 3 +--
package/freescale-imx/imx-lib/imx-lib.mk | 2 +-
2 files changed, 2 insertions(+), 3 deletions(-)
diff --git a/package/freescale-imx/imx-lib/Config.in b/package/freescale-imx/imx-lib/Config.in
index 746788e4c5..0a89bf140f 100644
--- a/package/freescale-imx/imx-lib/Config.in
+++ b/package/freescale-imx/imx-lib/Config.in
@@ -11,5 +11,4 @@ config BR2_PACKAGE_IMX_LIB
platform specific drivers. It requires a kernel that
includes the i.MX specific headers to be built.
- This library is provided by Freescale as-is and doesn't have
- an upstream.
+ https://github.com/nxp-imx/imx-lib
diff --git a/package/freescale-imx/imx-lib/imx-lib.mk b/package/freescale-imx/imx-lib/imx-lib.mk
index 721c20e5f8..f06453e8a6 100644
--- a/package/freescale-imx/imx-lib/imx-lib.mk
+++ b/package/freescale-imx/imx-lib/imx-lib.mk
@@ -5,7 +5,7 @@
################################################################################
IMX_LIB_VERSION = 3f777974c0c146817e2ff5cb0340ca66a1f99e57
-IMX_LIB_SITE = https://source.codeaurora.org/external/imx/imx-lib
+IMX_LIB_SITE = https://github.com/nxp-imx/imx-lib.git
IMX_LIB_SITE_METHOD = git
IMX_LIB_LICENSE = LGPL-2.1+
IMX_LIB_LICENSE_FILES = COPYING-LGPL-2.1
--
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* Re: [Buildroot] [PATCH 06/27] package/freescale-imx/imx-lib: update codeaurora URLs to github
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
0 siblings, 0 replies; 58+ messages in thread
From: Peter Korsgaard @ 2023-01-04 11:26 UTC (permalink / raw)
To: Julien Olivain
Cc: Bernd Kuhls, Gary Bisson, Jérôme Pouiller, Gilles Talis,
Refik Tuzakli, Erik Larsson, Fabrice Goucem, Stephane Viau,
buildroot, Fabio Estevam, Matt Weber
>>>>> "Julien" == Julien Olivain <ju.o@free.fr> writes:
> 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.
> The commit also:
> - removes the comment in Config.in that the package does not have
> an upstream,
> - adds the new github.com url as the package url
> Signed-off-by: Julien Olivain <ju.o@free.fr>
Committed to 2022.11.x and 2022.02.x, thanks.
--
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 58+ messages in thread
* [Buildroot] [PATCH 07/27] package/freescale-imx/imx-m4fwloader: update URLs to NXPmicro github organization
2022-12-29 19:47 [Buildroot] [PATCH 01/27] package/imx-mkimage: update codeaurora URLs to github Julien Olivain
` (4 preceding siblings ...)
2022-12-29 19:47 ` [Buildroot] [PATCH 06/27] package/freescale-imx/imx-lib: update codeaurora URLs to github Julien Olivain
@ 2022-12-29 19:47 ` Julien Olivain
2023-01-04 11:27 ` Peter Korsgaard
2022-12-29 19:47 ` [Buildroot] [PATCH 08/27] package/mfgtools: " Julien Olivain
` (12 subsequent siblings)
18 siblings, 1 reply; 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
imx-m4fwloader was removed from the github codeauroraforum
organization. It is now redirecting to NXPmicro. This patch
updates the link to directly point to the correct place.
Signed-off-by: Julien Olivain <ju.o@free.fr>
---
package/freescale-imx/imx-m4fwloader/Config.in | 2 +-
package/freescale-imx/imx-m4fwloader/imx-m4fwloader.mk | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/package/freescale-imx/imx-m4fwloader/Config.in b/package/freescale-imx/imx-m4fwloader/Config.in
index 937f82f916..d75480a708 100644
--- a/package/freescale-imx/imx-m4fwloader/Config.in
+++ b/package/freescale-imx/imx-m4fwloader/Config.in
@@ -5,4 +5,4 @@ config BR2_PACKAGE_IMX_M4FWLOADER
This package provides a tool to load a firmware to the
Cortex-M4 core available in some i.MX processors.
- https://github.com/codeauroraforum/imx-m4fwloader
+ https://github.com/NXPmicro/imx-m4fwloader
diff --git a/package/freescale-imx/imx-m4fwloader/imx-m4fwloader.mk b/package/freescale-imx/imx-m4fwloader/imx-m4fwloader.mk
index cc4849330c..320d5dc617 100644
--- a/package/freescale-imx/imx-m4fwloader/imx-m4fwloader.mk
+++ b/package/freescale-imx/imx-m4fwloader/imx-m4fwloader.mk
@@ -5,7 +5,7 @@
################################################################################
IMX_M4FWLOADER_VERSION = 8cf4d17a09ba23250d43381b49ba00d92406fad9
-IMX_M4FWLOADER_SITE = $(call github,codeauroraforum,imx-m4fwloader,$(IMX_M4FWLOADER_VERSION))
+IMX_M4FWLOADER_SITE = $(call github,NXPmicro,imx-m4fwloader,$(IMX_M4FWLOADER_VERSION))
IMX_M4FWLOADER_LICENSE = GPL-2.0+
IMX_M4FWLOADER_LICENSE_FILES = LICENSE
--
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* Re: [Buildroot] [PATCH 07/27] package/freescale-imx/imx-m4fwloader: update URLs to NXPmicro github organization
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
0 siblings, 0 replies; 58+ messages in thread
From: Peter Korsgaard @ 2023-01-04 11:27 UTC (permalink / raw)
To: Julien Olivain
Cc: Bernd Kuhls, Gary Bisson, Jérôme Pouiller, Gilles Talis,
Refik Tuzakli, Erik Larsson, Fabrice Goucem, Stephane Viau,
buildroot, Fabio Estevam, Matt Weber
>>>>> "Julien" == Julien Olivain <ju.o@free.fr> writes:
> imx-m4fwloader was removed from the github codeauroraforum
> organization. It is now redirecting to NXPmicro. This patch
> updates the link to directly point to the correct place.
> Signed-off-by: Julien Olivain <ju.o@free.fr>
Committed to 2022.11.x and 2022.02.x, thanks.
--
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 58+ messages in thread
* [Buildroot] [PATCH 08/27] package/mfgtools: update URLs to NXPmicro github organization
2022-12-29 19:47 [Buildroot] [PATCH 01/27] package/imx-mkimage: update codeaurora URLs to github Julien Olivain
` (5 preceding siblings ...)
2022-12-29 19:47 ` [Buildroot] [PATCH 07/27] package/freescale-imx/imx-m4fwloader: update URLs to NXPmicro github organization Julien Olivain
@ 2022-12-29 19:47 ` 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
` (11 subsequent siblings)
18 siblings, 1 reply; 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
mfgtools was removed from the github codeauroraforum organization.
It is now redirecting to NXPmicro. This patch updates the link to
directly point to the correct place.
Signed-off-by: Julien Olivain <ju.o@free.fr>
---
package/mfgtools/Config.in.host | 2 +-
package/mfgtools/mfgtools.mk | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/package/mfgtools/Config.in.host b/package/mfgtools/Config.in.host
index 2b506c8f67..f1e7ab58e3 100644
--- a/package/mfgtools/Config.in.host
+++ b/package/mfgtools/Config.in.host
@@ -8,7 +8,7 @@ config BR2_PACKAGE_HOST_MFGTOOLS
production. The communication is done over USB using the
Freescale UTP protocol.
- https://github.com/codeauroraforum/mfgtools
+ https://github.com/NXPmicro/mfgtools
comment "host mfgtools needs a toolchain w/ host gcc >= 4.9"
depends on BR2_arm
diff --git a/package/mfgtools/mfgtools.mk b/package/mfgtools/mfgtools.mk
index 48ce5dda28..3de93936b8 100644
--- a/package/mfgtools/mfgtools.mk
+++ b/package/mfgtools/mfgtools.mk
@@ -5,7 +5,7 @@
################################################################################
MFGTOOLS_VERSION = 0.02
-MFGTOOLS_SITE = $(call github,codeauroraforum,mfgtools,v$(MFGTOOLS_VERSION))
+MFGTOOLS_SITE = $(call github,NXPmicro,mfgtools,v$(MFGTOOLS_VERSION))
MFGTOOLS_SUBDIR = MfgToolLib
MFGTOOLS_LICENSE = BSD-3-Clause or CPOL
MFGTOOLS_LICENSE_FILES = LICENSE README.txt
--
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* Re: [Buildroot] [PATCH 08/27] package/mfgtools: update URLs to NXPmicro github organization
2022-12-29 19:47 ` [Buildroot] [PATCH 08/27] package/mfgtools: " Julien Olivain
@ 2023-01-04 11:27 ` Peter Korsgaard
0 siblings, 0 replies; 58+ messages in thread
From: Peter Korsgaard @ 2023-01-04 11:27 UTC (permalink / raw)
To: Julien Olivain
Cc: Bernd Kuhls, Gary Bisson, Jérôme Pouiller, Gilles Talis,
Refik Tuzakli, Erik Larsson, Fabrice Goucem, Stephane Viau,
buildroot, Fabio Estevam, Matt Weber
>>>>> "Julien" == Julien Olivain <ju.o@free.fr> writes:
> mfgtools was removed from the github codeauroraforum organization.
> It is now redirecting to NXPmicro. This patch updates the link to
> directly point to the correct place.
> Signed-off-by: Julien Olivain <ju.o@free.fr>
Committed to 2022.11.x and 2022.02.x, thanks.
--
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 58+ messages in thread
* [Buildroot] [PATCH 09/27] package/qoriq-rcw: update codeaurora URLs to github
2022-12-29 19:47 [Buildroot] [PATCH 01/27] package/imx-mkimage: update codeaurora URLs to github Julien Olivain
` (6 preceding siblings ...)
2022-12-29 19:47 ` [Buildroot] [PATCH 08/27] package/mfgtools: " Julien Olivain
@ 2022-12-29 19:47 ` 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
` (10 subsequent siblings)
18 siblings, 2 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/qoriq-rcw/Config.in.host | 2 +-
package/qoriq-rcw/qoriq-rcw.hash | 2 +-
package/qoriq-rcw/qoriq-rcw.mk | 3 +--
3 files changed, 3 insertions(+), 4 deletions(-)
diff --git a/package/qoriq-rcw/Config.in.host b/package/qoriq-rcw/Config.in.host
index 08fc83acd0..58c16d495b 100644
--- a/package/qoriq-rcw/Config.in.host
+++ b/package/qoriq-rcw/Config.in.host
@@ -9,7 +9,7 @@ config BR2_PACKAGE_HOST_QORIQ_RCW
$(HOST_DIR)/share/rcw. Either a SDK or post scripts can
then use this toolset and examples.
- https://source.codeaurora.org/external/qoriq/qoriq-components/rcw/
+ https://github.com/nxp-qoriq/rcw
if BR2_PACKAGE_HOST_QORIQ_RCW
diff --git a/package/qoriq-rcw/qoriq-rcw.hash b/package/qoriq-rcw/qoriq-rcw.hash
index f34c771d11..2a887d57d4 100644
--- a/package/qoriq-rcw/qoriq-rcw.hash
+++ b/package/qoriq-rcw/qoriq-rcw.hash
@@ -1,3 +1,3 @@
# Locally calculated
-sha256 caa6802f2ba5ea92fd27e7c977749010a91c9091fcc3fe626f96d9cacfba1f0a qoriq-rcw-LSDK-21.08-br1.tar.gz
+sha256 f199c10e50bd18d7bed0d60f5b68194240dea4f1aa164cec98332723727a4796 qoriq-rcw-LSDK-21.08.tar.gz
sha256 68f4b15ecc085729419bc60ca6eeadca5af0237bbfec791e8a79da9c943d42e9 LICENSE
diff --git a/package/qoriq-rcw/qoriq-rcw.mk b/package/qoriq-rcw/qoriq-rcw.mk
index 0501c36f46..8b1ceacfce 100644
--- a/package/qoriq-rcw/qoriq-rcw.mk
+++ b/package/qoriq-rcw/qoriq-rcw.mk
@@ -5,8 +5,7 @@
################################################################################
QORIQ_RCW_VERSION = LSDK-21.08
-QORIQ_RCW_SITE = https://source.codeaurora.org/external/qoriq/qoriq-components/rcw
-QORIQ_RCW_SITE_METHOD = git
+QORIQ_RCW_SITE = $(call github,nxp-qoriq,rcw,$(QORIQ_RCW_VERSION))
QORIQ_RCW_LICENSE = BSD-3-Clause
QORIQ_RCW_LICENSE_FILES = LICENSE
--
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* Re: [Buildroot] [PATCH 09/27] package/qoriq-rcw: update codeaurora URLs to github
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
1 sibling, 0 replies; 58+ messages in thread
From: François Perrad @ 2022-12-31 11:04 UTC (permalink / raw)
To: Julien Olivain
Cc: Bernd Kuhls, Gary Bisson, Jérôme Pouiller, Gilles Talis,
Refik Tuzakli, Erik Larsson, Fabrice Goucem, Stephane Viau,
buildroot, Fabio Estevam, Matt Weber
[-- Attachment #1.1: Type: text/plain, Size: 3721 bytes --]
Le jeu. 29 déc. 2022 à 20:50, Julien Olivain <ju.o@free.fr> a écrit :
> 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>
>
Reviewed-by: Francois Perrad <francois.perrad@gadz.org>
> ---
> package/qoriq-rcw/Config.in.host | 2 +-
> package/qoriq-rcw/qoriq-rcw.hash | 2 +-
> package/qoriq-rcw/qoriq-rcw.mk | 3 +--
> 3 files changed, 3 insertions(+), 4 deletions(-)
>
> diff --git a/package/qoriq-rcw/Config.in.host
> b/package/qoriq-rcw/Config.in.host
> index 08fc83acd0..58c16d495b 100644
> --- a/package/qoriq-rcw/Config.in.host
> +++ b/package/qoriq-rcw/Config.in.host
> @@ -9,7 +9,7 @@ config BR2_PACKAGE_HOST_QORIQ_RCW
> $(HOST_DIR)/share/rcw. Either a SDK or post scripts can
> then use this toolset and examples.
>
> -
> https://source.codeaurora.org/external/qoriq/qoriq-components/rcw/
> + https://github.com/nxp-qoriq/rcw
>
> if BR2_PACKAGE_HOST_QORIQ_RCW
>
> diff --git a/package/qoriq-rcw/qoriq-rcw.hash
> b/package/qoriq-rcw/qoriq-rcw.hash
> index f34c771d11..2a887d57d4 100644
> --- a/package/qoriq-rcw/qoriq-rcw.hash
> +++ b/package/qoriq-rcw/qoriq-rcw.hash
> @@ -1,3 +1,3 @@
> # Locally calculated
> -sha256 caa6802f2ba5ea92fd27e7c977749010a91c9091fcc3fe626f96d9cacfba1f0a
> qoriq-rcw-LSDK-21.08-br1.tar.gz
> +sha256 f199c10e50bd18d7bed0d60f5b68194240dea4f1aa164cec98332723727a4796
> qoriq-rcw-LSDK-21.08.tar.gz
> sha256 68f4b15ecc085729419bc60ca6eeadca5af0237bbfec791e8a79da9c943d42e9
> LICENSE
> diff --git a/package/qoriq-rcw/qoriq-rcw.mk b/package/qoriq-rcw/
> qoriq-rcw.mk
> index 0501c36f46..8b1ceacfce 100644
> --- a/package/qoriq-rcw/qoriq-rcw.mk
> +++ b/package/qoriq-rcw/qoriq-rcw.mk
> @@ -5,8 +5,7 @@
>
> ################################################################################
>
> QORIQ_RCW_VERSION = LSDK-21.08
> -QORIQ_RCW_SITE =
> https://source.codeaurora.org/external/qoriq/qoriq-components/rcw
> -QORIQ_RCW_SITE_METHOD
> <https://source.codeaurora.org/external/qoriq/qoriq-components/rcw-QORIQ_RCW_SITE_METHOD>
> = git
> +QORIQ_RCW_SITE = $(call github,nxp-qoriq,rcw,$(QORIQ_RCW_VERSION))
> QORIQ_RCW_LICENSE = BSD-3-Clause
> QORIQ_RCW_LICENSE_FILES = LICENSE
>
> --
> 2.39.0
>
>
[-- Attachment #1.2: Type: text/html, Size: 5693 bytes --]
[-- Attachment #2: Type: text/plain, Size: 150 bytes --]
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 58+ messages in thread
* Re: [Buildroot] [PATCH 09/27] package/qoriq-rcw: update codeaurora URLs to github
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
1 sibling, 0 replies; 58+ messages in thread
From: Peter Korsgaard @ 2023-01-04 11:27 UTC (permalink / raw)
To: Julien Olivain
Cc: Bernd Kuhls, Gary Bisson, Jérôme Pouiller, Gilles Talis,
Refik Tuzakli, Erik Larsson, Fabrice Goucem, Stephane Viau,
buildroot, Fabio Estevam, Matt Weber
>>>>> "Julien" == Julien Olivain <ju.o@free.fr> writes:
> 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>
Committed to 2022.11.x, thanks (different version in 2022.02.x).
--
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 58+ messages in thread
* [Buildroot] [PATCH 10/27] package/x11r7/xdriver_xf86-video-imx-viv: update codeaurora URLs to github
2022-12-29 19:47 [Buildroot] [PATCH 01/27] package/imx-mkimage: update codeaurora URLs to github Julien Olivain
` (7 preceding siblings ...)
2022-12-29 19:47 ` [Buildroot] [PATCH 09/27] package/qoriq-rcw: update codeaurora URLs to github Julien Olivain
@ 2022-12-29 19:47 ` Julien Olivain
2023-01-04 11:27 ` Peter Korsgaard
2022-12-29 19:47 ` [Buildroot] [PATCH 11/27] configs/freescale_imx6dlsabreauto: " Julien Olivain
` (9 subsequent siblings)
18 siblings, 1 reply; 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>
---
.../xdriver_xf86-video-imx-viv/xdriver_xf86-video-imx-viv.hash | 2 +-
.../xdriver_xf86-video-imx-viv/xdriver_xf86-video-imx-viv.mk | 3 +--
2 files changed, 2 insertions(+), 3 deletions(-)
diff --git a/package/x11r7/xdriver_xf86-video-imx-viv/xdriver_xf86-video-imx-viv.hash b/package/x11r7/xdriver_xf86-video-imx-viv/xdriver_xf86-video-imx-viv.hash
index 5873b4b11c..b79c236478 100644
--- a/package/x11r7/xdriver_xf86-video-imx-viv/xdriver_xf86-video-imx-viv.hash
+++ b/package/x11r7/xdriver_xf86-video-imx-viv/xdriver_xf86-video-imx-viv.hash
@@ -1,3 +1,3 @@
# Locally calculated
-sha256 638a8aa8b64f860900d003527529689bc342d18ff5e41a9e1750884544898e67 xdriver_xf86-video-imx-viv-rel_imx_4.9.x_1.0.0_ga-br1.tar.gz
+sha256 8fe1f57334b22926d4ff3b0b9fdf50af835a99cdfd0ad3ba6a604b226b723e89 xdriver_xf86-video-imx-viv-rel_imx_4.9.x_1.0.0_ga.tar.gz
sha256 9d3e373f0440cc0c58853e963636a7c1ffda9308ec5f30ebe9adfb9c16a8a1e4 COPYING-MIT
diff --git a/package/x11r7/xdriver_xf86-video-imx-viv/xdriver_xf86-video-imx-viv.mk b/package/x11r7/xdriver_xf86-video-imx-viv/xdriver_xf86-video-imx-viv.mk
index 0913427542..3b346f323a 100644
--- a/package/x11r7/xdriver_xf86-video-imx-viv/xdriver_xf86-video-imx-viv.mk
+++ b/package/x11r7/xdriver_xf86-video-imx-viv/xdriver_xf86-video-imx-viv.mk
@@ -5,8 +5,7 @@
################################################################################
XDRIVER_XF86_VIDEO_IMX_VIV_VERSION = rel_imx_4.9.x_1.0.0_ga
-XDRIVER_XF86_VIDEO_IMX_VIV_SITE = https://source.codeaurora.org/external/imx/xf86-video-imx-vivante
-XDRIVER_XF86_VIDEO_IMX_VIV_SITE_METHOD = git
+XDRIVER_XF86_VIDEO_IMX_VIV_SITE = $(call github,nxp-imx,xf86-video-imx-vivante,$(XDRIVER_XF86_VIDEO_IMX_VIV_VERSION))
XDRIVER_XF86_VIDEO_IMX_VIV_DEPENDENCIES = imx-gpu-viv imx-gpu-g2d xserver_xorg-server \
xorgproto libdrm
XDRIVER_XF86_VIDEO_IMX_VIV_LICENSE = MIT
--
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* Re: [Buildroot] [PATCH 10/27] package/x11r7/xdriver_xf86-video-imx-viv: update codeaurora URLs to github
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
0 siblings, 0 replies; 58+ messages in thread
From: Peter Korsgaard @ 2023-01-04 11:27 UTC (permalink / raw)
To: Julien Olivain
Cc: Bernd Kuhls, Gary Bisson, Jérôme Pouiller, Gilles Talis,
Refik Tuzakli, Erik Larsson, Fabrice Goucem, Stephane Viau,
buildroot, Fabio Estevam, Matt Weber
>>>>> "Julien" == Julien Olivain <ju.o@free.fr> writes:
> 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>
Committed to 2022.11.x and 2022.02.x, thanks.
--
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 58+ messages in thread
* [Buildroot] [PATCH 11/27] configs/freescale_imx6dlsabreauto: update codeaurora URLs to github
2022-12-29 19:47 [Buildroot] [PATCH 01/27] package/imx-mkimage: update codeaurora URLs to github Julien Olivain
` (8 preceding siblings ...)
2022-12-29 19:47 ` [Buildroot] [PATCH 10/27] package/x11r7/xdriver_xf86-video-imx-viv: " Julien Olivain
@ 2022-12-29 19:47 ` Julien Olivain
2023-01-04 11:27 ` Peter Korsgaard
2022-12-29 19:47 ` [Buildroot] [PATCH 12/27] configs/freescale_imx6dlsabresd: " Julien Olivain
` (8 subsequent siblings)
18 siblings, 1 reply; 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: this commit updates the Kernel and U-Boot download urls.
The method is also changed from _CUSTOM_GIT to _CUSTOM_TARBALL.
Signed-off-by: Julien Olivain <ju.o@free.fr>
---
configs/freescale_imx6dlsabreauto_defconfig | 10 ++++------
1 file changed, 4 insertions(+), 6 deletions(-)
diff --git a/configs/freescale_imx6dlsabreauto_defconfig b/configs/freescale_imx6dlsabreauto_defconfig
index 8fe10f6275..4081fa74a2 100644
--- a/configs/freescale_imx6dlsabreauto_defconfig
+++ b/configs/freescale_imx6dlsabreauto_defconfig
@@ -16,9 +16,8 @@ BR2_TARGET_GENERIC_GETTY_PORT="ttymxc3"
# kernel
BR2_LINUX_KERNEL=y
-BR2_LINUX_KERNEL_CUSTOM_GIT=y
-BR2_LINUX_KERNEL_CUSTOM_REPO_URL="https://source.codeaurora.org/external/imx/linux-imx.git"
-BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION="lf-5.10.y-1.0.0"
+BR2_LINUX_KERNEL_CUSTOM_TARBALL=y
+BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION="$(call github,nxp-imx,linux-imx,lf-5.10.y-1.0.0)/linux-imx-lf-5.10.y-1.0.0.tar.gz"
BR2_LINUX_KERNEL_DEFCONFIG="imx_v7"
BR2_LINUX_KERNEL_DTS_SUPPORT=y
BR2_LINUX_KERNEL_INTREE_DTS_NAME="imx6dl-sabreauto"
@@ -38,7 +37,6 @@ BR2_PACKAGE_HOST_MTOOLS=y
BR2_TARGET_UBOOT=y
BR2_TARGET_UBOOT_BOARDNAME="mx6dlsabreauto"
BR2_TARGET_UBOOT_FORMAT_IMX=y
-BR2_TARGET_UBOOT_CUSTOM_GIT=y
-BR2_TARGET_UBOOT_CUSTOM_REPO_URL="https://source.codeaurora.org/external/imx/uboot-imx.git"
-BR2_TARGET_UBOOT_CUSTOM_REPO_VERSION="lf-5.10.y-1.0.0"
+BR2_TARGET_UBOOT_CUSTOM_TARBALL=y
+BR2_TARGET_UBOOT_CUSTOM_TARBALL_LOCATION="$(call github,nxp-imx,uboot-imx,lf-5.10.y-1.0.0)/uboot-imx-lf-5.10.y-1.0.0.tar.gz"
BR2_TARGET_UBOOT_NEEDS_DTC=y
--
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* Re: [Buildroot] [PATCH 11/27] configs/freescale_imx6dlsabreauto: update codeaurora URLs to github
2022-12-29 19:47 ` [Buildroot] [PATCH 11/27] configs/freescale_imx6dlsabreauto: " Julien Olivain
@ 2023-01-04 11:27 ` Peter Korsgaard
0 siblings, 0 replies; 58+ messages in thread
From: Peter Korsgaard @ 2023-01-04 11:27 UTC (permalink / raw)
To: Julien Olivain
Cc: Bernd Kuhls, Gary Bisson, Jérôme Pouiller, Gilles Talis,
Refik Tuzakli, Erik Larsson, Fabrice Goucem, Stephane Viau,
buildroot, Fabio Estevam, Matt Weber
>>>>> "Julien" == Julien Olivain <ju.o@free.fr> writes:
> 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: this commit updates the Kernel and U-Boot download urls.
> The method is also changed from _CUSTOM_GIT to _CUSTOM_TARBALL.
> Signed-off-by: Julien Olivain <ju.o@free.fr>
Committed to 2022.11.x and 2022.02.x, thanks.
--
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 58+ messages in thread
* [Buildroot] [PATCH 12/27] configs/freescale_imx6dlsabresd: update codeaurora URLs to github
2022-12-29 19:47 [Buildroot] [PATCH 01/27] package/imx-mkimage: update codeaurora URLs to github Julien Olivain
` (9 preceding siblings ...)
2022-12-29 19:47 ` [Buildroot] [PATCH 11/27] configs/freescale_imx6dlsabreauto: " Julien Olivain
@ 2022-12-29 19:47 ` Julien Olivain
2023-01-04 11:28 ` Peter Korsgaard
2022-12-29 19:47 ` [Buildroot] [PATCH 13/27] configs/freescale_imx6qsabreauto: " Julien Olivain
` (7 subsequent siblings)
18 siblings, 1 reply; 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: this commit updates the Kernel and U-Boot download urls.
The method is also changed from _CUSTOM_GIT to _CUSTOM_TARBALL.
Signed-off-by: Julien Olivain <ju.o@free.fr>
---
configs/freescale_imx6dlsabresd_defconfig | 10 ++++------
1 file changed, 4 insertions(+), 6 deletions(-)
diff --git a/configs/freescale_imx6dlsabresd_defconfig b/configs/freescale_imx6dlsabresd_defconfig
index 74debbfd46..976c180d6c 100644
--- a/configs/freescale_imx6dlsabresd_defconfig
+++ b/configs/freescale_imx6dlsabresd_defconfig
@@ -16,9 +16,8 @@ BR2_TARGET_GENERIC_GETTY_PORT="ttymxc0"
# kernel
BR2_LINUX_KERNEL=y
-BR2_LINUX_KERNEL_CUSTOM_GIT=y
-BR2_LINUX_KERNEL_CUSTOM_REPO_URL="https://source.codeaurora.org/external/imx/linux-imx.git"
-BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION="lf-5.10.y-1.0.0"
+BR2_LINUX_KERNEL_CUSTOM_TARBALL=y
+BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION="$(call github,nxp-imx,linux-imx,lf-5.10.y-1.0.0)/linux-imx-lf-5.10.y-1.0.0.tar.gz"
BR2_LINUX_KERNEL_DEFCONFIG="imx_v7"
BR2_LINUX_KERNEL_DTS_SUPPORT=y
BR2_LINUX_KERNEL_INTREE_DTS_NAME="imx6dl-sabresd"
@@ -37,7 +36,6 @@ BR2_PACKAGE_HOST_MTOOLS=y
BR2_TARGET_UBOOT=y
BR2_TARGET_UBOOT_BOARDNAME="mx6dlsabresd"
BR2_TARGET_UBOOT_FORMAT_IMX=y
-BR2_TARGET_UBOOT_CUSTOM_GIT=y
-BR2_TARGET_UBOOT_CUSTOM_REPO_URL="https://source.codeaurora.org/external/imx/uboot-imx.git"
-BR2_TARGET_UBOOT_CUSTOM_REPO_VERSION="lf-5.10.y-1.0.0"
+BR2_TARGET_UBOOT_CUSTOM_TARBALL=y
+BR2_TARGET_UBOOT_CUSTOM_TARBALL_LOCATION="$(call github,nxp-imx,uboot-imx,lf-5.10.y-1.0.0)/uboot-imx-lf-5.10.y-1.0.0.tar.gz"
BR2_TARGET_UBOOT_NEEDS_DTC=y
--
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* Re: [Buildroot] [PATCH 12/27] configs/freescale_imx6dlsabresd: update codeaurora URLs to github
2022-12-29 19:47 ` [Buildroot] [PATCH 12/27] configs/freescale_imx6dlsabresd: " Julien Olivain
@ 2023-01-04 11:28 ` Peter Korsgaard
0 siblings, 0 replies; 58+ messages in thread
From: Peter Korsgaard @ 2023-01-04 11:28 UTC (permalink / raw)
To: Julien Olivain
Cc: Bernd Kuhls, Gary Bisson, Jérôme Pouiller, Gilles Talis,
Refik Tuzakli, Erik Larsson, Fabrice Goucem, Stephane Viau,
buildroot, Fabio Estevam, Matt Weber
>>>>> "Julien" == Julien Olivain <ju.o@free.fr> writes:
> 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: this commit updates the Kernel and U-Boot download urls.
> The method is also changed from _CUSTOM_GIT to _CUSTOM_TARBALL.
> Signed-off-by: Julien Olivain <ju.o@free.fr>
Committed to 2022.11.x and 2022.02.x, thanks.
--
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 58+ messages in thread
* [Buildroot] [PATCH 13/27] configs/freescale_imx6qsabreauto: update codeaurora URLs to github
2022-12-29 19:47 [Buildroot] [PATCH 01/27] package/imx-mkimage: update codeaurora URLs to github Julien Olivain
` (10 preceding siblings ...)
2022-12-29 19:47 ` [Buildroot] [PATCH 12/27] configs/freescale_imx6dlsabresd: " Julien Olivain
@ 2022-12-29 19:47 ` Julien Olivain
2023-01-04 11:28 ` Peter Korsgaard
2022-12-29 19:47 ` [Buildroot] [PATCH 14/27] configs/freescale_imx6qsabresd: " Julien Olivain
` (6 subsequent siblings)
18 siblings, 1 reply; 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: this commit updates the Kernel and U-Boot download urls.
The method is also changed from _CUSTOM_GIT to _CUSTOM_TARBALL.
Signed-off-by: Julien Olivain <ju.o@free.fr>
---
configs/freescale_imx6qsabreauto_defconfig | 10 ++++------
1 file changed, 4 insertions(+), 6 deletions(-)
diff --git a/configs/freescale_imx6qsabreauto_defconfig b/configs/freescale_imx6qsabreauto_defconfig
index 58b4a5f92d..72696ab1ad 100644
--- a/configs/freescale_imx6qsabreauto_defconfig
+++ b/configs/freescale_imx6qsabreauto_defconfig
@@ -16,9 +16,8 @@ BR2_TARGET_GENERIC_GETTY_PORT="ttymxc3"
# kernel
BR2_LINUX_KERNEL=y
-BR2_LINUX_KERNEL_CUSTOM_GIT=y
-BR2_LINUX_KERNEL_CUSTOM_REPO_URL="https://source.codeaurora.org/external/imx/linux-imx.git"
-BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION="lf-5.10.y-1.0.0"
+BR2_LINUX_KERNEL_CUSTOM_TARBALL=y
+BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION="$(call github,nxp-imx,linux-imx,lf-5.10.y-1.0.0)/linux-imx-lf-5.10.y-1.0.0.tar.gz"
BR2_LINUX_KERNEL_DEFCONFIG="imx_v7"
BR2_LINUX_KERNEL_DTS_SUPPORT=y
BR2_LINUX_KERNEL_INTREE_DTS_NAME="imx6q-sabreauto"
@@ -38,7 +37,6 @@ BR2_PACKAGE_HOST_MTOOLS=y
BR2_TARGET_UBOOT=y
BR2_TARGET_UBOOT_BOARDNAME="mx6qsabreauto"
BR2_TARGET_UBOOT_FORMAT_IMX=y
-BR2_TARGET_UBOOT_CUSTOM_GIT=y
-BR2_TARGET_UBOOT_CUSTOM_REPO_URL="https://source.codeaurora.org/external/imx/uboot-imx.git"
-BR2_TARGET_UBOOT_CUSTOM_REPO_VERSION="lf-5.10.y-1.0.0"
+BR2_TARGET_UBOOT_CUSTOM_TARBALL=y
+BR2_TARGET_UBOOT_CUSTOM_TARBALL_LOCATION="$(call github,nxp-imx,uboot-imx,lf-5.10.y-1.0.0)/uboot-imx-lf-5.10.y-1.0.0.tar.gz"
BR2_TARGET_UBOOT_NEEDS_DTC=y
--
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* Re: [Buildroot] [PATCH 13/27] configs/freescale_imx6qsabreauto: update codeaurora URLs to github
2022-12-29 19:47 ` [Buildroot] [PATCH 13/27] configs/freescale_imx6qsabreauto: " Julien Olivain
@ 2023-01-04 11:28 ` Peter Korsgaard
0 siblings, 0 replies; 58+ messages in thread
From: Peter Korsgaard @ 2023-01-04 11:28 UTC (permalink / raw)
To: Julien Olivain
Cc: Bernd Kuhls, Gary Bisson, Jérôme Pouiller, Gilles Talis,
Refik Tuzakli, Erik Larsson, Fabrice Goucem, Stephane Viau,
buildroot, Fabio Estevam, Matt Weber
>>>>> "Julien" == Julien Olivain <ju.o@free.fr> writes:
> 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: this commit updates the Kernel and U-Boot download urls.
> The method is also changed from _CUSTOM_GIT to _CUSTOM_TARBALL.
> Signed-off-by: Julien Olivain <ju.o@free.fr>
Committed to 2022.11.x and 2022.02.x, thanks.
--
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 58+ messages in thread
* [Buildroot] [PATCH 14/27] configs/freescale_imx6qsabresd: update codeaurora URLs to github
2022-12-29 19:47 [Buildroot] [PATCH 01/27] package/imx-mkimage: update codeaurora URLs to github Julien Olivain
` (11 preceding siblings ...)
2022-12-29 19:47 ` [Buildroot] [PATCH 13/27] configs/freescale_imx6qsabreauto: " Julien Olivain
@ 2022-12-29 19:47 ` Julien Olivain
2023-01-04 11:28 ` Peter Korsgaard
2022-12-29 20:08 ` [Buildroot] [PATCH 15/27] configs/freescale_imx6sxsabresd: " Julien Olivain
` (5 subsequent siblings)
18 siblings, 1 reply; 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: this commit updates the Kernel and U-Boot download urls.
The method is also changed from _CUSTOM_GIT to _CUSTOM_TARBALL.
Signed-off-by: Julien Olivain <ju.o@free.fr>
---
configs/freescale_imx6qsabresd_defconfig | 9 ++++-----
1 file changed, 4 insertions(+), 5 deletions(-)
diff --git a/configs/freescale_imx6qsabresd_defconfig b/configs/freescale_imx6qsabresd_defconfig
index f2ac993da0..86513d8072 100644
--- a/configs/freescale_imx6qsabresd_defconfig
+++ b/configs/freescale_imx6qsabresd_defconfig
@@ -16,9 +16,8 @@ BR2_TARGET_GENERIC_GETTY_PORT="ttymxc0"
# kernel
BR2_LINUX_KERNEL=y
-BR2_LINUX_KERNEL_CUSTOM_GIT=y
-BR2_LINUX_KERNEL_CUSTOM_REPO_URL="https://source.codeaurora.org/external/imx/linux-imx.git"
-BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION="lf-5.10.y-1.0.0"
+BR2_LINUX_KERNEL_CUSTOM_TARBALL=y
+BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION="$(call github,nxp-imx,linux-imx,lf-5.10.y-1.0.0)/linux-imx-lf-5.10.y-1.0.0.tar.gz"
BR2_LINUX_KERNEL_DEFCONFIG="imx_v7"
BR2_LINUX_KERNEL_DTS_SUPPORT=y
BR2_LINUX_KERNEL_INTREE_DTS_NAME="imx6q-sabresd"
@@ -39,6 +38,6 @@ BR2_TARGET_UBOOT=y
BR2_TARGET_UBOOT_BOARDNAME="mx6qsabresd"
BR2_TARGET_UBOOT_FORMAT_IMX=y
BR2_TARGET_UBOOT_CUSTOM_GIT=y
-BR2_TARGET_UBOOT_CUSTOM_REPO_URL="https://source.codeaurora.org/external/imx/uboot-imx.git"
-BR2_TARGET_UBOOT_CUSTOM_REPO_VERSION="lf-5.10.y-1.0.0"
+BR2_TARGET_UBOOT_CUSTOM_TARBALL=y
+BR2_TARGET_UBOOT_CUSTOM_TARBALL_LOCATION="$(call github,nxp-imx,uboot-imx,lf-5.10.y-1.0.0)/uboot-imx-lf-5.10.y-1.0.0.tar.gz"
BR2_TARGET_UBOOT_NEEDS_DTC=y
--
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* Re: [Buildroot] [PATCH 14/27] configs/freescale_imx6qsabresd: update codeaurora URLs to github
2022-12-29 19:47 ` [Buildroot] [PATCH 14/27] configs/freescale_imx6qsabresd: " Julien Olivain
@ 2023-01-04 11:28 ` Peter Korsgaard
0 siblings, 0 replies; 58+ messages in thread
From: Peter Korsgaard @ 2023-01-04 11:28 UTC (permalink / raw)
To: Julien Olivain
Cc: Bernd Kuhls, Gary Bisson, Jérôme Pouiller, Gilles Talis,
Refik Tuzakli, Erik Larsson, Fabrice Goucem, Stephane Viau,
buildroot, Fabio Estevam, Matt Weber
>>>>> "Julien" == Julien Olivain <ju.o@free.fr> writes:
> 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: this commit updates the Kernel and U-Boot download urls.
> The method is also changed from _CUSTOM_GIT to _CUSTOM_TARBALL.
> Signed-off-by: Julien Olivain <ju.o@free.fr>
Committed to 2022.11.x and 2022.02.x, thanks.
--
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 58+ messages in thread
* [Buildroot] [PATCH 15/27] configs/freescale_imx6sxsabresd: update codeaurora URLs to github
2022-12-29 19:47 [Buildroot] [PATCH 01/27] package/imx-mkimage: update codeaurora URLs to github Julien Olivain
` (12 preceding siblings ...)
2022-12-29 19:47 ` [Buildroot] [PATCH 14/27] configs/freescale_imx6qsabresd: " Julien Olivain
@ 2022-12-29 20:08 ` 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
` (4 subsequent siblings)
18 siblings, 2 replies; 58+ messages in thread
From: Julien Olivain @ 2022-12-29 20:08 UTC (permalink / raw)
To: buildroot; +Cc: Julien Olivain
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: this commit updates the Kernel and U-Boot download urls.
The method is also changed from _CUSTOM_GIT to _CUSTOM_TARBALL.
Signed-off-by: Julien Olivain <ju.o@free.fr>
---
configs/freescale_imx6sxsabresd_defconfig | 10 ++++------
1 file changed, 4 insertions(+), 6 deletions(-)
diff --git a/configs/freescale_imx6sxsabresd_defconfig b/configs/freescale_imx6sxsabresd_defconfig
index 9f48ef2da5..0c585c97f0 100644
--- a/configs/freescale_imx6sxsabresd_defconfig
+++ b/configs/freescale_imx6sxsabresd_defconfig
@@ -16,9 +16,8 @@ BR2_TARGET_GENERIC_GETTY_PORT="ttymxc0"
# kernel
BR2_LINUX_KERNEL=y
-BR2_LINUX_KERNEL_CUSTOM_GIT=y
-BR2_LINUX_KERNEL_CUSTOM_REPO_URL="https://source.codeaurora.org/external/imx/linux-imx.git"
-BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION="lf-5.10.y-1.0.0"
+BR2_LINUX_KERNEL_CUSTOM_TARBALL=y
+BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION="$(call github,nxp-imx,linux-imx,lf-5.10.y-1.0.0)/linux-imx-lf-5.10.y-1.0.0.tar.gz"
BR2_LINUX_KERNEL_DEFCONFIG="imx_v7"
BR2_LINUX_KERNEL_DTS_SUPPORT=y
BR2_LINUX_KERNEL_INTREE_DTS_NAME="imx6sx-sdb"
@@ -36,8 +35,7 @@ BR2_PACKAGE_HOST_MTOOLS=y
# bootloader
BR2_TARGET_UBOOT=y
BR2_TARGET_UBOOT_BOARDNAME="mx6sxsabresd"
-BR2_TARGET_UBOOT_CUSTOM_GIT=y
-BR2_TARGET_UBOOT_CUSTOM_REPO_URL="https://source.codeaurora.org/external/imx/uboot-imx.git"
-BR2_TARGET_UBOOT_CUSTOM_REPO_VERSION="lf-5.10.y-1.0.0"
+BR2_TARGET_UBOOT_CUSTOM_TARBALL=y
+BR2_TARGET_UBOOT_CUSTOM_TARBALL_LOCATION="$(call github,nxp-imx,uboot-imx,lf-5.10.y-1.0.0)/uboot-imx-lf-5.10.y-1.0.0.tar.gz"
BR2_TARGET_UBOOT_FORMAT_IMX=y
BR2_TARGET_UBOOT_NEEDS_DTC=y
--
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* Re: [Buildroot] [PATCH 15/27] configs/freescale_imx6sxsabresd: update codeaurora URLs to github
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
1 sibling, 0 replies; 58+ messages in thread
From: Fabio Estevam @ 2022-12-29 20:42 UTC (permalink / raw)
To: Julien Olivain; +Cc: buildroot
Hi Julien,
On Thu, Dec 29, 2022 at 5:09 PM Julien Olivain <ju.o@free.fr> wrote:
>
> 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: this commit updates the Kernel and U-Boot download urls.
> The method is also changed from _CUSTOM_GIT to _CUSTOM_TARBALL.
>
> Signed-off-by: Julien Olivain <ju.o@free.fr>
Thanks for the patch. This is good information that I was not aware of.
Reviewed-by: Fabio Estevam <festevam@gmail.com>
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 58+ messages in thread
* Re: [Buildroot] [PATCH 15/27] configs/freescale_imx6sxsabresd: update codeaurora URLs to github
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
1 sibling, 0 replies; 58+ messages in thread
From: Peter Korsgaard @ 2023-01-04 11:28 UTC (permalink / raw)
To: Julien Olivain; +Cc: buildroot
>>>>> "Julien" == Julien Olivain <ju.o@free.fr> writes:
> 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: this commit updates the Kernel and U-Boot download urls.
> The method is also changed from _CUSTOM_GIT to _CUSTOM_TARBALL.
> Signed-off-by: Julien Olivain <ju.o@free.fr>
Committed to 2022.11.x and 2022.02.x, thanks.
--
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 58+ messages in thread
* [Buildroot] [PATCH 16/27] configs/freescale_imx6ullevk: update codeaurora URLs to github
2022-12-29 19:47 [Buildroot] [PATCH 01/27] package/imx-mkimage: update codeaurora URLs to github Julien Olivain
` (13 preceding siblings ...)
2022-12-29 20:08 ` [Buildroot] [PATCH 15/27] configs/freescale_imx6sxsabresd: " Julien Olivain
@ 2022-12-29 21:23 ` Julien Olivain
2022-12-29 21:23 ` [Buildroot] [PATCH 17/27] configs/freescale_imx7dsabresd: " Julien Olivain
` (2 more replies)
2022-12-29 22:25 ` [Buildroot] [PATCH 19/27] configs/freescale_imx8mpevk: " Julien Olivain
` (3 subsequent siblings)
18 siblings, 3 replies; 58+ messages in thread
From: Julien Olivain @ 2022-12-29 21:23 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: this commit updates the Kernel and U-Boot download urls.
The method is also changed from _CUSTOM_GIT to _CUSTOM_TARBALL.
Signed-off-by: Julien Olivain <ju.o@free.fr>
---
configs/freescale_imx6ullevk_defconfig | 10 ++++------
1 file changed, 4 insertions(+), 6 deletions(-)
diff --git a/configs/freescale_imx6ullevk_defconfig b/configs/freescale_imx6ullevk_defconfig
index 4c5c3b2524..7a8965be18 100644
--- a/configs/freescale_imx6ullevk_defconfig
+++ b/configs/freescale_imx6ullevk_defconfig
@@ -4,9 +4,8 @@ BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_5_10=y
BR2_TARGET_GENERIC_GETTY_PORT="ttymxc0"
BR2_ROOTFS_POST_IMAGE_SCRIPT="board/freescale/common/imx/post-image.sh"
BR2_LINUX_KERNEL=y
-BR2_LINUX_KERNEL_CUSTOM_GIT=y
-BR2_LINUX_KERNEL_CUSTOM_REPO_URL="https://source.codeaurora.org/external/imx/linux-imx.git"
-BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION="lf-5.10.y-1.0.0"
+BR2_LINUX_KERNEL_CUSTOM_TARBALL=y
+BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION="$(call github,nxp-imx,linux-imx,lf-5.10.y-1.0.0)/linux-imx-lf-5.10.y-1.0.0.tar.gz"
BR2_LINUX_KERNEL_DEFCONFIG="imx_v7"
BR2_LINUX_KERNEL_DTS_SUPPORT=y
BR2_LINUX_KERNEL_INTREE_DTS_NAME="imx6ull-14x14-evk"
@@ -15,9 +14,8 @@ BR2_TARGET_ROOTFS_EXT2=y
BR2_TARGET_ROOTFS_EXT2_4=y
BR2_TARGET_UBOOT=y
BR2_TARGET_UBOOT_BOARDNAME="mx6ull_14x14_evk"
-BR2_TARGET_UBOOT_CUSTOM_GIT=y
-BR2_TARGET_UBOOT_CUSTOM_REPO_URL="https://source.codeaurora.org/external/imx/uboot-imx.git"
-BR2_TARGET_UBOOT_CUSTOM_REPO_VERSION="lf-5.10.y-1.0.0"
+BR2_TARGET_UBOOT_CUSTOM_TARBALL=y
+BR2_TARGET_UBOOT_CUSTOM_TARBALL_LOCATION="$(call github,nxp-imx,uboot-imx,lf-5.10.y-1.0.0)/uboot-imx-lf-5.10.y-1.0.0.tar.gz"
BR2_TARGET_UBOOT_NEEDS_DTC=y
BR2_TARGET_UBOOT_FORMAT_IMX=y
BR2_PACKAGE_HOST_DOSFSTOOLS=y
--
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* [Buildroot] [PATCH 17/27] configs/freescale_imx7dsabresd: update codeaurora URLs to github
2022-12-29 21:23 ` [Buildroot] [PATCH 16/27] configs/freescale_imx6ullevk: " Julien Olivain
@ 2022-12-29 21:23 ` 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 ` [Buildroot] [PATCH 16/27] configs/freescale_imx6ullevk: " Peter Korsgaard
2 siblings, 1 reply; 58+ messages in thread
From: Julien Olivain @ 2022-12-29 21:23 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: this commit updates the Kernel and U-Boot download urls.
The method is also changed from _CUSTOM_GIT to _CUSTOM_TARBALL.
Signed-off-by: Julien Olivain <ju.o@free.fr>
---
configs/freescale_imx7dsabresd_defconfig | 10 ++++------
1 file changed, 4 insertions(+), 6 deletions(-)
diff --git a/configs/freescale_imx7dsabresd_defconfig b/configs/freescale_imx7dsabresd_defconfig
index 5a9cff488d..d337865831 100644
--- a/configs/freescale_imx7dsabresd_defconfig
+++ b/configs/freescale_imx7dsabresd_defconfig
@@ -10,9 +10,8 @@ BR2_TARGET_GENERIC_GETTY_PORT="ttymxc0"
# Kernel
BR2_LINUX_KERNEL=y
-BR2_LINUX_KERNEL_CUSTOM_GIT=y
-BR2_LINUX_KERNEL_CUSTOM_REPO_URL="https://source.codeaurora.org/external/imx/linux-imx.git"
-BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION="lf-5.10.y-1.0.0"
+BR2_LINUX_KERNEL_CUSTOM_TARBALL=y
+BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION="$(call github,nxp-imx,linux-imx,lf-5.10.y-1.0.0)/linux-imx-lf-5.10.y-1.0.0.tar.gz"
BR2_LINUX_KERNEL_DEFCONFIG="imx_v7"
BR2_LINUX_KERNEL_DTS_SUPPORT=y
BR2_LINUX_KERNEL_INTREE_DTS_NAME="imx7d-sdb"
@@ -25,9 +24,8 @@ BR2_TARGET_ROOTFS_EXT2_4=y
# bootloader
BR2_TARGET_UBOOT=y
BR2_TARGET_UBOOT_BOARDNAME="mx7dsabresd"
-BR2_TARGET_UBOOT_CUSTOM_GIT=y
-BR2_TARGET_UBOOT_CUSTOM_REPO_URL="https://source.codeaurora.org/external/imx/uboot-imx.git"
-BR2_TARGET_UBOOT_CUSTOM_REPO_VERSION="lf-5.10.y-1.0.0"
+BR2_TARGET_UBOOT_CUSTOM_TARBALL=y
+BR2_TARGET_UBOOT_CUSTOM_TARBALL_LOCATION="$(call github,nxp-imx,uboot-imx,lf-5.10.y-1.0.0)/uboot-imx-lf-5.10.y-1.0.0.tar.gz"
BR2_TARGET_UBOOT_FORMAT_IMX=y
BR2_TARGET_UBOOT_NEEDS_DTC=y
--
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
* Re: [Buildroot] [PATCH 17/27] configs/freescale_imx7dsabresd: update codeaurora URLs to github
2022-12-29 21:23 ` [Buildroot] [PATCH 17/27] configs/freescale_imx7dsabresd: " Julien Olivain
@ 2023-01-04 11:28 ` Peter Korsgaard
0 siblings, 0 replies; 58+ messages in thread
From: Peter Korsgaard @ 2023-01-04 11:28 UTC (permalink / raw)
To: Julien Olivain
Cc: Bernd Kuhls, Gary Bisson, Jérôme Pouiller, Gilles Talis,
Refik Tuzakli, Erik Larsson, Fabrice Goucem, Stephane Viau,
buildroot, Fabio Estevam, Matt Weber
>>>>> "Julien" == Julien Olivain <ju.o@free.fr> writes:
> 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: this commit updates the Kernel and U-Boot download urls.
> The method is also changed from _CUSTOM_GIT to _CUSTOM_TARBALL.
> Signed-off-by: Julien Olivain <ju.o@free.fr>
Committed to 2022.11.x and 2022.02.x, thanks.
--
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 58+ messages in thread
* [Buildroot] [PATCH 18/27] configs/freescale_imx8mqevk: update codeaurora URLs to github
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
@ 2022-12-29 21:23 ` Julien Olivain
2023-01-04 11:28 ` Peter Korsgaard
2023-01-04 11:28 ` [Buildroot] [PATCH 16/27] configs/freescale_imx6ullevk: " Peter Korsgaard
2 siblings, 1 reply; 58+ messages in thread
From: Julien Olivain @ 2022-12-29 21:23 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: this commit updates the Kernel, U-Boot and ATF download urls.
The method is also changed from _CUSTOM_GIT to _CUSTOM_TARBALL.
Signed-off-by: Julien Olivain <ju.o@free.fr>
---
configs/freescale_imx8mqevk_defconfig | 15 ++++++---------
1 file changed, 6 insertions(+), 9 deletions(-)
diff --git a/configs/freescale_imx8mqevk_defconfig b/configs/freescale_imx8mqevk_defconfig
index 7f5dd87b5f..e3f88dc44c 100644
--- a/configs/freescale_imx8mqevk_defconfig
+++ b/configs/freescale_imx8mqevk_defconfig
@@ -5,9 +5,8 @@ BR2_TARGET_GENERIC_GETTY_PORT="ttymxc0"
BR2_ROOTFS_POST_IMAGE_SCRIPT="board/freescale/common/imx/imx8-bootloader-prepare.sh board/freescale/common/imx/post-image.sh"
BR2_ROOTFS_POST_SCRIPT_ARGS="${UBOOT_DIR}/arch/arm/dts/imx8mq-evk.dtb"
BR2_LINUX_KERNEL=y
-BR2_LINUX_KERNEL_CUSTOM_GIT=y
-BR2_LINUX_KERNEL_CUSTOM_REPO_URL="https://source.codeaurora.org/external/imx/linux-imx"
-BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION="lf-5.10.y-1.0.0"
+BR2_LINUX_KERNEL_CUSTOM_TARBALL=y
+BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION="$(call github,nxp-imx,linux-imx,lf-5.10.y-1.0.0)/linux-imx-lf-5.10.y-1.0.0.tar.gz"
BR2_LINUX_KERNEL_DEFCONFIG="imx_v8"
BR2_LINUX_KERNEL_DTS_SUPPORT=y
BR2_LINUX_KERNEL_INTREE_DTS_NAME="freescale/imx8mq-evk"
@@ -19,16 +18,14 @@ BR2_TARGET_ROOTFS_EXT2=y
BR2_TARGET_ROOTFS_EXT2_4=y
BR2_TARGET_ROOTFS_EXT2_SIZE="120M"
BR2_TARGET_ARM_TRUSTED_FIRMWARE=y
-BR2_TARGET_ARM_TRUSTED_FIRMWARE_CUSTOM_GIT=y
-BR2_TARGET_ARM_TRUSTED_FIRMWARE_CUSTOM_REPO_URL="https://source.codeaurora.org/external/imx/imx-atf"
-BR2_TARGET_ARM_TRUSTED_FIRMWARE_CUSTOM_REPO_VERSION="lf-5.10.y-1.0.0"
+BR2_TARGET_ARM_TRUSTED_FIRMWARE_CUSTOM_TARBALL=y
+BR2_TARGET_ARM_TRUSTED_FIRMWARE_CUSTOM_TARBALL_LOCATION="$(call github,nxp-imx,imx-atf,lf-5.10.y-1.0.0)/imx-atf-lf-5.10.y-1.0.0.tar.gz"
BR2_TARGET_ARM_TRUSTED_FIRMWARE_PLATFORM="imx8mq"
BR2_TARGET_ARM_TRUSTED_FIRMWARE_BL31=y
BR2_TARGET_UBOOT=y
BR2_TARGET_UBOOT_BUILD_SYSTEM_KCONFIG=y
-BR2_TARGET_UBOOT_CUSTOM_GIT=y
-BR2_TARGET_UBOOT_CUSTOM_REPO_URL="https://source.codeaurora.org/external/imx/uboot-imx"
-BR2_TARGET_UBOOT_CUSTOM_REPO_VERSION="lf-5.10.y-1.0.0"
+BR2_TARGET_UBOOT_CUSTOM_TARBALL=y
+BR2_TARGET_UBOOT_CUSTOM_TARBALL_LOCATION="$(call github,nxp-imx,uboot-imx,lf-5.10.y-1.0.0)/uboot-imx-lf-5.10.y-1.0.0.tar.gz"
BR2_TARGET_UBOOT_BOARD_DEFCONFIG="imx8mq_evk"
BR2_TARGET_UBOOT_NEEDS_DTC=y
BR2_TARGET_UBOOT_FORMAT_CUSTOM=y
--
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* Re: [Buildroot] [PATCH 18/27] configs/freescale_imx8mqevk: update codeaurora URLs to github
2022-12-29 21:23 ` [Buildroot] [PATCH 18/27] configs/freescale_imx8mqevk: " Julien Olivain
@ 2023-01-04 11:28 ` Peter Korsgaard
0 siblings, 0 replies; 58+ messages in thread
From: Peter Korsgaard @ 2023-01-04 11:28 UTC (permalink / raw)
To: Julien Olivain
Cc: Bernd Kuhls, Gary Bisson, Jérôme Pouiller, Gilles Talis,
Refik Tuzakli, Erik Larsson, Fabrice Goucem, Stephane Viau,
buildroot, Fabio Estevam, Matt Weber
>>>>> "Julien" == Julien Olivain <ju.o@free.fr> writes:
> 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: this commit updates the Kernel, U-Boot and ATF download urls.
> The method is also changed from _CUSTOM_GIT to _CUSTOM_TARBALL.
> Signed-off-by: Julien Olivain <ju.o@free.fr>
Committed to 2022.11.x and 2022.02.x, thanks.
--
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 58+ messages in thread
* Re: [Buildroot] [PATCH 16/27] configs/freescale_imx6ullevk: update codeaurora URLs to github
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
2022-12-29 21:23 ` [Buildroot] [PATCH 18/27] configs/freescale_imx8mqevk: " Julien Olivain
@ 2023-01-04 11:28 ` Peter Korsgaard
2 siblings, 0 replies; 58+ messages in thread
From: Peter Korsgaard @ 2023-01-04 11:28 UTC (permalink / raw)
To: Julien Olivain
Cc: Bernd Kuhls, Gary Bisson, Jérôme Pouiller, Gilles Talis,
Refik Tuzakli, Erik Larsson, Fabrice Goucem, Stephane Viau,
buildroot, Fabio Estevam, Matt Weber
>>>>> "Julien" == Julien Olivain <ju.o@free.fr> writes:
> 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: this commit updates the Kernel and U-Boot download urls.
> The method is also changed from _CUSTOM_GIT to _CUSTOM_TARBALL.
> Signed-off-by: Julien Olivain <ju.o@free.fr>
Committed to 2022.11.x and 2022.02.x, thanks.
--
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 58+ messages in thread
* [Buildroot] [PATCH 19/27] configs/freescale_imx8mpevk: update codeaurora URLs to github
2022-12-29 19:47 [Buildroot] [PATCH 01/27] package/imx-mkimage: update codeaurora URLs to github Julien Olivain
` (14 preceding siblings ...)
2022-12-29 21:23 ` [Buildroot] [PATCH 16/27] configs/freescale_imx6ullevk: " Julien Olivain
@ 2022-12-29 22:25 ` Julien Olivain
2022-12-29 22:25 ` [Buildroot] [PATCH 20/27] configs/freescale_imx8mnevk: " Julien Olivain
` (2 more replies)
2022-12-30 9:57 ` [Buildroot] [PATCH 22/27] configs/freescale_imx8qmmek: " Julien Olivain
` (2 subsequent siblings)
18 siblings, 3 replies; 58+ messages in thread
From: Julien Olivain @ 2022-12-29 22:25 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: this commit updates the Kernel, U-Boot and ATF download urls.
The method is also changed from _CUSTOM_GIT to _CUSTOM_TARBALL.
Signed-off-by: Julien Olivain <ju.o@free.fr>
---
configs/freescale_imx8mpevk_defconfig | 15 ++++++---------
1 file changed, 6 insertions(+), 9 deletions(-)
diff --git a/configs/freescale_imx8mpevk_defconfig b/configs/freescale_imx8mpevk_defconfig
index 8d0e6e0f3e..5a72406b67 100644
--- a/configs/freescale_imx8mpevk_defconfig
+++ b/configs/freescale_imx8mpevk_defconfig
@@ -5,9 +5,8 @@ BR2_TARGET_GENERIC_GETTY_PORT="ttymxc1"
BR2_ROOTFS_POST_IMAGE_SCRIPT="board/freescale/common/imx/imx8-bootloader-prepare.sh board/freescale/common/imx/post-image.sh"
BR2_ROOTFS_POST_SCRIPT_ARGS="${UBOOT_DIR}/arch/arm/dts/imx8mp-evk.dtb"
BR2_LINUX_KERNEL=y
-BR2_LINUX_KERNEL_CUSTOM_GIT=y
-BR2_LINUX_KERNEL_CUSTOM_REPO_URL="https://source.codeaurora.org/external/imx/linux-imx"
-BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION="lf-5.10.y-1.0.0"
+BR2_LINUX_KERNEL_CUSTOM_TARBALL=y
+BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION="$(call github,nxp-imx,linux-imx,lf-5.10.y-1.0.0)/linux-imx-lf-5.10.y-1.0.0.tar.gz"
BR2_LINUX_KERNEL_DEFCONFIG="imx_v8"
BR2_LINUX_KERNEL_DTS_SUPPORT=y
BR2_LINUX_KERNEL_INTREE_DTS_NAME="freescale/imx8mp-evk"
@@ -19,16 +18,14 @@ BR2_TARGET_ROOTFS_EXT2=y
BR2_TARGET_ROOTFS_EXT2_4=y
BR2_TARGET_ROOTFS_EXT2_SIZE="120M"
BR2_TARGET_ARM_TRUSTED_FIRMWARE=y
-BR2_TARGET_ARM_TRUSTED_FIRMWARE_CUSTOM_GIT=y
-BR2_TARGET_ARM_TRUSTED_FIRMWARE_CUSTOM_REPO_URL="https://source.codeaurora.org/external/imx/imx-atf"
-BR2_TARGET_ARM_TRUSTED_FIRMWARE_CUSTOM_REPO_VERSION="lf-5.10.y-1.0.0"
+BR2_TARGET_ARM_TRUSTED_FIRMWARE_CUSTOM_TARBALL=y
+BR2_TARGET_ARM_TRUSTED_FIRMWARE_CUSTOM_TARBALL_LOCATION="$(call github,nxp-imx,imx-atf,lf-5.10.y-1.0.0)/imx-atf-lf-5.10.y-1.0.0.tar.gz"
BR2_TARGET_ARM_TRUSTED_FIRMWARE_PLATFORM="imx8mp"
BR2_TARGET_ARM_TRUSTED_FIRMWARE_BL31=y
BR2_TARGET_UBOOT=y
BR2_TARGET_UBOOT_BUILD_SYSTEM_KCONFIG=y
-BR2_TARGET_UBOOT_CUSTOM_GIT=y
-BR2_TARGET_UBOOT_CUSTOM_REPO_URL="https://source.codeaurora.org/external/imx/uboot-imx"
-BR2_TARGET_UBOOT_CUSTOM_REPO_VERSION="lf-5.10.y-1.0.0"
+BR2_TARGET_UBOOT_CUSTOM_TARBALL=y
+BR2_TARGET_UBOOT_CUSTOM_TARBALL_LOCATION="$(call github,nxp-imx,uboot-imx,lf-5.10.y-1.0.0)/uboot-imx-lf-5.10.y-1.0.0.tar.gz"
BR2_TARGET_UBOOT_BOARD_DEFCONFIG="imx8mp_evk"
BR2_TARGET_UBOOT_NEEDS_DTC=y
BR2_TARGET_UBOOT_FORMAT_CUSTOM=y
--
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* [Buildroot] [PATCH 20/27] configs/freescale_imx8mnevk: update codeaurora URLs to github
2022-12-29 22:25 ` [Buildroot] [PATCH 19/27] configs/freescale_imx8mpevk: " Julien Olivain
@ 2022-12-29 22:25 ` 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:28 ` [Buildroot] [PATCH 19/27] configs/freescale_imx8mpevk: " Peter Korsgaard
2 siblings, 1 reply; 58+ messages in thread
From: Julien Olivain @ 2022-12-29 22:25 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: this commit updates the Kernel, U-Boot and ATF download urls.
The method is also changed from _CUSTOM_GIT to _CUSTOM_TARBALL.
Signed-off-by: Julien Olivain <ju.o@free.fr>
---
configs/freescale_imx8mnevk_defconfig | 15 ++++++---------
1 file changed, 6 insertions(+), 9 deletions(-)
diff --git a/configs/freescale_imx8mnevk_defconfig b/configs/freescale_imx8mnevk_defconfig
index b24eb1566b..0653978d91 100644
--- a/configs/freescale_imx8mnevk_defconfig
+++ b/configs/freescale_imx8mnevk_defconfig
@@ -5,9 +5,8 @@ BR2_TARGET_GENERIC_GETTY_PORT="ttymxc1"
BR2_ROOTFS_POST_IMAGE_SCRIPT="board/freescale/common/imx/imx8-bootloader-prepare.sh board/freescale/common/imx/post-image.sh"
BR2_ROOTFS_POST_SCRIPT_ARGS="${UBOOT_DIR}/arch/arm/dts/imx8mn-ddr4-evk.dtb"
BR2_LINUX_KERNEL=y
-BR2_LINUX_KERNEL_CUSTOM_GIT=y
-BR2_LINUX_KERNEL_CUSTOM_REPO_URL="https://source.codeaurora.org/external/imx/linux-imx"
-BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION="lf-5.10.y-1.0.0"
+BR2_LINUX_KERNEL_CUSTOM_TARBALL=y
+BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION="$(call github,nxp-imx,linux-imx,lf-5.10.y-1.0.0)/linux-imx-lf-5.10.y-1.0.0.tar.gz"
BR2_LINUX_KERNEL_DEFCONFIG="imx_v8"
BR2_LINUX_KERNEL_DTS_SUPPORT=y
BR2_LINUX_KERNEL_INTREE_DTS_NAME="freescale/imx8mn-ddr4-evk"
@@ -20,16 +19,14 @@ BR2_TARGET_ROOTFS_EXT2=y
BR2_TARGET_ROOTFS_EXT2_4=y
BR2_TARGET_ROOTFS_EXT2_SIZE="120M"
BR2_TARGET_ARM_TRUSTED_FIRMWARE=y
-BR2_TARGET_ARM_TRUSTED_FIRMWARE_CUSTOM_GIT=y
-BR2_TARGET_ARM_TRUSTED_FIRMWARE_CUSTOM_REPO_URL="https://source.codeaurora.org/external/imx/imx-atf"
-BR2_TARGET_ARM_TRUSTED_FIRMWARE_CUSTOM_REPO_VERSION="lf-5.10.y-1.0.0"
+BR2_TARGET_ARM_TRUSTED_FIRMWARE_CUSTOM_TARBALL=y
+BR2_TARGET_ARM_TRUSTED_FIRMWARE_CUSTOM_TARBALL_LOCATION="$(call github,nxp-imx,imx-atf,lf-5.10.y-1.0.0)/imx-atf-lf-5.10.y-1.0.0.tar.gz"
BR2_TARGET_ARM_TRUSTED_FIRMWARE_PLATFORM="imx8mn"
BR2_TARGET_ARM_TRUSTED_FIRMWARE_BL31=y
BR2_TARGET_UBOOT=y
BR2_TARGET_UBOOT_BUILD_SYSTEM_KCONFIG=y
-BR2_TARGET_UBOOT_CUSTOM_GIT=y
-BR2_TARGET_UBOOT_CUSTOM_REPO_URL="https://source.codeaurora.org/external/imx/uboot-imx"
-BR2_TARGET_UBOOT_CUSTOM_REPO_VERSION="lf-5.10.y-1.0.0"
+BR2_TARGET_UBOOT_CUSTOM_TARBALL=y
+BR2_TARGET_UBOOT_CUSTOM_TARBALL_LOCATION="$(call github,nxp-imx,uboot-imx,lf-5.10.y-1.0.0)/uboot-imx-lf-5.10.y-1.0.0.tar.gz"
BR2_TARGET_UBOOT_BOARD_DEFCONFIG="imx8mn_ddr4_evk"
BR2_TARGET_UBOOT_NEEDS_DTC=y
BR2_TARGET_UBOOT_FORMAT_CUSTOM=y
--
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* Re: [Buildroot] [PATCH 20/27] configs/freescale_imx8mnevk: update codeaurora URLs to github
2022-12-29 22:25 ` [Buildroot] [PATCH 20/27] configs/freescale_imx8mnevk: " Julien Olivain
@ 2023-01-04 11:29 ` Peter Korsgaard
0 siblings, 0 replies; 58+ messages in thread
From: Peter Korsgaard @ 2023-01-04 11:29 UTC (permalink / raw)
To: Julien Olivain
Cc: Bernd Kuhls, Gary Bisson, Jérôme Pouiller, Gilles Talis,
Refik Tuzakli, Erik Larsson, Fabrice Goucem, Stephane Viau,
buildroot, Fabio Estevam, Matt Weber
>>>>> "Julien" == Julien Olivain <ju.o@free.fr> writes:
> 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: this commit updates the Kernel, U-Boot and ATF download urls.
> The method is also changed from _CUSTOM_GIT to _CUSTOM_TARBALL.
> Signed-off-by: Julien Olivain <ju.o@free.fr>
Committed to 2022.11.x and 2022.02.x, thanks.
--
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 58+ messages in thread
* [Buildroot] [PATCH 21/27] configs/freescale_imx8mmevk: update codeaurora URLs to github
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
@ 2022-12-29 22:25 ` Julien Olivain
2023-01-04 11:29 ` Peter Korsgaard
2023-01-04 11:28 ` [Buildroot] [PATCH 19/27] configs/freescale_imx8mpevk: " Peter Korsgaard
2 siblings, 1 reply; 58+ messages in thread
From: Julien Olivain @ 2022-12-29 22:25 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: this commit updates the Kernel, U-Boot and ATF download urls.
The method is also changed from _CUSTOM_GIT to _CUSTOM_TARBALL.
Signed-off-by: Julien Olivain <ju.o@free.fr>
---
configs/freescale_imx8mmevk_defconfig | 15 ++++++---------
1 file changed, 6 insertions(+), 9 deletions(-)
diff --git a/configs/freescale_imx8mmevk_defconfig b/configs/freescale_imx8mmevk_defconfig
index ae82f29158..dcb4b42540 100644
--- a/configs/freescale_imx8mmevk_defconfig
+++ b/configs/freescale_imx8mmevk_defconfig
@@ -5,9 +5,8 @@ BR2_TARGET_GENERIC_GETTY_PORT="ttymxc1"
BR2_ROOTFS_POST_IMAGE_SCRIPT="board/freescale/common/imx/imx8-bootloader-prepare.sh board/freescale/common/imx/post-image.sh"
BR2_ROOTFS_POST_SCRIPT_ARGS="${UBOOT_DIR}/arch/arm/dts/imx8mm-evk.dtb"
BR2_LINUX_KERNEL=y
-BR2_LINUX_KERNEL_CUSTOM_GIT=y
-BR2_LINUX_KERNEL_CUSTOM_REPO_URL="https://source.codeaurora.org/external/imx/linux-imx"
-BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION="lf-5.10.y-1.0.0"
+BR2_LINUX_KERNEL_CUSTOM_TARBALL=y
+BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION="$(call github,nxp-imx,linux-imx,lf-5.10.y-1.0.0)/linux-imx-lf-5.10.y-1.0.0.tar.gz"
BR2_LINUX_KERNEL_DEFCONFIG="imx_v8"
BR2_LINUX_KERNEL_DTS_SUPPORT=y
BR2_LINUX_KERNEL_INTREE_DTS_NAME="freescale/imx8mm-evk freescale/imx8mm-evk-revb-qca-wifi"
@@ -19,16 +18,14 @@ BR2_TARGET_ROOTFS_EXT2=y
BR2_TARGET_ROOTFS_EXT2_4=y
BR2_TARGET_ROOTFS_EXT2_SIZE="120M"
BR2_TARGET_ARM_TRUSTED_FIRMWARE=y
-BR2_TARGET_ARM_TRUSTED_FIRMWARE_CUSTOM_GIT=y
-BR2_TARGET_ARM_TRUSTED_FIRMWARE_CUSTOM_REPO_URL="https://source.codeaurora.org/external/imx/imx-atf"
-BR2_TARGET_ARM_TRUSTED_FIRMWARE_CUSTOM_REPO_VERSION="lf-5.10.y-1.0.0"
+BR2_TARGET_ARM_TRUSTED_FIRMWARE_CUSTOM_TARBALL=y
+BR2_TARGET_ARM_TRUSTED_FIRMWARE_CUSTOM_TARBALL_LOCATION="$(call github,nxp-imx,imx-atf,lf-5.10.y-1.0.0)/imx-atf-lf-5.10.y-1.0.0.tar.gz"
BR2_TARGET_ARM_TRUSTED_FIRMWARE_PLATFORM="imx8mm"
BR2_TARGET_ARM_TRUSTED_FIRMWARE_BL31=y
BR2_TARGET_UBOOT=y
BR2_TARGET_UBOOT_BUILD_SYSTEM_KCONFIG=y
-BR2_TARGET_UBOOT_CUSTOM_GIT=y
-BR2_TARGET_UBOOT_CUSTOM_REPO_URL="https://source.codeaurora.org/external/imx/uboot-imx"
-BR2_TARGET_UBOOT_CUSTOM_REPO_VERSION="lf-5.10.y-1.0.0"
+BR2_TARGET_UBOOT_CUSTOM_TARBALL=y
+BR2_TARGET_UBOOT_CUSTOM_TARBALL_LOCATION="$(call github,nxp-imx,uboot-imx,lf-5.10.y-1.0.0)/uboot-imx-lf-5.10.y-1.0.0.tar.gz"
BR2_TARGET_UBOOT_BOARD_DEFCONFIG="imx8mm_evk"
BR2_TARGET_UBOOT_NEEDS_DTC=y
BR2_TARGET_UBOOT_FORMAT_CUSTOM=y
--
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* Re: [Buildroot] [PATCH 21/27] configs/freescale_imx8mmevk: update codeaurora URLs to github
2022-12-29 22:25 ` [Buildroot] [PATCH 21/27] configs/freescale_imx8mmevk: " Julien Olivain
@ 2023-01-04 11:29 ` Peter Korsgaard
0 siblings, 0 replies; 58+ messages in thread
From: Peter Korsgaard @ 2023-01-04 11:29 UTC (permalink / raw)
To: Julien Olivain
Cc: Bernd Kuhls, Gary Bisson, Jérôme Pouiller, Gilles Talis,
Refik Tuzakli, Erik Larsson, Fabrice Goucem, Stephane Viau,
buildroot, Fabio Estevam, Matt Weber
>>>>> "Julien" == Julien Olivain <ju.o@free.fr> writes:
> 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: this commit updates the Kernel, U-Boot and ATF download urls.
> The method is also changed from _CUSTOM_GIT to _CUSTOM_TARBALL.
> Signed-off-by: Julien Olivain <ju.o@free.fr>
Committed to 2022.11.x and 2022.02.x, thanks.
--
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 58+ messages in thread
* Re: [Buildroot] [PATCH 19/27] configs/freescale_imx8mpevk: update codeaurora URLs to github
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
2022-12-29 22:25 ` [Buildroot] [PATCH 21/27] configs/freescale_imx8mmevk: " Julien Olivain
@ 2023-01-04 11:28 ` Peter Korsgaard
2 siblings, 0 replies; 58+ messages in thread
From: Peter Korsgaard @ 2023-01-04 11:28 UTC (permalink / raw)
To: Julien Olivain
Cc: Bernd Kuhls, Gary Bisson, Jérôme Pouiller, Gilles Talis,
Refik Tuzakli, Erik Larsson, Fabrice Goucem, Stephane Viau,
buildroot, Fabio Estevam, Matt Weber
>>>>> "Julien" == Julien Olivain <ju.o@free.fr> writes:
> 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: this commit updates the Kernel, U-Boot and ATF download urls.
> The method is also changed from _CUSTOM_GIT to _CUSTOM_TARBALL.
> Signed-off-by: Julien Olivain <ju.o@free.fr>
Committed to 2022.11.x and 2022.02.x, thanks.
--
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 58+ messages in thread
* [Buildroot] [PATCH 22/27] configs/freescale_imx8qmmek: update codeaurora URLs to github
2022-12-29 19:47 [Buildroot] [PATCH 01/27] package/imx-mkimage: update codeaurora URLs to github Julien Olivain
` (15 preceding siblings ...)
2022-12-29 22:25 ` [Buildroot] [PATCH 19/27] configs/freescale_imx8mpevk: " Julien Olivain
@ 2022-12-30 9:57 ` Julien Olivain
2022-12-30 9:57 ` [Buildroot] [PATCH 23/27] configs/freescale_imx8qxpmek: " Julien Olivain
` (5 more replies)
2022-12-31 16:35 ` [Buildroot] [PATCH 01/27] package/imx-mkimage: " Yann E. MORIN
2023-01-04 11:26 ` Peter Korsgaard
18 siblings, 6 replies; 58+ messages in thread
From: Julien Olivain @ 2022-12-30 9:57 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: this commit updates the Kernel, U-Boot and ATF download urls.
The method is also changed from _CUSTOM_GIT to _CUSTOM_TARBALL.
Signed-off-by: Julien Olivain <ju.o@free.fr>
---
configs/freescale_imx8qmmek_defconfig | 15 ++++++---------
1 file changed, 6 insertions(+), 9 deletions(-)
diff --git a/configs/freescale_imx8qmmek_defconfig b/configs/freescale_imx8qmmek_defconfig
index 8a0e866cee..75777646df 100644
--- a/configs/freescale_imx8qmmek_defconfig
+++ b/configs/freescale_imx8qmmek_defconfig
@@ -4,9 +4,8 @@ BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_5_10=y
BR2_ROOTFS_POST_IMAGE_SCRIPT="board/freescale/common/imx/imx8-bootloader-prepare.sh board/freescale/common/imx/post-image.sh"
BR2_ROOTFS_POST_SCRIPT_ARGS="${UBOOT_DIR}/arch/arm/dts/fsl-imx8qm-mek.dtb"
BR2_LINUX_KERNEL=y
-BR2_LINUX_KERNEL_CUSTOM_GIT=y
-BR2_LINUX_KERNEL_CUSTOM_REPO_URL="https://source.codeaurora.org/external/imx/linux-imx"
-BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION="lf-5.10.y-1.0.0"
+BR2_LINUX_KERNEL_CUSTOM_TARBALL=y
+BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION="$(call github,nxp-imx,linux-imx,lf-5.10.y-1.0.0)/linux-imx-lf-5.10.y-1.0.0.tar.gz"
BR2_LINUX_KERNEL_DEFCONFIG="imx_v8"
BR2_LINUX_KERNEL_DTS_SUPPORT=y
BR2_LINUX_KERNEL_INTREE_DTS_NAME="freescale/imx8qm-mek"
@@ -20,16 +19,14 @@ BR2_TARGET_ROOTFS_EXT2=y
BR2_TARGET_ROOTFS_EXT2_4=y
BR2_TARGET_ROOTFS_EXT2_SIZE="120M"
BR2_TARGET_ARM_TRUSTED_FIRMWARE=y
-BR2_TARGET_ARM_TRUSTED_FIRMWARE_CUSTOM_GIT=y
-BR2_TARGET_ARM_TRUSTED_FIRMWARE_CUSTOM_REPO_URL="https://source.codeaurora.org/external/imx/imx-atf"
-BR2_TARGET_ARM_TRUSTED_FIRMWARE_CUSTOM_REPO_VERSION="lf-5.10.y-1.0.0"
+BR2_TARGET_ARM_TRUSTED_FIRMWARE_CUSTOM_TARBALL=y
+BR2_TARGET_ARM_TRUSTED_FIRMWARE_CUSTOM_TARBALL_LOCATION="$(call github,nxp-imx,imx-atf,lf-5.10.y-1.0.0)/imx-atf-lf-5.10.y-1.0.0.tar.gz"
BR2_TARGET_ARM_TRUSTED_FIRMWARE_PLATFORM="imx8qm"
BR2_TARGET_ARM_TRUSTED_FIRMWARE_BL31=y
BR2_TARGET_UBOOT=y
BR2_TARGET_UBOOT_BUILD_SYSTEM_KCONFIG=y
-BR2_TARGET_UBOOT_CUSTOM_GIT=y
-BR2_TARGET_UBOOT_CUSTOM_REPO_URL="https://source.codeaurora.org/external/imx/uboot-imx"
-BR2_TARGET_UBOOT_CUSTOM_REPO_VERSION="lf-5.10.y-1.0.0"
+BR2_TARGET_UBOOT_CUSTOM_TARBALL=y
+BR2_TARGET_UBOOT_CUSTOM_TARBALL_LOCATION="$(call github,nxp-imx,uboot-imx,lf-5.10.y-1.0.0)/uboot-imx-lf-5.10.y-1.0.0.tar.gz"
BR2_TARGET_UBOOT_BOARD_DEFCONFIG="imx8qm_mek"
BR2_TARGET_UBOOT_NEEDS_DTC=y
BR2_PACKAGE_HOST_DOSFSTOOLS=y
--
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* [Buildroot] [PATCH 23/27] configs/freescale_imx8qxpmek: update codeaurora URLs to github
2022-12-30 9:57 ` [Buildroot] [PATCH 22/27] configs/freescale_imx8qmmek: " Julien Olivain
@ 2022-12-30 9:57 ` Julien Olivain
2023-01-04 11:29 ` Peter Korsgaard
2022-12-30 9:57 ` [Buildroot] [PATCH 24/27] configs/imx8mmpico: " Julien Olivain
` (4 subsequent siblings)
5 siblings, 1 reply; 58+ messages in thread
From: Julien Olivain @ 2022-12-30 9:57 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: this commit updates the Kernel, U-Boot and ATF download urls.
The method is also changed from _CUSTOM_GIT to _CUSTOM_TARBALL.
Signed-off-by: Julien Olivain <ju.o@free.fr>
---
configs/freescale_imx8qxpmek_defconfig | 15 ++++++---------
1 file changed, 6 insertions(+), 9 deletions(-)
diff --git a/configs/freescale_imx8qxpmek_defconfig b/configs/freescale_imx8qxpmek_defconfig
index 1ffbd123e0..ce8f6b7c84 100644
--- a/configs/freescale_imx8qxpmek_defconfig
+++ b/configs/freescale_imx8qxpmek_defconfig
@@ -6,9 +6,8 @@ BR2_TARGET_GENERIC_GETTY_PORT="ttyLP0"
BR2_ROOTFS_POST_IMAGE_SCRIPT="board/freescale/common/imx/imx8-bootloader-prepare.sh board/freescale/common/imx/post-image.sh"
BR2_ROOTFS_POST_SCRIPT_ARGS="${UBOOT_DIR}/arch/arm/dts/fsl-imx8qxp-mek.dtb"
BR2_LINUX_KERNEL=y
-BR2_LINUX_KERNEL_CUSTOM_GIT=y
-BR2_LINUX_KERNEL_CUSTOM_REPO_URL="https://source.codeaurora.org/external/imx/linux-imx"
-BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION="lf-5.10.y-1.0.0"
+BR2_LINUX_KERNEL_CUSTOM_TARBALL=y
+BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION="$(call github,nxp-imx,linux-imx,lf-5.10.y-1.0.0)/linux-imx-lf-5.10.y-1.0.0.tar.gz"
BR2_LINUX_KERNEL_DEFCONFIG="imx_v8"
BR2_LINUX_KERNEL_DTS_SUPPORT=y
BR2_LINUX_KERNEL_INTREE_DTS_NAME="freescale/imx8qxp-mek"
@@ -22,16 +21,14 @@ BR2_TARGET_ROOTFS_EXT2=y
BR2_TARGET_ROOTFS_EXT2_4=y
BR2_TARGET_ROOTFS_EXT2_SIZE="120M"
BR2_TARGET_ARM_TRUSTED_FIRMWARE=y
-BR2_TARGET_ARM_TRUSTED_FIRMWARE_CUSTOM_GIT=y
-BR2_TARGET_ARM_TRUSTED_FIRMWARE_CUSTOM_REPO_URL="https://source.codeaurora.org/external/imx/imx-atf"
-BR2_TARGET_ARM_TRUSTED_FIRMWARE_CUSTOM_REPO_VERSION="lf-5.10.y-1.0.0"
+BR2_TARGET_ARM_TRUSTED_FIRMWARE_CUSTOM_TARBALL=y
+BR2_TARGET_ARM_TRUSTED_FIRMWARE_CUSTOM_TARBALL_LOCATION="$(call github,nxp-imx,imx-atf,lf-5.10.y-1.0.0)/imx-atf-lf-5.10.y-1.0.0.tar.gz"
BR2_TARGET_ARM_TRUSTED_FIRMWARE_PLATFORM="imx8qx"
BR2_TARGET_ARM_TRUSTED_FIRMWARE_BL31=y
BR2_TARGET_UBOOT=y
BR2_TARGET_UBOOT_BUILD_SYSTEM_KCONFIG=y
-BR2_TARGET_UBOOT_CUSTOM_GIT=y
-BR2_TARGET_UBOOT_CUSTOM_REPO_URL="https://source.codeaurora.org/external/imx/uboot-imx"
-BR2_TARGET_UBOOT_CUSTOM_REPO_VERSION="lf-5.10.y-1.0.0"
+BR2_TARGET_UBOOT_CUSTOM_TARBALL=y
+BR2_TARGET_UBOOT_CUSTOM_TARBALL_LOCATION="$(call github,nxp-imx,uboot-imx,lf-5.10.y-1.0.0)/uboot-imx-lf-5.10.y-1.0.0.tar.gz"
BR2_TARGET_UBOOT_BOARD_DEFCONFIG="imx8qxp_mek"
BR2_TARGET_UBOOT_NEEDS_DTC=y
BR2_PACKAGE_HOST_DOSFSTOOLS=y
--
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* Re: [Buildroot] [PATCH 23/27] configs/freescale_imx8qxpmek: update codeaurora URLs to github
2022-12-30 9:57 ` [Buildroot] [PATCH 23/27] configs/freescale_imx8qxpmek: " Julien Olivain
@ 2023-01-04 11:29 ` Peter Korsgaard
0 siblings, 0 replies; 58+ messages in thread
From: Peter Korsgaard @ 2023-01-04 11:29 UTC (permalink / raw)
To: Julien Olivain
Cc: Bernd Kuhls, Gary Bisson, Jérôme Pouiller, Gilles Talis,
Refik Tuzakli, Erik Larsson, Fabrice Goucem, Stephane Viau,
buildroot, Fabio Estevam, Matt Weber
>>>>> "Julien" == Julien Olivain <ju.o@free.fr> writes:
> 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: this commit updates the Kernel, U-Boot and ATF download urls.
> The method is also changed from _CUSTOM_GIT to _CUSTOM_TARBALL.
> Signed-off-by: Julien Olivain <ju.o@free.fr>
Committed to 2022.11.x and 2022.02.x, thanks.
--
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 58+ messages in thread
* [Buildroot] [PATCH 24/27] configs/imx8mmpico: update codeaurora URLs to github
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
@ 2022-12-30 9:57 ` Julien Olivain
2023-01-04 11:29 ` Peter Korsgaard
2022-12-30 9:57 ` [Buildroot] [PATCH 25/27] configs/imx8mpico: " Julien Olivain
` (3 subsequent siblings)
5 siblings, 1 reply; 58+ messages in thread
From: Julien Olivain @ 2022-12-30 9:57 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: this commit updates only the ATF download urls.
The method is also changed from _CUSTOM_GIT to _CUSTOM_TARBALL.
Signed-off-by: Julien Olivain <ju.o@free.fr>
---
configs/imx8mmpico_defconfig | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/configs/imx8mmpico_defconfig b/configs/imx8mmpico_defconfig
index 7c19c8c81b..8c34c40fef 100644
--- a/configs/imx8mmpico_defconfig
+++ b/configs/imx8mmpico_defconfig
@@ -17,9 +17,8 @@ BR2_TARGET_ROOTFS_EXT2_4=y
BR2_TARGET_ROOTFS_EXT2_SIZE="120M"
# BR2_TARGET_ROOTFS_TAR is not set
BR2_TARGET_ARM_TRUSTED_FIRMWARE=y
-BR2_TARGET_ARM_TRUSTED_FIRMWARE_CUSTOM_GIT=y
-BR2_TARGET_ARM_TRUSTED_FIRMWARE_CUSTOM_REPO_URL="https://source.codeaurora.org/external/imx/imx-atf"
-BR2_TARGET_ARM_TRUSTED_FIRMWARE_CUSTOM_REPO_VERSION="lf-5.10.72-2.2.0"
+BR2_TARGET_ARM_TRUSTED_FIRMWARE_CUSTOM_TARBALL=y
+BR2_TARGET_ARM_TRUSTED_FIRMWARE_CUSTOM_TARBALL_LOCATION="$(call github,nxp-imx,imx-atf,lf-5.10.72-2.2.0)/imx-atf-lf-5.10.72-2.2.0.tar.gz"
BR2_TARGET_ARM_TRUSTED_FIRMWARE_PLATFORM="imx8mm"
BR2_TARGET_ARM_TRUSTED_FIRMWARE_BL31=y
BR2_TARGET_UBOOT=y
--
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* Re: [Buildroot] [PATCH 24/27] configs/imx8mmpico: update codeaurora URLs to github
2022-12-30 9:57 ` [Buildroot] [PATCH 24/27] configs/imx8mmpico: " Julien Olivain
@ 2023-01-04 11:29 ` Peter Korsgaard
0 siblings, 0 replies; 58+ messages in thread
From: Peter Korsgaard @ 2023-01-04 11:29 UTC (permalink / raw)
To: Julien Olivain
Cc: Bernd Kuhls, Gary Bisson, Jérôme Pouiller, Gilles Talis,
Refik Tuzakli, Erik Larsson, Fabrice Goucem, Stephane Viau,
buildroot, Fabio Estevam, Matt Weber
>>>>> "Julien" == Julien Olivain <ju.o@free.fr> writes:
> 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: this commit updates only the ATF download urls.
> The method is also changed from _CUSTOM_GIT to _CUSTOM_TARBALL.
> Signed-off-by: Julien Olivain <ju.o@free.fr>
Committed to 2022.11.x, thanks (different version in 2022.02.x).
--
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 58+ messages in thread
* [Buildroot] [PATCH 25/27] configs/imx8mpico: update codeaurora URLs to github
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
2022-12-30 9:57 ` [Buildroot] [PATCH 24/27] configs/imx8mmpico: " Julien Olivain
@ 2022-12-30 9:57 ` Julien Olivain
2023-01-04 11:29 ` Peter Korsgaard
2022-12-30 9:57 ` [Buildroot] [PATCH 26/27] configs/imx8mqevk: " Julien Olivain
` (2 subsequent siblings)
5 siblings, 1 reply; 58+ messages in thread
From: Julien Olivain @ 2022-12-30 9:57 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: this commit updates only the ATF download urls.
The method is also changed from _CUSTOM_GIT to _CUSTOM_TARBALL.
Signed-off-by: Julien Olivain <ju.o@free.fr>
---
configs/imx8mpico_defconfig | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/configs/imx8mpico_defconfig b/configs/imx8mpico_defconfig
index 55746fb67e..1df8c104ec 100644
--- a/configs/imx8mpico_defconfig
+++ b/configs/imx8mpico_defconfig
@@ -17,9 +17,8 @@ BR2_TARGET_ROOTFS_EXT2_4=y
BR2_TARGET_ROOTFS_EXT2_SIZE="120M"
# BR2_TARGET_ROOTFS_TAR is not set
BR2_TARGET_ARM_TRUSTED_FIRMWARE=y
-BR2_TARGET_ARM_TRUSTED_FIRMWARE_CUSTOM_GIT=y
-BR2_TARGET_ARM_TRUSTED_FIRMWARE_CUSTOM_REPO_URL="https://source.codeaurora.org/external/imx/imx-atf"
-BR2_TARGET_ARM_TRUSTED_FIRMWARE_CUSTOM_REPO_VERSION="lf-5.10.72-2.2.0"
+BR2_TARGET_ARM_TRUSTED_FIRMWARE_CUSTOM_TARBALL=y
+BR2_TARGET_ARM_TRUSTED_FIRMWARE_CUSTOM_TARBALL_LOCATION="$(call github,nxp-imx,imx-atf,lf-5.10.72-2.2.0)/imx-atf-lf-5.10.72-2.2.0.tar.gz"
BR2_TARGET_ARM_TRUSTED_FIRMWARE_PLATFORM="imx8mq"
BR2_TARGET_ARM_TRUSTED_FIRMWARE_BL31=y
BR2_TARGET_UBOOT=y
--
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* Re: [Buildroot] [PATCH 25/27] configs/imx8mpico: update codeaurora URLs to github
2022-12-30 9:57 ` [Buildroot] [PATCH 25/27] configs/imx8mpico: " Julien Olivain
@ 2023-01-04 11:29 ` Peter Korsgaard
0 siblings, 0 replies; 58+ messages in thread
From: Peter Korsgaard @ 2023-01-04 11:29 UTC (permalink / raw)
To: Julien Olivain
Cc: Bernd Kuhls, Gary Bisson, Jérôme Pouiller, Gilles Talis,
Refik Tuzakli, Erik Larsson, Fabrice Goucem, Stephane Viau,
buildroot, Fabio Estevam, Matt Weber
>>>>> "Julien" == Julien Olivain <ju.o@free.fr> writes:
> 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: this commit updates only the ATF download urls.
> The method is also changed from _CUSTOM_GIT to _CUSTOM_TARBALL.
> Signed-off-by: Julien Olivain <ju.o@free.fr>
Committed to 2022.11.x, thanks (different version in 2022.02.x).
--
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 58+ messages in thread
* [Buildroot] [PATCH 26/27] configs/imx8mqevk: update codeaurora URLs to github
2022-12-30 9:57 ` [Buildroot] [PATCH 22/27] configs/freescale_imx8qmmek: " Julien Olivain
` (2 preceding siblings ...)
2022-12-30 9:57 ` [Buildroot] [PATCH 25/27] configs/imx8mpico: " Julien Olivain
@ 2022-12-30 9:57 ` Julien Olivain
2023-01-04 11:29 ` Peter Korsgaard
2022-12-30 9:57 ` [Buildroot] [PATCH 27/27] configs/ls1028ardb: " Julien Olivain
2023-01-04 11:29 ` [Buildroot] [PATCH 22/27] configs/freescale_imx8qmmek: " Peter Korsgaard
5 siblings, 1 reply; 58+ messages in thread
From: Julien Olivain @ 2022-12-30 9:57 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: this commit updates the U-Boot and ATF download urls.
The method is also changed from _CUSTOM_GIT to _CUSTOM_TARBALL.
Signed-off-by: Julien Olivain <ju.o@free.fr>
---
configs/imx8mqevk_defconfig | 10 ++++------
1 file changed, 4 insertions(+), 6 deletions(-)
diff --git a/configs/imx8mqevk_defconfig b/configs/imx8mqevk_defconfig
index 73f3f3dcc5..943a479932 100644
--- a/configs/imx8mqevk_defconfig
+++ b/configs/imx8mqevk_defconfig
@@ -18,16 +18,14 @@ BR2_TARGET_ROOTFS_EXT2=y
BR2_TARGET_ROOTFS_EXT2_4=y
BR2_TARGET_ROOTFS_EXT2_SIZE="120M"
BR2_TARGET_ARM_TRUSTED_FIRMWARE=y
-BR2_TARGET_ARM_TRUSTED_FIRMWARE_CUSTOM_GIT=y
-BR2_TARGET_ARM_TRUSTED_FIRMWARE_CUSTOM_REPO_URL="https://source.codeaurora.org/external/imx/imx-atf"
-BR2_TARGET_ARM_TRUSTED_FIRMWARE_CUSTOM_REPO_VERSION="rel_imx_5.4.24_2.1.0"
+BR2_TARGET_ARM_TRUSTED_FIRMWARE_CUSTOM_TARBALL=y
+BR2_TARGET_ARM_TRUSTED_FIRMWARE_CUSTOM_TARBALL_LOCATION="$(call github,nxp-imx,imx-atf,rel_imx_5.4.24_2.1.0)/imx-atf-rel_imx_5.4.24_2.1.0.tar.gz"
BR2_TARGET_ARM_TRUSTED_FIRMWARE_PLATFORM="imx8mq"
BR2_TARGET_ARM_TRUSTED_FIRMWARE_BL31=y
BR2_TARGET_UBOOT=y
BR2_TARGET_UBOOT_BUILD_SYSTEM_KCONFIG=y
-BR2_TARGET_UBOOT_CUSTOM_GIT=y
-BR2_TARGET_UBOOT_CUSTOM_REPO_URL="https://source.codeaurora.org/external/imx/uboot-imx"
-BR2_TARGET_UBOOT_CUSTOM_REPO_VERSION="rel_imx_5.4.24_2.1.0"
+BR2_TARGET_UBOOT_CUSTOM_TARBALL=y
+BR2_TARGET_UBOOT_CUSTOM_TARBALL_LOCATION="$(call github,nxp-imx,uboot-imx,rel_imx_5.4.24_2.1.0)/uboot-imx-rel_imx_5.4.24_2.1.0.tar.gz"
BR2_TARGET_UBOOT_BOARD_DEFCONFIG="imx8mq_evk"
BR2_TARGET_UBOOT_NEEDS_DTC=y
BR2_TARGET_UBOOT_FORMAT_CUSTOM=y
--
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* Re: [Buildroot] [PATCH 26/27] configs/imx8mqevk: update codeaurora URLs to github
2022-12-30 9:57 ` [Buildroot] [PATCH 26/27] configs/imx8mqevk: " Julien Olivain
@ 2023-01-04 11:29 ` Peter Korsgaard
0 siblings, 0 replies; 58+ messages in thread
From: Peter Korsgaard @ 2023-01-04 11:29 UTC (permalink / raw)
To: Julien Olivain
Cc: Bernd Kuhls, Gary Bisson, Jérôme Pouiller, Gilles Talis,
Refik Tuzakli, Erik Larsson, Fabrice Goucem, Stephane Viau,
buildroot, Fabio Estevam, Matt Weber
>>>>> "Julien" == Julien Olivain <ju.o@free.fr> writes:
> 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: this commit updates the U-Boot and ATF download urls.
> The method is also changed from _CUSTOM_GIT to _CUSTOM_TARBALL.
> Signed-off-by: Julien Olivain <ju.o@free.fr>
Committed to 2022.11.x and 2022.02.x, thanks.
--
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 58+ messages in thread
* [Buildroot] [PATCH 27/27] configs/ls1028ardb: update codeaurora URLs to github
2022-12-30 9:57 ` [Buildroot] [PATCH 22/27] configs/freescale_imx8qmmek: " Julien Olivain
` (3 preceding siblings ...)
2022-12-30 9:57 ` [Buildroot] [PATCH 26/27] configs/imx8mqevk: " Julien Olivain
@ 2022-12-30 9:57 ` 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
5 siblings, 2 replies; 58+ messages in thread
From: Julien Olivain @ 2022-12-30 9:57 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: this commit updates the Kernel, U-Boot and ATF download urls.
The method is also changed from _CUSTOM_GIT to _CUSTOM_TARBALL.
Signed-off-by: Julien Olivain <ju.o@free.fr>
---
configs/ls1028ardb_defconfig | 15 ++++++---------
1 file changed, 6 insertions(+), 9 deletions(-)
diff --git a/configs/ls1028ardb_defconfig b/configs/ls1028ardb_defconfig
index 1bc84f7b80..a46b94511a 100644
--- a/configs/ls1028ardb_defconfig
+++ b/configs/ls1028ardb_defconfig
@@ -17,9 +17,8 @@ BR2_ROOTFS_POST_SCRIPT_ARGS="-c board/freescale/ls1028ardb/genimage.cfg"
# Kernel
BR2_LINUX_KERNEL=y
-BR2_LINUX_KERNEL_CUSTOM_GIT=y
-BR2_LINUX_KERNEL_CUSTOM_REPO_URL="https://source.codeaurora.org/external/qoriq/qoriq-components/linux"
-BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION="LSDK-21.08"
+BR2_LINUX_KERNEL_CUSTOM_TARBALL=y
+BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION="$(call github,nxp-qoriq,linux,LSDK-21.08)/linux-LSDK-21.08.tar.gz"
BR2_LINUX_KERNEL_DEFCONFIG="imx_v8"
BR2_LINUX_KERNEL_CONFIG_FRAGMENT_FILES="$(LINUX_DIR)/arch/arm64/configs/lsdk.config"
BR2_LINUX_KERNEL_DTS_SUPPORT=y
@@ -37,9 +36,8 @@ BR2_TARGET_ROOTFS_EXT2_SIZE="120M"
# Bootloaders
BR2_TARGET_ARM_TRUSTED_FIRMWARE=y
-BR2_TARGET_ARM_TRUSTED_FIRMWARE_CUSTOM_GIT=y
-BR2_TARGET_ARM_TRUSTED_FIRMWARE_CUSTOM_REPO_URL="https://source.codeaurora.org/external/qoriq/qoriq-components/atf"
-BR2_TARGET_ARM_TRUSTED_FIRMWARE_CUSTOM_REPO_VERSION="LSDK-21.08"
+BR2_TARGET_ARM_TRUSTED_FIRMWARE_CUSTOM_TARBALL=y
+BR2_TARGET_ARM_TRUSTED_FIRMWARE_CUSTOM_TARBALL_LOCATION="$(call github,nxp-qoriq,atf,LSDK-21.08)/atf-LSDK-21.08.tar.gz"
BR2_TARGET_ARM_TRUSTED_FIRMWARE_PLATFORM="ls1028ardb"
BR2_TARGET_ARM_TRUSTED_FIRMWARE_FIP=y
BR2_TARGET_ARM_TRUSTED_FIRMWARE_RCW=y
@@ -48,9 +46,8 @@ BR2_TARGET_ARM_TRUSTED_FIRMWARE_ADDITIONAL_VARIABLES="BOOT_MODE=sd"
BR2_TARGET_ARM_TRUSTED_FIRMWARE_IMAGES="fip.bin bl2_sd.pbl"
BR2_TARGET_UBOOT=y
BR2_TARGET_UBOOT_BUILD_SYSTEM_KCONFIG=y
-BR2_TARGET_UBOOT_CUSTOM_GIT=y
-BR2_TARGET_UBOOT_CUSTOM_REPO_URL="https://source.codeaurora.org/external/qoriq/qoriq-components/u-boot"
-BR2_TARGET_UBOOT_CUSTOM_REPO_VERSION="LSDK-21.08"
+BR2_TARGET_UBOOT_CUSTOM_TARBALL=y
+BR2_TARGET_UBOOT_CUSTOM_TARBALL_LOCATION="$(call github,nxp-qoriq,u-boot,LSDK-21.08)/u-boot-LSDK-21.08.tar.gz"
BR2_TARGET_UBOOT_BOARD_DEFCONFIG="ls1028ardb_tfa"
BR2_TARGET_UBOOT_NEEDS_DTC=y
--
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* Re: [Buildroot] [PATCH 27/27] configs/ls1028ardb: update codeaurora URLs to github
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
1 sibling, 0 replies; 58+ messages in thread
From: François Perrad @ 2022-12-31 11:04 UTC (permalink / raw)
To: Julien Olivain
Cc: Bernd Kuhls, Gary Bisson, Jérôme Pouiller, Gilles Talis,
Refik Tuzakli, Erik Larsson, Fabrice Goucem, Stephane Viau,
buildroot, Fabio Estevam, Matt Weber
[-- Attachment #1.1: Type: text/plain, Size: 4006 bytes --]
Le ven. 30 déc. 2022 à 10:59, Julien Olivain <ju.o@free.fr> a écrit :
> 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: this commit updates the Kernel, U-Boot and ATF download urls.
> The method is also changed from _CUSTOM_GIT to _CUSTOM_TARBALL.
>
> Signed-off-by: Julien Olivain <ju.o@free.fr>
>
Reviewed-by: Francois Perrad <francois.perrad@gadz.org>
> ---
> configs/ls1028ardb_defconfig | 15 ++++++---------
> 1 file changed, 6 insertions(+), 9 deletions(-)
>
> diff --git a/configs/ls1028ardb_defconfig b/configs/ls1028ardb_defconfig
> index 1bc84f7b80..a46b94511a 100644
> --- a/configs/ls1028ardb_defconfig
> +++ b/configs/ls1028ardb_defconfig
> @@ -17,9 +17,8 @@ BR2_ROOTFS_POST_SCRIPT_ARGS="-c
> board/freescale/ls1028ardb/genimage.cfg"
>
> # Kernel
> BR2_LINUX_KERNEL=y
> -BR2_LINUX_KERNEL_CUSTOM_GIT=y
> -BR2_LINUX_KERNEL_CUSTOM_REPO_URL="
> https://source.codeaurora.org/external/qoriq/qoriq-components/linux"
> -BR2_LINUX_KERNEL_CUSTOM_REPO_VERSION="LSDK-21.08"
> +BR2_LINUX_KERNEL_CUSTOM_TARBALL=y
> +BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION="$(call
> github,nxp-qoriq,linux,LSDK-21.08)/linux-LSDK-21.08.tar.gz"
> BR2_LINUX_KERNEL_DEFCONFIG="imx_v8"
>
> BR2_LINUX_KERNEL_CONFIG_FRAGMENT_FILES="$(LINUX_DIR)/arch/arm64/configs/lsdk.config"
> BR2_LINUX_KERNEL_DTS_SUPPORT=y
> @@ -37,9 +36,8 @@ BR2_TARGET_ROOTFS_EXT2_SIZE="120M"
>
> # Bootloaders
> BR2_TARGET_ARM_TRUSTED_FIRMWARE=y
> -BR2_TARGET_ARM_TRUSTED_FIRMWARE_CUSTOM_GIT=y
> -BR2_TARGET_ARM_TRUSTED_FIRMWARE_CUSTOM_REPO_URL="
> https://source.codeaurora.org/external/qoriq/qoriq-components/atf"
> -BR2_TARGET_ARM_TRUSTED_FIRMWARE_CUSTOM_REPO_VERSION="LSDK-21.08"
> +BR2_TARGET_ARM_TRUSTED_FIRMWARE_CUSTOM_TARBALL=y
> +BR2_TARGET_ARM_TRUSTED_FIRMWARE_CUSTOM_TARBALL_LOCATION="$(call
> github,nxp-qoriq,atf,LSDK-21.08)/atf-LSDK-21.08.tar.gz"
> BR2_TARGET_ARM_TRUSTED_FIRMWARE_PLATFORM="ls1028ardb"
> BR2_TARGET_ARM_TRUSTED_FIRMWARE_FIP=y
> BR2_TARGET_ARM_TRUSTED_FIRMWARE_RCW=y
> @@ -48,9 +46,8 @@
> BR2_TARGET_ARM_TRUSTED_FIRMWARE_ADDITIONAL_VARIABLES="BOOT_MODE=sd"
> BR2_TARGET_ARM_TRUSTED_FIRMWARE_IMAGES="fip.bin bl2_sd.pbl"
> BR2_TARGET_UBOOT=y
> BR2_TARGET_UBOOT_BUILD_SYSTEM_KCONFIG=y
> -BR2_TARGET_UBOOT_CUSTOM_GIT=y
> -BR2_TARGET_UBOOT_CUSTOM_REPO_URL="
> https://source.codeaurora.org/external/qoriq/qoriq-components/u-boot"
> -BR2_TARGET_UBOOT_CUSTOM_REPO_VERSION="LSDK-21.08"
> +BR2_TARGET_UBOOT_CUSTOM_TARBALL=y
> +BR2_TARGET_UBOOT_CUSTOM_TARBALL_LOCATION="$(call
> github,nxp-qoriq,u-boot,LSDK-21.08)/u-boot-LSDK-21.08.tar.gz"
> BR2_TARGET_UBOOT_BOARD_DEFCONFIG="ls1028ardb_tfa"
> BR2_TARGET_UBOOT_NEEDS_DTC=y
>
> --
> 2.39.0
>
>
[-- Attachment #1.2: Type: text/html, Size: 5869 bytes --]
[-- Attachment #2: Type: text/plain, Size: 150 bytes --]
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 58+ messages in thread
* Re: [Buildroot] [PATCH 27/27] configs/ls1028ardb: update codeaurora URLs to github
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
1 sibling, 0 replies; 58+ messages in thread
From: Peter Korsgaard @ 2023-01-04 11:30 UTC (permalink / raw)
To: Julien Olivain
Cc: Bernd Kuhls, Gary Bisson, Jérôme Pouiller, Gilles Talis,
Refik Tuzakli, Erik Larsson, Fabrice Goucem, Stephane Viau,
buildroot, Fabio Estevam, Matt Weber
>>>>> "Julien" == Julien Olivain <ju.o@free.fr> writes:
> 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: this commit updates the Kernel, U-Boot and ATF download urls.
> The method is also changed from _CUSTOM_GIT to _CUSTOM_TARBALL.
> Signed-off-by: Julien Olivain <ju.o@free.fr>
Committed to 2022.11.x, thanks (defconfig not in 2022.02.x).
--
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 58+ messages in thread
* Re: [Buildroot] [PATCH 22/27] configs/freescale_imx8qmmek: update codeaurora URLs to github
2022-12-30 9:57 ` [Buildroot] [PATCH 22/27] configs/freescale_imx8qmmek: " Julien Olivain
` (4 preceding siblings ...)
2022-12-30 9:57 ` [Buildroot] [PATCH 27/27] configs/ls1028ardb: " Julien Olivain
@ 2023-01-04 11:29 ` Peter Korsgaard
5 siblings, 0 replies; 58+ messages in thread
From: Peter Korsgaard @ 2023-01-04 11:29 UTC (permalink / raw)
To: Julien Olivain
Cc: Bernd Kuhls, Gary Bisson, Jérôme Pouiller, Gilles Talis,
Refik Tuzakli, Erik Larsson, Fabrice Goucem, Stephane Viau,
buildroot, Fabio Estevam, Matt Weber
>>>>> "Julien" == Julien Olivain <ju.o@free.fr> writes:
> 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: this commit updates the Kernel, U-Boot and ATF download urls.
> The method is also changed from _CUSTOM_GIT to _CUSTOM_TARBALL.
> Signed-off-by: Julien Olivain <ju.o@free.fr>
Committed to 2022.11.x and 2022.02.x, thanks.
--
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 58+ messages in thread
* Re: [Buildroot] [PATCH 01/27] package/imx-mkimage: update codeaurora URLs to github
2022-12-29 19:47 [Buildroot] [PATCH 01/27] package/imx-mkimage: update codeaurora URLs to github Julien Olivain
` (16 preceding siblings ...)
2022-12-30 9:57 ` [Buildroot] [PATCH 22/27] configs/freescale_imx8qmmek: " Julien Olivain
@ 2022-12-31 16:35 ` Yann E. MORIN
2023-01-04 11:26 ` Peter Korsgaard
18 siblings, 0 replies; 58+ messages in thread
From: Yann E. MORIN @ 2022-12-31 16:35 UTC (permalink / raw)
To: Julien Olivain
Cc: Bernd Kuhls, Gary Bisson, Jérôme Pouiller, Gilles Talis,
Refik Tuzakli, Erik Larsson, Fabrice Goucem, Stephane Viau,
buildroot, Fabio Estevam, Matt Weber
Julien, All,
On 2022-12-29 20:47 +0100, Julien Olivain spake thusly:
> 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>
Whole series of 27 patches applied to master, thanks!
Regards,
Yann E. MORIN.
> ---
> 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
--
.-----------------.--------------------.------------------.--------------------.
| 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] 58+ messages in thread* Re: [Buildroot] [PATCH 01/27] package/imx-mkimage: update codeaurora URLs to github
2022-12-29 19:47 [Buildroot] [PATCH 01/27] package/imx-mkimage: update codeaurora URLs to github Julien Olivain
` (17 preceding siblings ...)
2022-12-31 16:35 ` [Buildroot] [PATCH 01/27] package/imx-mkimage: " Yann E. MORIN
@ 2023-01-04 11:26 ` Peter Korsgaard
18 siblings, 0 replies; 58+ messages in thread
From: Peter Korsgaard @ 2023-01-04 11:26 UTC (permalink / raw)
To: Julien Olivain
Cc: Bernd Kuhls, Gary Bisson, Jérôme Pouiller, Gilles Talis,
Refik Tuzakli, Erik Larsson, Fabrice Goucem, Stephane Viau,
buildroot, Fabio Estevam, Matt Weber
>>>>> "Julien" == Julien Olivain <ju.o@free.fr> writes:
> 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>
Committed to 2022.11.x, thanks (different version in 2022.02.x).
--
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 58+ messages in thread