kumquat-buildroot/package/fmlib/Config.in

57 lines
1.5 KiB
Plaintext
Raw Normal View History

comment "fmlib needs a Linux kernel to be built"
depends on BR2_powerpc_e500mc || BR2_powerpc_e6500 || BR2_aarch64
depends on !BR2_LINUX_KERNEL
config BR2_PACKAGE_FMLIB
bool "fmlib"
depends on BR2_powerpc_e500mc || BR2_powerpc_e6500 || BR2_aarch64
depends on BR2_LINUX_KERNEL
help
The Frame Manager library provides Freescale PowerPC platforms
an API on top of the Frame Manager driver ioctl calls, that
provides a user space application with a simple way to
configure driver parameters and PCD (parse - classify -
distribute) rules.
package/fmlib: update codeaurora URLs to github 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> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
2022-12-29 20:47:05 +01:00
https://github.com/nxp-qoriq/fmlib
if BR2_PACKAGE_FMLIB
choice
prompt "QorIQ Target Family"
help
Select the family of QorIQ processor.
config BR2_FMLIB_QORIQ_FAMILY_P4080
bool "p40xx"
depends on BR2_powerpc_e500mc
config BR2_FMLIB_QORIQ_FAMILY_T4240
bool "t42xx"
depends on BR2_powerpc_e500mc
config BR2_FMLIB_QORIQ_FAMILY_T2080
bool "t208x"
depends on BR2_powerpc_e6500
config BR2_FMLIB_QORIQ_FAMILY_ARM
bool "arm"
depends on BR2_aarch64
endchoice
config BR2_PACKAGE_FMLIB_ARCHTYPE
string
default "ppce500mc" if BR2_powerpc_e500mc
default "ppc64e6500" if BR2_powerpc_e6500 && BR2_powerpc64
default "ppc32e6500" if BR2_powerpc_e6500 && BR2_powerpc
default "arm" if BR2_aarch64
config BR2_PACKAGE_FMLIB_PLATFORM
string
default "P4080" if BR2_FMLIB_QORIQ_FAMILY_P4080
default "T4240" if BR2_FMLIB_QORIQ_FAMILY_T4240
default "FMAN_V3H" if BR2_FMLIB_QORIQ_FAMILY_T2080
default "arm" if BR2_aarch64
endif