blob: 161700985f2980fb810e48598e3936d131c8cd31 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
comment "imx-lib needs an imx-specific kernel to be built"
depends on BR2_arm && !BR2_LINUX_KERNEL
config BR2_PACKAGE_IMX_LIB
bool "imx-lib"
depends on BR2_LINUX_KERNEL
depends on BR2_arm # Only relevant for i.MX
help
Library of userspace helpers specific for the Freescale i.MX
platform. It wraps the kernel interfaces for some i.MX 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.
if BR2_PACKAGE_IMX_LIB
choice
prompt "i.MX platform"
config BR2_PACKAGE_IMX_LIB_PLATFORM_IMX25_3STACK
bool "imx25-3stack"
config BR2_PACKAGE_IMX_LIB_PLATFORM_IMX27ADS
bool "imx27ads"
config BR2_PACKAGE_IMX_LIB_PLATFORM_IMX37_3STACK
bool "imx37-3stack"
config BR2_PACKAGE_IMX_LIB_PLATFORM_IMX50
bool "imx50"
config BR2_PACKAGE_IMX_LIB_PLATFORM_IMX51
bool "imx51"
config BR2_PACKAGE_IMX_LIB_PLATFORM_IMX53
bool "imx53"
config BR2_PACKAGE_IMX_LIB_PLATFORM_IMX6Q
bool "imx6q"
endchoice
config BR2_PACKAGE_IMX_LIB_PLATFORM
string
default "IMX25_3STACK" if BR2_PACKAGE_IMX_LIB_PLATFORM_IMX25_3STACK
default "IMX27ADS" if BR2_PACKAGE_IMX_LIB_PLATFORM_IMX27ADS
default "IMX37_3STACK" if BR2_PACKAGE_IMX_LIB_PLATFORM_IMX37_3STACK
default "IMX50" if BR2_PACKAGE_IMX_LIB_PLATFORM_IMX50
default "IMX51" if BR2_PACKAGE_IMX_LIB_PLATFORM_IMX51
default "IMX53" if BR2_PACKAGE_IMX_LIB_PLATFORM_IMX53
default "IMX6Q" if BR2_PACKAGE_IMX_LIB_PLATFORM_IMX6Q
endif
|