cjson: bump to version 1.4.3
[buildroot-gz.git] / package / fmlib / Config.in
blobd399cabe2aaf9a99e6f62f9db8c5c3d3e8622b12
1 comment "fmlib needs a Linux kernel to be built"
2         depends on BR2_powerpc_e500mc || BR2_powerpc_e6500
3         depends on !BR2_LINUX_KERNEL
5 config BR2_PACKAGE_FMLIB
6         bool "fmlib"
7         depends on BR2_powerpc_e500mc || BR2_powerpc_e6500
8         depends on BR2_LINUX_KERNEL
9         help
10           The Frame Manager library provides Freescale PowerPC platforms an
11           API on top of the Frame Manager driver ioctl calls, that provides
12           a user space application with a simple way to configure driver
13           parameters and PCD (parse - classify - distribute) rules.
15           http://git.freescale.com/git/cgit.cgi/ppc/sdk/fmlib.git/tree/README
17 if BR2_PACKAGE_FMLIB
18 choice
19         prompt "QorIQ Target Family"
20         help
21           Select the family of QorIQ processor.
23 config BR2_FMLIB_QORIQ_FAMILY_P4080
24         bool "p40xx"
25         depends on BR2_powerpc_e500mc
27 config BR2_FMLIB_QORIQ_FAMILY_T4240
28         bool "t42xx"
29         depends on BR2_powerpc_e500mc
31 config BR2_FMLIB_QORIQ_FAMILY_T2080
32         bool "t208x"
33         depends on BR2_powerpc_e6500
35 endchoice
37 config BR2_PACKAGE_FMLIB_ARCHTYPE
38         string
39         default "e500mc" if BR2_powerpc_e500mc
40         default "ppc64e6500" if BR2_powerpc_e6500 && BR2_powerpc64
41         default "ppc32e6500" if BR2_powerpc_e6500 && BR2_powerpc
43 config BR2_PACKAGE_FMLIB_PLATFORM
44         string
45         default "P4080" if BR2_FMLIB_QORIQ_FAMILY_P4080
46         default "T4240" if BR2_FMLIB_QORIQ_FAMILY_T4240
47         default "FMAN_V3H" if BR2_FMLIB_QORIQ_FAMILY_T2080
49 endif