package/sunxi-mali: use git submodules
The sunxi-mali git tree is set up with a submodule that contains the actual libraries. Since there was no support for git submodules so far, we used a dirty trick to have that submodule cloned by its own package, with sunxi-mali just vampirising it into its own build dir. Now that we have support for git submodules, we can simplify stuff a bit, and have sunxi-mali directly download the proprietary libs itself. Remove the .hash file since we're not checking hashes for git clones. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Peter Korsgaard <peter@korsgaard.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
parent
02f0878078
commit
ddc296f79b
@ -3,9 +3,6 @@ config BR2_PACKAGE_SUNXI_MALI
|
||||
select BR2_PACKAGE_HAS_LIBEGL
|
||||
select BR2_PACKAGE_HAS_LIBGLES
|
||||
select BR2_PACKAGE_LIBUMP
|
||||
# The egl/gles mali libraries are provided as a git submodule of the
|
||||
# sunxi-mali repo and are downloaded by the sunxi-mali-prop package.
|
||||
select BR2_PACKAGE_SUNXI_MALI_PROP
|
||||
depends on BR2_TOOLCHAIN_USES_GLIBC
|
||||
depends on BR2_arm
|
||||
help
|
||||
|
@ -1,2 +0,0 @@
|
||||
# Locally calculated
|
||||
sha256 5ae27be532928667aa820a0aa9813dde545c224294b9402b27b6ca68f4d69ee4 sunxi-mali-d343311efc8db166d8371b28494f0f27b6a58724.tar.gz
|
@ -5,10 +5,14 @@
|
||||
################################################################################
|
||||
|
||||
SUNXI_MALI_VERSION = d343311efc8db166d8371b28494f0f27b6a58724
|
||||
SUNXI_MALI_SITE = $(call github,linux-sunxi,sunxi-mali,$(SUNXI_MALI_VERSION))
|
||||
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
|
||||
|
||||
SUNXI_MALI_INSTALL_STAGING = YES
|
||||
SUNXI_MALI_DEPENDENCIES = libump sunxi-mali-prop
|
||||
SUNXI_MALI_DEPENDENCIES = libump
|
||||
SUNXI_MALI_PROVIDES = libegl libgles
|
||||
|
||||
# The options below must be provided in the environment. Providing these
|
||||
@ -41,13 +45,6 @@ ifeq ($(BR2_PACKAGE_SUNXI_MALI_R3P1),y)
|
||||
SUNXI_MALI_MAKE_OPTS += VERSION=r3p1
|
||||
endif
|
||||
|
||||
define SUNXI_MALI_GIT_SUBMODULE_FIXUP
|
||||
rm -rf $(@D)/lib/mali
|
||||
cp -rf $(SUNXI_MALI_PROP_SRCDIR) $(@D)/lib/mali
|
||||
endef
|
||||
|
||||
SUNXI_MALI_PRE_CONFIGURE_HOOKS += SUNXI_MALI_GIT_SUBMODULE_FIXUP
|
||||
|
||||
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 \
|
||||
|
Loading…
Reference in New Issue
Block a user