Skip to content

Commit ffe51c9

Browse files
SandeepSMjoshua-henderson
authored andcommitted
g1-decoder: rename g1-binaries package to g1-decoder
build g1-decoder libraries using source code instead of using prebuilt g1-binaries and changing the references from g1-binaries to g1-decoder. Signed-off-by: Sandeep Sheriker Mallikarjun <[email protected]> Signed-off-by: Joshua Henderson <[email protected]>
1 parent 8e509ff commit ffe51c9

File tree

7 files changed

+27
-27
lines changed

7 files changed

+27
-27
lines changed

Config.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
source "$BR2_EXTERNAL_MCHP_PATH/package/browser/Config.in"
22
source "$BR2_EXTERNAL_MCHP_PATH/package/launcher/Config.in"
3-
source "$BR2_EXTERNAL_MCHP_PATH/package/g1-binaries/Config.in"
3+
source "$BR2_EXTERNAL_MCHP_PATH/package/g1-decoder/Config.in"
44
source "$BR2_EXTERNAL_MCHP_PATH/package/gst1-at91/Config.in"
55
source "$BR2_EXTERNAL_MCHP_PATH/package/homeautomation/Config.in"
66
source "$BR2_EXTERNAL_MCHP_PATH/package/minehunt/Config.in"

package/g1-binaries/Config.in

Lines changed: 0 additions & 5 deletions
This file was deleted.

package/g1-binaries/g1-binaries.mk

Lines changed: 0 additions & 19 deletions
This file was deleted.

package/g1-decoder/Config.in

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
config BR2_PACKAGE_G1_DECODER
2+
bool "g1-decoder"
3+
depends on BR2_arm
4+
help
5+
G1 video decoder for sama5d4 soc

package/g1-decoder/g1-decoder.mk

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
################################################################################
2+
#
3+
# g1-decoder for sama5d4 soc
4+
#
5+
################################################################################
6+
7+
G1_DECODER_VERSION = g1-decoder_1.0
8+
G1_DECODER_SITE = https://github.com/linux4sam/g1_decoder.git
9+
G1_DECODER_SITE_METHOD = git
10+
G1_DECODER_LICENSE = BSD
11+
G1_DECODER_INSTALL_TARGET = YES
12+
G1_DECODER_INSTALL_STAGING = YES
13+
14+
define G1_DECODER_RUN_AUTOGEN
15+
cd $(@D) && PATH=$(BR_PATH) ./autogen.sh
16+
endef
17+
G1_DECODER_POST_PATCH_HOOKS += G1_DECODER_RUN_AUTOGEN
18+
19+
$(eval $(autotools-package))

package/gst1-at91/Config.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ config BR2_PACKAGE_GST1_AT91
44
depends on !BR2_STATIC_LIBS
55
depends on BR2_TOOLCHAIN_USES_GLIBC
66
select BR2_PACKAGE_GST1_PLUGINS_BASE
7-
select BR2_PACKAGE_G1_BINARIES
7+
select BR2_PACKAGE_G1_DECODER
88
select BR2_PACKAGE_LIBDRM
99
help
1010
This is the gstreamer plugin for Microchip platforms

package/gst1-at91/gst1-at91.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ GST1_AT91_DEPENDENCIES += \
1616
host-pkgconf \
1717
gstreamer1 \
1818
gst1-plugins-base \
19-
g1-binaries \
19+
g1-decoder \
2020
libdrm
2121

2222
define GST1_AT91_RUN_AUTOGEN

0 commit comments

Comments
 (0)