2013-07-20 01:37:52 +02:00
|
|
|
################################################################################
|
|
|
|
#
|
|
|
|
# sunxi-mali
|
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
|
2016-07-03 12:34:19 +02:00
|
|
|
# last sha1 character dropped to ensure unique filename
|
|
|
|
SUNXI_MALI_VERSION = d343311efc8db166d8371b28494f0f27b6a5872
|
2016-07-03 10:33:10 +02:00
|
|
|
SUNXI_MALI_SITE = https://github.com/linux-sunxi/sunxi-mali
|
|
|
|
SUNXI_MALI_SITE_METHOD = git
|
|
|
|
|
|
|
|
# Get the sunxi-mali-proprietary libraries
|
|
|
|
SUNXI_MALI_GIT_SUBMODULES = YES
|
2013-07-20 01:37:52 +02:00
|
|
|
|
|
|
|
SUNXI_MALI_INSTALL_STAGING = YES
|
2016-07-03 10:33:10 +02:00
|
|
|
SUNXI_MALI_DEPENDENCIES = libump
|
2014-05-15 19:37:05 +02:00
|
|
|
SUNXI_MALI_PROVIDES = libegl libgles
|
2013-07-20 01:37:52 +02:00
|
|
|
|
|
|
|
# The options below must be provided in the environment. Providing these
|
|
|
|
# through options overrides the value and prevents the makefiles from
|
|
|
|
# appending to these variables. This is used throughout the sunxi-mali build
|
|
|
|
# system.
|
|
|
|
#
|
|
|
|
# Furthermore, the -lm -dl -lpthread options are included due to a possible bug
|
|
|
|
# in the way the linaro 2013.06 toolchain handles shared libraries.
|
|
|
|
SUNXI_MALI_MAKE_ENV = \
|
|
|
|
CC="$(TARGET_CC)" \
|
|
|
|
CFLAGS="$(TARGET_CFLAGS) -lm -ldl -lpthread" \
|
|
|
|
$(TARGET_MAKE_ENV)
|
|
|
|
|
2017-02-21 22:43:16 +01:00
|
|
|
SUNXI_MALI_MAKE_OPTS += EGL_TYPE=framebuffer \
|
|
|
|
ABI=armhf
|
2013-07-20 01:37:52 +02:00
|
|
|
|
|
|
|
ifeq ($(BR2_PACKAGE_SUNXI_MALI_R3P0),y)
|
|
|
|
SUNXI_MALI_MAKE_OPTS += VERSION=r3p0
|
|
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_SUNXI_MALI_R3P1),y)
|
|
|
|
SUNXI_MALI_MAKE_OPTS += VERSION=r3p1
|
|
|
|
endif
|
|
|
|
|
|
|
|
define SUNXI_MALI_BUILD_CMDS
|
|
|
|
$(SUNXI_MALI_MAKE_ENV) $(MAKE) -C $(@D) $(SUNXI_MALI_MAKE_OPTS) all
|
|
|
|
$(TARGET_CC) $(TARGET_CFLAGS) -o $(@D)/version/version \
|
|
|
|
$(@D)/version/version.c
|
|
|
|
endef
|
|
|
|
|
|
|
|
define SUNXI_MALI_INSTALL_STAGING_CMDS
|
|
|
|
$(SUNXI_MALI_MAKE_ENV) $(MAKE) -C $(@D) \
|
|
|
|
$(SUNXI_MALI_MAKE_OPTS) DESTDIR=$(STAGING_DIR) install
|
|
|
|
# test must be built after install because it depends on headers that are
|
|
|
|
# generated during the install above.
|
|
|
|
$(SUNXI_MALI_MAKE_ENV) $(MAKE) -C $(@D) $(SUNXI_MALI_MAKE_OPTS) test
|
|
|
|
$(INSTALL) -D -m 0644 package/sunxi-mali/egl.pc \
|
|
|
|
$(STAGING_DIR)/usr/lib/pkgconfig/egl.pc
|
|
|
|
$(INSTALL) -D -m 0644 package/sunxi-mali/glesv2.pc \
|
|
|
|
$(STAGING_DIR)/usr/lib/pkgconfig/glesv2.pc
|
|
|
|
endef
|
|
|
|
|
|
|
|
define SUNXI_MALI_INSTALL_TARGET_CMDS
|
|
|
|
$(SUNXI_MALI_MAKE_ENV) $(MAKE) -C $(@D)/lib \
|
|
|
|
$(SUNXI_MALI_MAKE_OPTS) DESTDIR=$(TARGET_DIR) install
|
|
|
|
$(if $(BR2_PACKAGE_SUNXI_MALI_DBG),
|
|
|
|
$(INSTALL) -m 755 $(@D)/version/version $(TARGET_DIR)/usr/bin/maliver; \
|
|
|
|
$(INSTALL) -m 755 $(@D)/test/test $(TARGET_DIR)/usr/bin/malitest
|
|
|
|
)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define SUNXI_MALI_INSTALL_INIT_SYSV
|
|
|
|
$(INSTALL) -D -m 0755 package/sunxi-mali/S80mali \
|
|
|
|
$(TARGET_DIR)/etc/init.d/S80mali
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(generic-package))
|