* [Buildroot] [PATCH 1/2] libump: new package
@ 2015-06-26 8:13 Francois Perrad
2015-06-26 8:13 ` [Buildroot] [PATCH 2/2] sunxi-mali: bump version Francois Perrad
2015-06-28 13:25 ` [Buildroot] [PATCH 1/2] libump: new package Thomas Petazzoni
0 siblings, 2 replies; 3+ messages in thread
From: Francois Perrad @ 2015-06-26 8:13 UTC (permalink / raw)
To: buildroot
previously, this library was a part of sunxi-mali
Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
---
package/Config.in | 1 +
package/libump/Config.in | 9 +++++++++
package/libump/libump.mk | 13 +++++++++++++
3 files changed, 23 insertions(+)
create mode 100644 package/libump/Config.in
create mode 100644 package/libump/libump.mk
diff --git a/package/Config.in b/package/Config.in
index fac632f..025b4e2 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -367,6 +367,7 @@ endif
source "package/iucode-tool/Config.in"
source "package/kbd/Config.in"
source "package/lcdproc/Config.in"
+ source "package/libump/Config.in"
source "package/lirc-tools/Config.in"
source "package/lm-sensors/Config.in"
source "package/lshw/Config.in"
diff --git a/package/libump/Config.in b/package/libump/Config.in
new file mode 100644
index 0000000..859caa6
--- /dev/null
+++ b/package/libump/Config.in
@@ -0,0 +1,9 @@
+config BR2_PACKAGE_LIBUMP
+ bool "libump"
+ depends on BR2_TOOLCHAIN_USES_GLIBC
+ depends on BR2_arm
+ help
+ The ARMs Universal Memory Provider userspace library.
+ This library is a requirement for ARMs binary Mali driver.
+
+ http://github.com/linux-sunxi/libump
diff --git a/package/libump/libump.mk b/package/libump/libump.mk
new file mode 100644
index 0000000..65012ff
--- /dev/null
+++ b/package/libump/libump.mk
@@ -0,0 +1,13 @@
+################################################################################
+#
+# libump
+#
+################################################################################
+
+LIBUMP_VERSION = ec0680628744f30b8fac35e41a7bd8e23e59c39f
+LIBUMP_SITE = $(call github,linux-sunxi,libump,$(LIBUMP_VERSION))
+LIBUMP_LICENSE = Apache-2.0
+LIBUMP_AUTORECONF = YES
+LIBUMP_INSTALL_STAGING = YES
+
+$(eval $(autotools-package))
--
2.1.4
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [Buildroot] [PATCH 2/2] sunxi-mali: bump version
2015-06-26 8:13 [Buildroot] [PATCH 1/2] libump: new package Francois Perrad
@ 2015-06-26 8:13 ` Francois Perrad
2015-06-28 13:25 ` [Buildroot] [PATCH 1/2] libump: new package Thomas Petazzoni
1 sibling, 0 replies; 3+ messages in thread
From: Francois Perrad @ 2015-06-26 8:13 UTC (permalink / raw)
To: buildroot
Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
---
package/sunxi-mali/Config.in | 1 +
package/sunxi-mali/sunxi-mali.mk | 4 ++--
2 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/package/sunxi-mali/Config.in b/package/sunxi-mali/Config.in
index 95f91ab..f0c1b35 100644
--- a/package/sunxi-mali/Config.in
+++ b/package/sunxi-mali/Config.in
@@ -2,6 +2,7 @@ config BR2_PACKAGE_SUNXI_MALI
bool "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
diff --git a/package/sunxi-mali/sunxi-mali.mk b/package/sunxi-mali/sunxi-mali.mk
index c6900c8..3e5443b 100644
--- a/package/sunxi-mali/sunxi-mali.mk
+++ b/package/sunxi-mali/sunxi-mali.mk
@@ -4,11 +4,11 @@
#
################################################################################
-SUNXI_MALI_VERSION = c2491fe952354ba44538064e534ed7c731cedb1e
+SUNXI_MALI_VERSION = d343311efc8db166d8371b28494f0f27b6a58724
SUNXI_MALI_SITE = $(call github,linux-sunxi,sunxi-mali,$(SUNXI_MALI_VERSION))
SUNXI_MALI_INSTALL_STAGING = YES
-SUNXI_MALI_DEPENDENCIES = sunxi-mali-prop
+SUNXI_MALI_DEPENDENCIES = libump sunxi-mali-prop
SUNXI_MALI_PROVIDES = libegl libgles
# The options below must be provided in the environment. Providing these
--
2.1.4
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [Buildroot] [PATCH 1/2] libump: new package
2015-06-26 8:13 [Buildroot] [PATCH 1/2] libump: new package Francois Perrad
2015-06-26 8:13 ` [Buildroot] [PATCH 2/2] sunxi-mali: bump version Francois Perrad
@ 2015-06-28 13:25 ` Thomas Petazzoni
1 sibling, 0 replies; 3+ messages in thread
From: Thomas Petazzoni @ 2015-06-28 13:25 UTC (permalink / raw)
To: buildroot
Dear Francois Perrad,
On Fri, 26 Jun 2015 10:13:36 +0200, Francois Perrad wrote:
> +config BR2_PACKAGE_LIBUMP
> + bool "libump"
> + depends on BR2_TOOLCHAIN_USES_GLIBC
There should have been a Config.in comment about this dependency, so
I've added it and applied.
Thanks,
Thomas
--
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2015-06-28 13:25 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-06-26 8:13 [Buildroot] [PATCH 1/2] libump: new package Francois Perrad
2015-06-26 8:13 ` [Buildroot] [PATCH 2/2] sunxi-mali: bump version Francois Perrad
2015-06-28 13:25 ` [Buildroot] [PATCH 1/2] libump: new package Thomas Petazzoni
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox