b54c5464cc
The sub-options of the ti-sgx-km package had their name option prefixed by BR2_PACKAGE_TI_SGX, while the prefix should be BR2_PACKAGE_TI_SGX_KM. This commit fixes that, and adds the necessary Config.in.legacy handling. Since those options are part of a choice, the legacy handling cannot select the new name of the options, so the legacy handling only informs the user of the rename. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com> Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
50 lines
1020 B
Plaintext
50 lines
1020 B
Plaintext
comment "ti-sgx-km needs a Linux kernel to be built"
|
|
depends on BR2_arm
|
|
depends on !BR2_LINUX_KERNEL
|
|
|
|
config BR2_PACKAGE_TI_SGX_KM
|
|
bool "ti-sgx-km"
|
|
depends on BR2_LINUX_KERNEL && BR2_arm
|
|
select BR2_LINUX_NEEDS_MODULES
|
|
help
|
|
Kernel modules for TI CPUs with SGX GPU.
|
|
This package supports AM335x, AM437x, AM4430 and AM5430.
|
|
It builds the kernel module and the user space binaries.
|
|
For older CPUs or kernels use the ti-gfx package.
|
|
|
|
Note: it needs a TI specific kernel to build properly.
|
|
|
|
http://git.ti.com/graphics/omap5-sgx-ddk-linux
|
|
|
|
if BR2_PACKAGE_TI_SGX_KM
|
|
|
|
choice
|
|
prompt "Target"
|
|
default BR2_PACKAGE_TI_SGX_KM_AM335X
|
|
help
|
|
Select the SOC for which you would like to install drivers.
|
|
|
|
config BR2_PACKAGE_TI_SGX_KM_AM335X
|
|
bool "AM335x"
|
|
help
|
|
AM335x CPU
|
|
|
|
config BR2_PACKAGE_TI_SGX_KM_AM437X
|
|
bool "AM437x"
|
|
help
|
|
AM437x CPU
|
|
|
|
config BR2_PACKAGE_TI_SGX_KM_AM4430
|
|
bool "AM4430"
|
|
help
|
|
AM4430 CPU
|
|
|
|
config BR2_PACKAGE_TI_SGX_KM_AM5430
|
|
bool "AM5430"
|
|
help
|
|
AM5430 CPU
|
|
|
|
endchoice
|
|
|
|
endif
|