55e04e8d4a
Signed-off-by: Dagg Stompler <daggs@gmx.com> [Thomas: - restrict to EABIhf for ARM, since the libraries are pre-built for this ABI - add comment about the glibc dependency - indicate odroid-scripts is a runtime dependency - remove fbset dependency] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
26 lines
622 B
Plaintext
26 lines
622 B
Plaintext
config BR2_PACKAGE_ODROID_MALI
|
|
bool "odroid-mali"
|
|
select BR2_PACKAGE_HAS_LIBEGL
|
|
select BR2_PACKAGE_HAS_LIBGLES
|
|
select BR2_PACKAGE_ODROID_SCRIPTS # runtime
|
|
depends on BR2_TOOLCHAIN_USES_GLIBC
|
|
depends on BR2_aarch64 || BR2_ARM_EABIHF
|
|
help
|
|
Install the ARM Mali drivers for odroidc2 based systems.
|
|
|
|
https://github.com/mdrjr/c2_mali
|
|
|
|
if BR2_PACKAGE_ODROID_MALI
|
|
|
|
config BR2_PACKAGE_PROVIDES_LIBEGL
|
|
default "odroid-mali"
|
|
|
|
config BR2_PACKAGE_PROVIDES_LIBGLES
|
|
default "odroid-mali"
|
|
|
|
endif
|
|
|
|
comment "odroid-mali needs a glibc toolchain"
|
|
depends on BR2_aarch64 || BR2_ARM_EABIHF
|
|
depends on !BR2_TOOLCHAIN_USES_GLIBC
|