* [Buildroot] [PATCH 1/3] Add on2-8170 kernel modules
@ 2013-06-09 17:22 Alexandre Belloni
2013-06-09 17:22 ` [Buildroot] [PATCH 2/3] Add proprietary libraries for Hantro x170 HW decoding Alexandre Belloni
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: Alexandre Belloni @ 2013-06-09 17:22 UTC (permalink / raw)
To: buildroot
Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
---
package/Config.in | 1 +
package/on2-8170-modules/Config.in | 11 +++++++++++
package/on2-8170-modules/on2-8170-modules.mk | 20 ++++++++++++++++++++
3 files changed, 32 insertions(+)
create mode 100644 package/on2-8170-modules/Config.in
create mode 100644 package/on2-8170-modules/on2-8170-modules.mk
diff --git a/package/Config.in b/package/Config.in
index ce82e99..e915abe 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -272,6 +272,7 @@ source "package/minicom/Config.in"
source "package/nanocom/Config.in"
source "package/neard/Config.in"
source "package/ofono/Config.in"
+source "package/on2-8170-modules/Config.in"
source "package/open2300/Config.in"
source "package/openocd/Config.in"
source "package/owl-linux/Config.in"
diff --git a/package/on2-8170-modules/Config.in b/package/on2-8170-modules/Config.in
new file mode 100644
index 0000000..b11d69e
--- /dev/null
+++ b/package/on2-8170-modules/Config.in
@@ -0,0 +1,11 @@
+config BR2_PACKAGE_ON2_8170_MODULES
+ bool "on2-8170 modules"
+ depends on BR2_LINUX_KERNEL
+ help
+ Kernel modules for the LTTng 2.0 kernel tracing
+ infrastructure.
+
+ http://www.at91.com/linux4sam/bin/view/Linux4SAM/SAM9M10Gstreamer
+
+comment "on2-8170 modules requires a linux kernel to be built"
+ depends on !BR2_LINUX_KERNEL
diff --git a/package/on2-8170-modules/on2-8170-modules.mk b/package/on2-8170-modules/on2-8170-modules.mk
new file mode 100644
index 0000000..87dc8f2
--- /dev/null
+++ b/package/on2-8170-modules/on2-8170-modules.mk
@@ -0,0 +1,20 @@
+################################################################################
+#
+# on2-8170-modules
+#
+################################################################################
+
+ON2_8170_MODULES_VERSION = master
+ON2_8170_MODULES_SITE = git://github.com/alexandrebelloni/on2-8170-modules.git
+
+ON2_8170_MODULES_DEPENDENCIES = linux
+
+define ON2_8170_MODULES_BUILD_CMDS
+ $(MAKE) -C $(LINUX_DIR) $(LINUX_MAKE_FLAGS) M=$(@D)
+endef
+
+define ON2_8170_MODULES_INSTALL_TARGET_CMDS
+ $(MAKE) -C $(LINUX_DIR) $(LINUX_MAKE_FLAGS) M=$(@D) modules_install
+endef
+
+$(eval $(generic-package))
--
1.8.1.2
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [Buildroot] [PATCH 2/3] Add proprietary libraries for Hantro x170 HW decoding
2013-06-09 17:22 [Buildroot] [PATCH 1/3] Add on2-8170 kernel modules Alexandre Belloni
@ 2013-06-09 17:22 ` Alexandre Belloni
2013-06-09 17:22 ` [Buildroot] [PATCH 3/3] Add gstreamer plugin for Hantro x170 Alexandre Belloni
2013-06-09 17:40 ` [Buildroot] [PATCH 1/3] Add on2-8170 kernel modules Baruch Siach
2 siblings, 0 replies; 5+ messages in thread
From: Alexandre Belloni @ 2013-06-09 17:22 UTC (permalink / raw)
To: buildroot
Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
---
package/multimedia/Config.in | 1 +
package/multimedia/on2-8170-libs/Config.in | 12 ++++++++++++
package/multimedia/on2-8170-libs/on2-8170-libs.mk | 24 +++++++++++++++++++++++
3 files changed, 37 insertions(+)
create mode 100644 package/multimedia/on2-8170-libs/Config.in
create mode 100644 package/multimedia/on2-8170-libs/on2-8170-libs.mk
diff --git a/package/multimedia/Config.in b/package/multimedia/Config.in
index dd74863..4cb81bf 100644
--- a/package/multimedia/Config.in
+++ b/package/multimedia/Config.in
@@ -21,6 +21,7 @@ source "package/multimedia/mpd/Config.in"
source "package/multimedia/mpg123/Config.in"
source "package/multimedia/mplayer/Config.in"
source "package/multimedia/musepack/Config.in"
+source "package/multimedia/on2-8170-libs/Config.in"
source "package/opus-tools/Config.in"
source "package/multimedia/pulseaudio/Config.in"
source "package/multimedia/tidsp-binaries/Config.in"
diff --git a/package/multimedia/on2-8170-libs/Config.in b/package/multimedia/on2-8170-libs/Config.in
new file mode 100644
index 0000000..09ed808
--- /dev/null
+++ b/package/multimedia/on2-8170-libs/Config.in
@@ -0,0 +1,12 @@
+config BR2_PACKAGE_ON2_8170_LIBS
+ #This is a binary only package which has been compiled for glibc
+ depends on BR2_arm926t
+ depends on (BR2_TOOLCHAIN_EXTERNAL_GLIBC || \
+ BR2_TOOLCHAIN_CTNG_eglibc || \
+ BR2_TOOLCHAIN_CTNG_glibc)
+ bool "on2-8170-libs"
+ help
+ Libraries for Hantro X170 video decoder
+
+ http://www.at91.com/linux4sam/bin/view/Linux4SAM/SAM9M10Gstreamer
+
diff --git a/package/multimedia/on2-8170-libs/on2-8170-libs.mk b/package/multimedia/on2-8170-libs/on2-8170-libs.mk
new file mode 100644
index 0000000..e04551d
--- /dev/null
+++ b/package/multimedia/on2-8170-libs/on2-8170-libs.mk
@@ -0,0 +1,24 @@
+################################################################################
+#
+# on2-8170-libs
+#
+################################################################################
+
+ON2_8170_LIBS_VERSION = 1.0
+ON2_8170_LIBS_SITE = ftp://ftp.linux4sam.org/pub/demo/linux4sam_1.9/codec/
+
+ON2_8170_LICENSE = PROPRIETARY
+# No license file is included in the archive
+
+ON2_8170_LIBS_INSTALL_STAGING = YES
+
+define ON2_8170_LIBS_INSTALL_STAGING_CMDS
+ cp -dpf $(@D)/*.a $(@D)/*.so $(STAGING_DIR)/usr/lib
+ cp -dpf $(@D)/*.h $(STAGING_DIR)/usr/include
+endef
+
+define ON2_8170_LIBS_INSTALL_TARGET_CMDS
+ cp -dpf $(@D)/*.so $(TARGET_DIR)/usr/lib
+endef
+
+$(eval $(generic-package))
--
1.8.1.2
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [Buildroot] [PATCH 3/3] Add gstreamer plugin for Hantro x170
2013-06-09 17:22 [Buildroot] [PATCH 1/3] Add on2-8170 kernel modules Alexandre Belloni
2013-06-09 17:22 ` [Buildroot] [PATCH 2/3] Add proprietary libraries for Hantro x170 HW decoding Alexandre Belloni
@ 2013-06-09 17:22 ` Alexandre Belloni
2013-06-09 17:40 ` [Buildroot] [PATCH 1/3] Add on2-8170 kernel modules Baruch Siach
2 siblings, 0 replies; 5+ messages in thread
From: Alexandre Belloni @ 2013-06-09 17:22 UTC (permalink / raw)
To: buildroot
Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
---
package/multimedia/Config.in | 1 +
package/multimedia/gst-plugin-x170/Config.in | 14 +++++++++++
.../gst-plugin-x170-01-correct-CFLAGS.patch | 28 ++++++++++++++++++++++
.../multimedia/gst-plugin-x170/gst-plugin-x170.mk | 18 ++++++++++++++
4 files changed, 61 insertions(+)
create mode 100644 package/multimedia/gst-plugin-x170/Config.in
create mode 100644 package/multimedia/gst-plugin-x170/gst-plugin-x170-01-correct-CFLAGS.patch
create mode 100644 package/multimedia/gst-plugin-x170/gst-plugin-x170.mk
diff --git a/package/multimedia/Config.in b/package/multimedia/Config.in
index 4cb81bf..77c0a22 100644
--- a/package/multimedia/Config.in
+++ b/package/multimedia/Config.in
@@ -14,6 +14,7 @@ source "package/multimedia/gst-plugins-base/Config.in"
source "package/multimedia/gst-plugins-good/Config.in"
source "package/multimedia/gst-plugins-bad/Config.in"
source "package/multimedia/gst-plugins-ugly/Config.in"
+source "package/multimedia/gst-plugin-x170/Config.in"
source "package/multimedia/lame/Config.in"
source "package/multimedia/libvpx/Config.in"
source "package/multimedia/madplay/Config.in"
diff --git a/package/multimedia/gst-plugin-x170/Config.in b/package/multimedia/gst-plugin-x170/Config.in
new file mode 100644
index 0000000..0787013
--- /dev/null
+++ b/package/multimedia/gst-plugin-x170/Config.in
@@ -0,0 +1,14 @@
+config BR2_PACKAGE_GST_PLUGIN_X170
+ bool "gst-plugin-x170"
+ depends on BR2_PACKAGE_GSTREAMER
+ depends on BR2_arm926t
+ depends on (BR2_TOOLCHAIN_EXTERNAL_GLIBC || \
+ BR2_TOOLCHAIN_CTNG_eglibc || \
+ BR2_TOOLCHAIN_CTNG_glibc)
+ select BR2_PACKAGE_ON2_8170_LIBS
+ help
+ GStreamer plug-in to use the Hantro X170 video decoder present on
+ ATMEL AT91SAM9M10 SoC.
+
+ http://www.at91.com/linux4sam/bin/view/Linux4SAM/SAM9M10Gstreamer
+
diff --git a/package/multimedia/gst-plugin-x170/gst-plugin-x170-01-correct-CFLAGS.patch b/package/multimedia/gst-plugin-x170/gst-plugin-x170-01-correct-CFLAGS.patch
new file mode 100644
index 0000000..9c32e46
--- /dev/null
+++ b/package/multimedia/gst-plugin-x170/gst-plugin-x170-01-correct-CFLAGS.patch
@@ -0,0 +1,28 @@
+The configure script is correctly getting the CFLAGS needed to compile a plugin
+for gstreamer and storing them in GST_BASE_CFLAGS but the Makefiles are never
+making use of those.
+
+We actually have to use AM_CPPFLAGS as AM_CFLAGS is used everywhere but on the
+real compiling rule...
+
+Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
+---
+ src/Makefile.am | 2 ++
+ 1 file changed, 2 insertions(+)
+
+diff --git a/src/Makefile.am b/src/Makefile.am
+index 8cb51d1..6af5d91 100644
+--- a/src/Makefile.am
++++ b/src/Makefile.am
+@@ -5,6 +5,8 @@
+ ##############################################################################
+ plugin_LTLIBRARIES = libgstx170.la
+
++AM_CPPFLAGS = @GST_BASE_CFLAGS@
++
+ ##############################################################################
+ # for the next set of variables, rename the prefix if you renamed the .la, #
+ # e.g. libgstplugin_la_SOURCES => libmysomething_la_SOURCES #
+--
+1.8.1.2
+
diff --git a/package/multimedia/gst-plugin-x170/gst-plugin-x170.mk b/package/multimedia/gst-plugin-x170/gst-plugin-x170.mk
new file mode 100644
index 0000000..a6143ed
--- /dev/null
+++ b/package/multimedia/gst-plugin-x170/gst-plugin-x170.mk
@@ -0,0 +1,18 @@
+################################################################################
+#
+# gst-plugins-x170
+#
+################################################################################
+
+GST_PLUGIN_X170_VERSION = 1.0
+GST_PLUGIN_X170_SITE = ftp://ftp.linux4sam.org/pub/demo/linux4sam_1.9/codec/
+
+GST_PLUGIN_X170_LICENSE = BSD-1c
+#A license file is included but it is just a placeholder
+
+# There is no generated configure script in the tarball.
+GST_PLUGIN_X170_AUTORECONF = YES
+GST_PLUGIN_X170_AUTORECONF_OPT = -Im4/
+GST_PLUGIN_X170_DEPENDENCIES = gstreamer libglib2 on2-8170-libs
+
+$(eval $(autotools-package))
--
1.8.1.2
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [Buildroot] [PATCH 1/3] Add on2-8170 kernel modules
2013-06-09 17:22 [Buildroot] [PATCH 1/3] Add on2-8170 kernel modules Alexandre Belloni
2013-06-09 17:22 ` [Buildroot] [PATCH 2/3] Add proprietary libraries for Hantro x170 HW decoding Alexandre Belloni
2013-06-09 17:22 ` [Buildroot] [PATCH 3/3] Add gstreamer plugin for Hantro x170 Alexandre Belloni
@ 2013-06-09 17:40 ` Baruch Siach
2013-06-09 18:36 ` Alexandre Belloni
2 siblings, 1 reply; 5+ messages in thread
From: Baruch Siach @ 2013-06-09 17:40 UTC (permalink / raw)
To: buildroot
Hi Alexandre,
On Sun, Jun 09, 2013 at 07:22:49PM +0200, Alexandre Belloni wrote:
> Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
> ---
> package/Config.in | 1 +
> package/on2-8170-modules/Config.in | 11 +++++++++++
> package/on2-8170-modules/on2-8170-modules.mk | 20 ++++++++++++++++++++
> 3 files changed, 32 insertions(+)
> create mode 100644 package/on2-8170-modules/Config.in
> create mode 100644 package/on2-8170-modules/on2-8170-modules.mk
>
> diff --git a/package/Config.in b/package/Config.in
> index ce82e99..e915abe 100644
> --- a/package/Config.in
> +++ b/package/Config.in
> @@ -272,6 +272,7 @@ source "package/minicom/Config.in"
> source "package/nanocom/Config.in"
> source "package/neard/Config.in"
> source "package/ofono/Config.in"
> +source "package/on2-8170-modules/Config.in"
> source "package/open2300/Config.in"
> source "package/openocd/Config.in"
> source "package/owl-linux/Config.in"
> diff --git a/package/on2-8170-modules/Config.in b/package/on2-8170-modules/Config.in
> new file mode 100644
> index 0000000..b11d69e
> --- /dev/null
> +++ b/package/on2-8170-modules/Config.in
> @@ -0,0 +1,11 @@
> +config BR2_PACKAGE_ON2_8170_MODULES
> + bool "on2-8170 modules"
> + depends on BR2_LINUX_KERNEL
> + help
> + Kernel modules for the LTTng 2.0 kernel tracing
> + infrastructure.
Are you sure?
> + http://www.at91.com/linux4sam/bin/view/Linux4SAM/SAM9M10Gstreamer
> +
> +comment "on2-8170 modules requires a linux kernel to be built"
> + depends on !BR2_LINUX_KERNEL
> diff --git a/package/on2-8170-modules/on2-8170-modules.mk b/package/on2-8170-modules/on2-8170-modules.mk
> new file mode 100644
> index 0000000..87dc8f2
> --- /dev/null
> +++ b/package/on2-8170-modules/on2-8170-modules.mk
> @@ -0,0 +1,20 @@
> +################################################################################
> +#
> +# on2-8170-modules
> +#
> +################################################################################
> +
> +ON2_8170_MODULES_VERSION = master
We usually use a specific commit id for consistent results, since maser
changes when commits are added.
baruch
> +ON2_8170_MODULES_SITE = git://github.com/alexandrebelloni/on2-8170-modules.git
> +
> +ON2_8170_MODULES_DEPENDENCIES = linux
> +
> +define ON2_8170_MODULES_BUILD_CMDS
> + $(MAKE) -C $(LINUX_DIR) $(LINUX_MAKE_FLAGS) M=$(@D)
> +endef
> +
> +define ON2_8170_MODULES_INSTALL_TARGET_CMDS
> + $(MAKE) -C $(LINUX_DIR) $(LINUX_MAKE_FLAGS) M=$(@D) modules_install
> +endef
> +
> +$(eval $(generic-package))
--
http://baruch.siach.name/blog/ ~. .~ Tk Open Systems
=}------------------------------------------------ooO--U--Ooo------------{=
- baruch at tkos.co.il - tel: +972.2.679.5364, http://www.tkos.co.il -
^ permalink raw reply [flat|nested] 5+ messages in thread
* [Buildroot] [PATCH 1/3] Add on2-8170 kernel modules
2013-06-09 17:40 ` [Buildroot] [PATCH 1/3] Add on2-8170 kernel modules Baruch Siach
@ 2013-06-09 18:36 ` Alexandre Belloni
0 siblings, 0 replies; 5+ messages in thread
From: Alexandre Belloni @ 2013-06-09 18:36 UTC (permalink / raw)
To: buildroot
Hi,
Right, two things I w anted to change before sending ;)
v2 is incoming.
On 09/06/2013 19:40, Baruch Siach wrote:
> Hi Alexandre,
>
> On Sun, Jun 09, 2013 at 07:22:49PM +0200, Alexandre Belloni wrote:
>> Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
>> ---
>> package/Config.in | 1 +
>> package/on2-8170-modules/Config.in | 11 +++++++++++
>> package/on2-8170-modules/on2-8170-modules.mk | 20 ++++++++++++++++++++
>> 3 files changed, 32 insertions(+)
>> create mode 100644 package/on2-8170-modules/Config.in
>> create mode 100644 package/on2-8170-modules/on2-8170-modules.mk
>>
>> diff --git a/package/Config.in b/package/Config.in
>> index ce82e99..e915abe 100644
>> --- a/package/Config.in
>> +++ b/package/Config.in
>> @@ -272,6 +272,7 @@ source "package/minicom/Config.in"
>> source "package/nanocom/Config.in"
>> source "package/neard/Config.in"
>> source "package/ofono/Config.in"
>> +source "package/on2-8170-modules/Config.in"
>> source "package/open2300/Config.in"
>> source "package/openocd/Config.in"
>> source "package/owl-linux/Config.in"
>> diff --git a/package/on2-8170-modules/Config.in b/package/on2-8170-modules/Config.in
>> new file mode 100644
>> index 0000000..b11d69e
>> --- /dev/null
>> +++ b/package/on2-8170-modules/Config.in
>> @@ -0,0 +1,11 @@
>> +config BR2_PACKAGE_ON2_8170_MODULES
>> + bool "on2-8170 modules"
>> + depends on BR2_LINUX_KERNEL
>> + help
>> + Kernel modules for the LTTng 2.0 kernel tracing
>> + infrastructure.
> Are you sure?
>
>> + http://www.at91.com/linux4sam/bin/view/Linux4SAM/SAM9M10Gstreamer
>> +
>> +comment "on2-8170 modules requires a linux kernel to be built"
>> + depends on !BR2_LINUX_KERNEL
>> diff --git a/package/on2-8170-modules/on2-8170-modules.mk b/package/on2-8170-modules/on2-8170-modules.mk
>> new file mode 100644
>> index 0000000..87dc8f2
>> --- /dev/null
>> +++ b/package/on2-8170-modules/on2-8170-modules.mk
>> @@ -0,0 +1,20 @@
>> +################################################################################
>> +#
>> +# on2-8170-modules
>> +#
>> +################################################################################
>> +
>> +ON2_8170_MODULES_VERSION = master
> We usually use a specific commit id for consistent results, since maser
> changes when commits are added.
>
> baruch
>
>> +ON2_8170_MODULES_SITE = git://github.com/alexandrebelloni/on2-8170-modules.git
>> +
>> +ON2_8170_MODULES_DEPENDENCIES = linux
>> +
>> +define ON2_8170_MODULES_BUILD_CMDS
>> + $(MAKE) -C $(LINUX_DIR) $(LINUX_MAKE_FLAGS) M=$(@D)
>> +endef
>> +
>> +define ON2_8170_MODULES_INSTALL_TARGET_CMDS
>> + $(MAKE) -C $(LINUX_DIR) $(LINUX_MAKE_FLAGS) M=$(@D) modules_install
>> +endef
>> +
>> +$(eval $(generic-package))
--
Alexandre Belloni, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2013-06-09 18:36 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-06-09 17:22 [Buildroot] [PATCH 1/3] Add on2-8170 kernel modules Alexandre Belloni
2013-06-09 17:22 ` [Buildroot] [PATCH 2/3] Add proprietary libraries for Hantro x170 HW decoding Alexandre Belloni
2013-06-09 17:22 ` [Buildroot] [PATCH 3/3] Add gstreamer plugin for Hantro x170 Alexandre Belloni
2013-06-09 17:40 ` [Buildroot] [PATCH 1/3] Add on2-8170 kernel modules Baruch Siach
2013-06-09 18:36 ` Alexandre Belloni
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox