]> rtime.felk.cvut.cz Git - coffee/buildroot.git/commitdiff
package/sunxi-mali: use git submodules
authorYann E. MORIN <yann.morin.1998@free.fr>
Sun, 3 Jul 2016 08:33:10 +0000 (10:33 +0200)
committerPeter Korsgaard <peter@korsgaard.com>
Sun, 3 Jul 2016 09:20:46 +0000 (11:20 +0200)
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>
package/sunxi-mali/Config.in
package/sunxi-mali/sunxi-mali.hash [deleted file]
package/sunxi-mali/sunxi-mali.mk

index b151135dede3128ddf6ef04cd58858ea17a09374..5e3ae4cd0199c2808ffa42d1c9c3b047ab0e8cde 100644 (file)
@@ -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
diff --git a/package/sunxi-mali/sunxi-mali.hash b/package/sunxi-mali/sunxi-mali.hash
deleted file mode 100644 (file)
index 7953e9e..0000000
+++ /dev/null
@@ -1,2 +0,0 @@
-# Locally calculated
-sha256 5ae27be532928667aa820a0aa9813dde545c224294b9402b27b6ca68f4d69ee4  sunxi-mali-d343311efc8db166d8371b28494f0f27b6a58724.tar.gz
index 3e5443b41b3a593eab9243c3c5b0438cc2149d8d..d621da18c7431df6f72507c2b3c1fc38f8e1a5e4 100644 (file)
@@ -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 \