774c39caf0
NXP moved all its open source code repositories from Code Aurora Forum to github. See for example:39bc4d8196
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:a079d2c844
Signed-off-by: Julien Olivain <ju.o@free.fr> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
28 lines
999 B
Plaintext
28 lines
999 B
Plaintext
comment "fmc needs a toolchain w/ C++"
|
|
depends on BR2_powerpc_e500mc || BR2_powerpc_e6500
|
|
depends on !BR2_INSTALL_LIBSTDCPP
|
|
|
|
comment "fmc needs a Linux kernel to be built"
|
|
depends on BR2_powerpc_e500mc || BR2_powerpc_e6500
|
|
depends on !BR2_LINUX_KERNEL
|
|
|
|
config BR2_PACKAGE_FMC
|
|
bool "fmc"
|
|
depends on BR2_powerpc_e500mc || BR2_powerpc_e6500
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
depends on BR2_LINUX_KERNEL # fmlib
|
|
select BR2_PACKAGE_TCLAP
|
|
select BR2_PACKAGE_LIBXML2
|
|
select BR2_PACKAGE_FMLIB
|
|
help
|
|
The Frame Manager Configuration tool is Freescale PowerPC
|
|
platform software package whose primary purpose is converting
|
|
Parse-Classify-Police-Distribute (PCD) descriptions of network
|
|
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
|
|
|
|
https://github.com/nxp-qoriq/fmc
|