mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-27 13:16:35 +00:00
packages/g*/Config.in: fix ordering of statements
The check-package script when ran gives warnings on ordering issues on all of these Config files. This patch cleans up all warnings related to the ordering in the Config files for packages starting with the letter g in the package directory. The appropriate ordering is: type, default, depends on, select, help See http://nightly.buildroot.org/#_config_files for more information. Signed-off-by: Adam Duskett <Adamduskett@outlook.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
parent
1ad03d5481
commit
791c5db743
@ -4,13 +4,13 @@ comment "gdb/gdbserver needs a toolchain w/ threads, threads debug"
|
|||||||
|
|
||||||
config BR2_PACKAGE_GDB
|
config BR2_PACKAGE_GDB
|
||||||
bool "gdb"
|
bool "gdb"
|
||||||
|
depends on BR2_TOOLCHAIN_HAS_THREADS && BR2_TOOLCHAIN_HAS_THREADS_DEBUG
|
||||||
|
depends on !BR2_nios2 && !BR2_bfin
|
||||||
# When the external toolchain gdbserver is copied to the
|
# When the external toolchain gdbserver is copied to the
|
||||||
# target, we don't allow building a separate gdbserver. The
|
# target, we don't allow building a separate gdbserver. The
|
||||||
# one from the external toolchain should be used.
|
# one from the external toolchain should be used.
|
||||||
select BR2_PACKAGE_GDB_SERVER if \
|
select BR2_PACKAGE_GDB_SERVER if \
|
||||||
(!BR2_PACKAGE_GDB_DEBUGGER && !BR2_TOOLCHAIN_EXTERNAL_GDB_SERVER_COPY)
|
(!BR2_PACKAGE_GDB_DEBUGGER && !BR2_TOOLCHAIN_EXTERNAL_GDB_SERVER_COPY)
|
||||||
depends on BR2_TOOLCHAIN_HAS_THREADS && BR2_TOOLCHAIN_HAS_THREADS_DEBUG
|
|
||||||
depends on !BR2_nios2 && !BR2_bfin
|
|
||||||
help
|
help
|
||||||
GDB, the GNU Project debugger, allows you to see what is
|
GDB, the GNU Project debugger, allows you to see what is
|
||||||
going on `inside' another program while it executes -- or
|
going on `inside' another program while it executes -- or
|
||||||
@ -38,9 +38,9 @@ config BR2_PACKAGE_GDB_SERVER
|
|||||||
|
|
||||||
config BR2_PACKAGE_GDB_DEBUGGER
|
config BR2_PACKAGE_GDB_DEBUGGER
|
||||||
bool "full debugger"
|
bool "full debugger"
|
||||||
select BR2_PACKAGE_NCURSES
|
|
||||||
depends on BR2_USE_WCHAR
|
depends on BR2_USE_WCHAR
|
||||||
depends on !BR2_sh && !BR2_microblaze
|
depends on !BR2_sh && !BR2_microblaze
|
||||||
|
select BR2_PACKAGE_NCURSES
|
||||||
|
|
||||||
comment "full gdb on target needs a toolchain w/ wchar"
|
comment "full gdb on target needs a toolchain w/ wchar"
|
||||||
depends on !BR2_sh && !BR2_microblaze
|
depends on !BR2_sh && !BR2_microblaze
|
||||||
|
@ -33,9 +33,9 @@ config BR2_PACKAGE_HOST_GDB_SIM
|
|||||||
|
|
||||||
choice
|
choice
|
||||||
prompt "GDB debugger Version"
|
prompt "GDB debugger Version"
|
||||||
|
default BR2_GDB_VERSION_7_11
|
||||||
depends on !BR2_arc
|
depends on !BR2_arc
|
||||||
depends on !BR2_microblaze
|
depends on !BR2_microblaze
|
||||||
default BR2_GDB_VERSION_7_11
|
|
||||||
help
|
help
|
||||||
Select the version of gdb you wish to use.
|
Select the version of gdb you wish to use.
|
||||||
|
|
||||||
@ -55,9 +55,9 @@ endif
|
|||||||
# If cross-gdb is not enabled, the latest working version is chosen.
|
# If cross-gdb is not enabled, the latest working version is chosen.
|
||||||
config BR2_GDB_VERSION
|
config BR2_GDB_VERSION
|
||||||
string
|
string
|
||||||
depends on BR2_PACKAGE_GDB || BR2_PACKAGE_HOST_GDB
|
|
||||||
default "arc-2017.03-rc1-gdb" if BR2_arc
|
default "arc-2017.03-rc1-gdb" if BR2_arc
|
||||||
default "6be65fb56ea6694a9260733a536a023a1e2d4d57" if BR2_microblaze
|
default "6be65fb56ea6694a9260733a536a023a1e2d4d57" if BR2_microblaze
|
||||||
default "7.10.1" if BR2_GDB_VERSION_7_10
|
default "7.10.1" if BR2_GDB_VERSION_7_10
|
||||||
default "7.11.1" if BR2_GDB_VERSION_7_11 || !BR2_PACKAGE_HOST_GDB
|
default "7.11.1" if BR2_GDB_VERSION_7_11 || !BR2_PACKAGE_HOST_GDB
|
||||||
default "7.12.1" if BR2_GDB_VERSION_7_12
|
default "7.12.1" if BR2_GDB_VERSION_7_12
|
||||||
|
depends on BR2_PACKAGE_GDB || BR2_PACKAGE_HOST_GDB
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
config BR2_PACKAGE_GESFTPSERVER
|
config BR2_PACKAGE_GESFTPSERVER
|
||||||
bool "gesftpserver"
|
bool "gesftpserver"
|
||||||
select BR2_PACKAGE_LIBICONV if !BR2_ENABLE_LOCALE
|
|
||||||
depends on BR2_USE_WCHAR
|
depends on BR2_USE_WCHAR
|
||||||
depends on BR2_TOOLCHAIN_HAS_THREADS
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
||||||
depends on BR2_USE_MMU # fork()
|
depends on BR2_USE_MMU # fork()
|
||||||
|
select BR2_PACKAGE_LIBICONV if !BR2_ENABLE_LOCALE
|
||||||
help
|
help
|
||||||
Green End SFTP Server
|
Green End SFTP Server
|
||||||
|
|
||||||
|
@ -1,12 +1,12 @@
|
|||||||
config BR2_PACKAGE_GLIBMM
|
config BR2_PACKAGE_GLIBMM
|
||||||
bool "glibmm"
|
bool "glibmm"
|
||||||
select BR2_PACKAGE_LIBGLIB2
|
|
||||||
select BR2_PACKAGE_LIBSIGC
|
|
||||||
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 # C++11
|
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 # C++11
|
||||||
depends on BR2_INSTALL_LIBSTDCPP
|
depends on BR2_INSTALL_LIBSTDCPP
|
||||||
depends on BR2_USE_WCHAR # libglib2
|
depends on BR2_USE_WCHAR # libglib2
|
||||||
depends on BR2_TOOLCHAIN_HAS_THREADS # libglib2
|
depends on BR2_TOOLCHAIN_HAS_THREADS # libglib2
|
||||||
depends on BR2_USE_MMU # libglib2
|
depends on BR2_USE_MMU # libglib2
|
||||||
|
select BR2_PACKAGE_LIBGLIB2
|
||||||
|
select BR2_PACKAGE_LIBSIGC
|
||||||
help
|
help
|
||||||
The GLibmm package is a set of C++ bindings for GLib.
|
The GLibmm package is a set of C++ bindings for GLib.
|
||||||
|
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
config BR2_PACKAGE_GNUPG
|
config BR2_PACKAGE_GNUPG
|
||||||
bool "gnupg"
|
bool "gnupg"
|
||||||
|
depends on !BR2_PACKAGE_GNUPG2
|
||||||
select BR2_PACKAGE_ZLIB
|
select BR2_PACKAGE_ZLIB
|
||||||
select BR2_PACKAGE_NCURSES
|
select BR2_PACKAGE_NCURSES
|
||||||
depends on !BR2_PACKAGE_GNUPG2
|
|
||||||
help
|
help
|
||||||
GnuPG is the GNU project's complete and free implementation
|
GnuPG is the GNU project's complete and free implementation
|
||||||
of the OpenPGP standard as defined by RFC4880. GnuPG allows
|
of the OpenPGP standard as defined by RFC4880. GnuPG allows
|
||||||
|
@ -4,6 +4,10 @@ comment "gnupg2 needs a toolchain w/ threads and dynamic library support"
|
|||||||
|
|
||||||
config BR2_PACKAGE_GNUPG2
|
config BR2_PACKAGE_GNUPG2
|
||||||
bool "gnupg2"
|
bool "gnupg2"
|
||||||
|
depends on BR2_PACKAGE_LIBGPG_ERROR_ARCH_SUPPORTS # libgpg-error
|
||||||
|
depends on BR2_TOOLCHAIN_HAS_THREADS # libnpth
|
||||||
|
depends on BR2_USE_MMU # libassuan, libnpth
|
||||||
|
depends on !BR2_STATIC_LIBS
|
||||||
select BR2_PACKAGE_ZLIB
|
select BR2_PACKAGE_ZLIB
|
||||||
select BR2_PACKAGE_LIBGPG_ERROR
|
select BR2_PACKAGE_LIBGPG_ERROR
|
||||||
select BR2_PACKAGE_LIBGCRYPT
|
select BR2_PACKAGE_LIBGCRYPT
|
||||||
@ -11,10 +15,6 @@ config BR2_PACKAGE_GNUPG2
|
|||||||
select BR2_PACKAGE_LIBKSBA
|
select BR2_PACKAGE_LIBKSBA
|
||||||
select BR2_PACKAGE_LIBNPTH
|
select BR2_PACKAGE_LIBNPTH
|
||||||
select BR2_PACKAGE_LIBICONV if !BR2_ENABLE_LOCALE
|
select BR2_PACKAGE_LIBICONV if !BR2_ENABLE_LOCALE
|
||||||
depends on BR2_PACKAGE_LIBGPG_ERROR_ARCH_SUPPORTS # libgpg-error
|
|
||||||
depends on BR2_TOOLCHAIN_HAS_THREADS # libnpth
|
|
||||||
depends on BR2_USE_MMU # libassuan, libnpth
|
|
||||||
depends on !BR2_STATIC_LIBS
|
|
||||||
help
|
help
|
||||||
GnuPG is the GNU project's complete and free implementation
|
GnuPG is the GNU project's complete and free implementation
|
||||||
of the OpenPGP standard as defined by RFC4880. GnuPG allows
|
of the OpenPGP standard as defined by RFC4880. GnuPG allows
|
||||||
|
@ -1,10 +1,10 @@
|
|||||||
config BR2_PACKAGE_GNUTLS
|
config BR2_PACKAGE_GNUTLS
|
||||||
bool "gnutls"
|
bool "gnutls"
|
||||||
|
depends on BR2_USE_WCHAR
|
||||||
select BR2_PACKAGE_LIBTASN1
|
select BR2_PACKAGE_LIBTASN1
|
||||||
select BR2_PACKAGE_LIBUNISTRING
|
select BR2_PACKAGE_LIBUNISTRING
|
||||||
select BR2_PACKAGE_NETTLE
|
select BR2_PACKAGE_NETTLE
|
||||||
select BR2_PACKAGE_PCRE
|
select BR2_PACKAGE_PCRE
|
||||||
depends on BR2_USE_WCHAR
|
|
||||||
help
|
help
|
||||||
GnuTLS is a secure communications library implementing the SSL
|
GnuTLS is a secure communications library implementing the SSL
|
||||||
and TLS protocols and technologies around them.
|
and TLS protocols and technologies around them.
|
||||||
|
@ -35,10 +35,10 @@ config BR2_PACKAGE_GPTFDISK_SGDISK
|
|||||||
|
|
||||||
config BR2_PACKAGE_GPTFDISK_CGDISK
|
config BR2_PACKAGE_GPTFDISK_CGDISK
|
||||||
bool "ncurses cgdisk"
|
bool "ncurses cgdisk"
|
||||||
select BR2_PACKAGE_NCURSES
|
|
||||||
select BR2_PACKAGE_NCURSES_WCHAR # needed because of UTF-16
|
|
||||||
depends on BR2_USE_WCHAR # ncurses wchar
|
depends on BR2_USE_WCHAR # ncurses wchar
|
||||||
depends on !(BR2_bfin && BR2_BINFMT_FLAT) # ncurses wchar support
|
depends on !(BR2_bfin && BR2_BINFMT_FLAT) # ncurses wchar support
|
||||||
|
select BR2_PACKAGE_NCURSES
|
||||||
|
select BR2_PACKAGE_NCURSES_WCHAR # needed because of UTF-16
|
||||||
help
|
help
|
||||||
Install the ncurses-based GUID partition table (GPT)
|
Install the ncurses-based GUID partition table (GPT)
|
||||||
manipulator /usr/sbin/cgdisk.
|
manipulator /usr/sbin/cgdisk.
|
||||||
|
@ -45,12 +45,12 @@ config BR2_PACKAGE_GST_FSL_PLUGINS_PLATFORM_MX233
|
|||||||
bool "imx233"
|
bool "imx233"
|
||||||
|
|
||||||
config BR2_PACKAGE_GST_FSL_PLUGINS_PLATFORM_MX25
|
config BR2_PACKAGE_GST_FSL_PLUGINS_PLATFORM_MX25
|
||||||
select BR2_PACKAGE_IMX_LIB_PLATFORM_IMX25_3STACK
|
|
||||||
bool "imx25"
|
bool "imx25"
|
||||||
|
select BR2_PACKAGE_IMX_LIB_PLATFORM_IMX25_3STACK
|
||||||
|
|
||||||
config BR2_PACKAGE_GST_FSL_PLUGINS_PLATFORM_MX27
|
config BR2_PACKAGE_GST_FSL_PLUGINS_PLATFORM_MX27
|
||||||
select BR2_PACKAGE_IMX_LIB_PLATFORM_IMX27ADS
|
|
||||||
bool "imx27"
|
bool "imx27"
|
||||||
|
select BR2_PACKAGE_IMX_LIB_PLATFORM_IMX27ADS
|
||||||
|
|
||||||
config BR2_PACKAGE_GST_FSL_PLUGINS_PLATFORM_MX28
|
config BR2_PACKAGE_GST_FSL_PLUGINS_PLATFORM_MX28
|
||||||
bool "imx28"
|
bool "imx28"
|
||||||
@ -62,28 +62,28 @@ config BR2_PACKAGE_GST_FSL_PLUGINS_PLATFORM_MX35
|
|||||||
bool "imx35"
|
bool "imx35"
|
||||||
|
|
||||||
config BR2_PACKAGE_GST_FSL_PLUGINS_PLATFORM_MX37
|
config BR2_PACKAGE_GST_FSL_PLUGINS_PLATFORM_MX37
|
||||||
select BR2_PACKAGE_IMX_LIB_PLATFORM_IMX37_3STACK
|
|
||||||
bool "imx37"
|
bool "imx37"
|
||||||
|
select BR2_PACKAGE_IMX_LIB_PLATFORM_IMX37_3STACK
|
||||||
|
|
||||||
config BR2_PACKAGE_GST_FSL_PLUGINS_PLATFORM_MX50
|
config BR2_PACKAGE_GST_FSL_PLUGINS_PLATFORM_MX50
|
||||||
select BR2_PACKAGE_IMX_LIB_PLATFORM_IMX50
|
|
||||||
bool "imx50"
|
bool "imx50"
|
||||||
|
select BR2_PACKAGE_IMX_LIB_PLATFORM_IMX50
|
||||||
|
|
||||||
config BR2_PACKAGE_GST_FSL_PLUGINS_PLATFORM_MX51
|
config BR2_PACKAGE_GST_FSL_PLUGINS_PLATFORM_MX51
|
||||||
select BR2_PACKAGE_IMX_LIB_PLATFORM_IMX51
|
|
||||||
bool "imx51"
|
bool "imx51"
|
||||||
|
select BR2_PACKAGE_IMX_LIB_PLATFORM_IMX51
|
||||||
|
|
||||||
config BR2_PACKAGE_GST_FSL_PLUGINS_PLATFORM_MX53
|
config BR2_PACKAGE_GST_FSL_PLUGINS_PLATFORM_MX53
|
||||||
select BR2_PACKAGE_IMX_LIB_PLATFORM_IMX53
|
|
||||||
bool "imx53"
|
bool "imx53"
|
||||||
|
select BR2_PACKAGE_IMX_LIB_PLATFORM_IMX53
|
||||||
|
|
||||||
config BR2_PACKAGE_GST_FSL_PLUGINS_PLATFORM_MX5X
|
config BR2_PACKAGE_GST_FSL_PLUGINS_PLATFORM_MX5X
|
||||||
select BR2_PACKAGE_IMX_LIB_PLATFORM_IMX5X
|
|
||||||
bool "imx5X"
|
bool "imx5X"
|
||||||
|
select BR2_PACKAGE_IMX_LIB_PLATFORM_IMX5X
|
||||||
|
|
||||||
config BR2_PACKAGE_GST_FSL_PLUGINS_PLATFORM_MX6
|
config BR2_PACKAGE_GST_FSL_PLUGINS_PLATFORM_MX6
|
||||||
select BR2_PACKAGE_IMX_LIB_PLATFORM_IMX6Q
|
|
||||||
bool "imx6"
|
bool "imx6"
|
||||||
|
select BR2_PACKAGE_IMX_LIB_PLATFORM_IMX6Q
|
||||||
|
|
||||||
endchoice
|
endchoice
|
||||||
|
|
||||||
|
@ -57,8 +57,8 @@ config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_DEBUGUTILS
|
|||||||
bool "debugutils"
|
bool "debugutils"
|
||||||
|
|
||||||
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_DECKLINK
|
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_DECKLINK
|
||||||
depends on BR2_INSTALL_LIBSTDCPP
|
|
||||||
bool "decklink"
|
bool "decklink"
|
||||||
|
depends on BR2_INSTALL_LIBSTDCPP
|
||||||
|
|
||||||
comment "decklink needs a toolchain w/ C++"
|
comment "decklink needs a toolchain w/ C++"
|
||||||
depends on !BR2_INSTALL_LIBSTDCPP
|
depends on !BR2_INSTALL_LIBSTDCPP
|
||||||
@ -261,8 +261,8 @@ config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_CURL
|
|||||||
|
|
||||||
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_DIRECTFB
|
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_DIRECTFB
|
||||||
bool "directfb"
|
bool "directfb"
|
||||||
depends on BR2_PACKAGE_DIRECTFB
|
|
||||||
default y
|
default y
|
||||||
|
depends on BR2_PACKAGE_DIRECTFB
|
||||||
|
|
||||||
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_DVB
|
config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_DVB
|
||||||
bool "dvb"
|
bool "dvb"
|
||||||
|
@ -201,12 +201,12 @@ config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_OSS4
|
|||||||
bool "oss4 (Open Sound System 4)"
|
bool "oss4 (Open Sound System 4)"
|
||||||
|
|
||||||
config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_PULSE
|
config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_PULSE
|
||||||
|
bool "pulseaudio"
|
||||||
depends on BR2_TOOLCHAIN_HAS_THREADS # pulseaudio
|
depends on BR2_TOOLCHAIN_HAS_THREADS # pulseaudio
|
||||||
depends on BR2_USE_MMU # pulseaudio
|
depends on BR2_USE_MMU # pulseaudio
|
||||||
depends on !BR2_STATIC_LIBS # pulseaudio
|
depends on !BR2_STATIC_LIBS # pulseaudio
|
||||||
depends on BR2_TOOLCHAIN_HAS_SYNC_4 # pulseaudio -> json-c
|
depends on BR2_TOOLCHAIN_HAS_SYNC_4 # pulseaudio -> json-c
|
||||||
select BR2_PACKAGE_PULSEAUDIO
|
select BR2_PACKAGE_PULSEAUDIO
|
||||||
bool "pulseaudio"
|
|
||||||
|
|
||||||
comment "pulseaudio support needs a toolchain w/ threads, dynamic library"
|
comment "pulseaudio support needs a toolchain w/ threads, dynamic library"
|
||||||
depends on BR2_USE_MMU
|
depends on BR2_USE_MMU
|
||||||
|
@ -489,8 +489,8 @@ config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_DASH
|
|||||||
DASH demuxer plugin
|
DASH demuxer plugin
|
||||||
|
|
||||||
config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_DECKLINK
|
config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_DECKLINK
|
||||||
depends on BR2_INSTALL_LIBSTDCPP
|
|
||||||
bool "decklink"
|
bool "decklink"
|
||||||
|
depends on BR2_INSTALL_LIBSTDCPP
|
||||||
help
|
help
|
||||||
Blackmagic Decklink plugin
|
Blackmagic Decklink plugin
|
||||||
|
|
||||||
@ -499,14 +499,14 @@ comment "decklink needs a toolchain w/ C++"
|
|||||||
|
|
||||||
config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_DIRECTFB
|
config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_DIRECTFB
|
||||||
bool "directfb"
|
bool "directfb"
|
||||||
depends on BR2_PACKAGE_DIRECTFB
|
|
||||||
default y
|
default y
|
||||||
|
depends on BR2_PACKAGE_DIRECTFB
|
||||||
|
|
||||||
config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_DVB
|
config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_DVB
|
||||||
bool "dvb"
|
bool "dvb"
|
||||||
select BR2_PACKAGE_DTV_SCAN_TABLES
|
|
||||||
# FEC_2_5 / QAM_4_NR definitions
|
# FEC_2_5 / QAM_4_NR definitions
|
||||||
depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_7
|
depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_7
|
||||||
|
select BR2_PACKAGE_DTV_SCAN_TABLES
|
||||||
help
|
help
|
||||||
DVB elements
|
DVB elements
|
||||||
|
|
||||||
@ -526,9 +526,9 @@ config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_FBDEV
|
|||||||
|
|
||||||
config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_FDK_AAC
|
config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_FDK_AAC
|
||||||
bool "fdk-aac"
|
bool "fdk-aac"
|
||||||
select BR2_PACKAGE_FDK_AAC
|
|
||||||
depends on BR2_PACKAGE_FDK_AAC_ARCH_SUPPORTS
|
depends on BR2_PACKAGE_FDK_AAC_ARCH_SUPPORTS
|
||||||
depends on BR2_INSTALL_LIBSTDCPP
|
depends on BR2_INSTALL_LIBSTDCPP
|
||||||
|
select BR2_PACKAGE_FDK_AAC
|
||||||
help
|
help
|
||||||
MPEG AAC encoder/decoder
|
MPEG AAC encoder/decoder
|
||||||
|
|
||||||
@ -686,9 +686,9 @@ config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_VOAACENC
|
|||||||
|
|
||||||
config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_WAYLAND
|
config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_WAYLAND
|
||||||
bool "wayland"
|
bool "wayland"
|
||||||
|
default y
|
||||||
depends on BR2_PACKAGE_WAYLAND
|
depends on BR2_PACKAGE_WAYLAND
|
||||||
select BR2_PACKAGE_WAYLAND_PROTOCOLS
|
select BR2_PACKAGE_WAYLAND_PROTOCOLS
|
||||||
default y
|
|
||||||
help
|
help
|
||||||
Wayland Video Sink
|
Wayland Video Sink
|
||||||
|
|
||||||
|
@ -54,9 +54,9 @@ config BR2_PACKAGE_GST1_PLUGINS_BASE_PLUGIN_GIO
|
|||||||
GIO elements
|
GIO elements
|
||||||
|
|
||||||
config BR2_PACKAGE_GST1_PLUGINS_BASE_PLUGIN_PLAYBACK
|
config BR2_PACKAGE_GST1_PLUGINS_BASE_PLUGIN_PLAYBACK
|
||||||
select BR2_PACKAGE_GST1_PLUGINS_BASE_PLUGIN_TYPEFIND
|
|
||||||
bool "playback"
|
bool "playback"
|
||||||
default y
|
default y
|
||||||
|
select BR2_PACKAGE_GST1_PLUGINS_BASE_PLUGIN_TYPEFIND
|
||||||
help
|
help
|
||||||
various playback elements
|
various playback elements
|
||||||
|
|
||||||
|
@ -306,9 +306,9 @@ comment "flac needs a toolchain w/ wchar"
|
|||||||
|
|
||||||
config BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_GDKPIXBUF
|
config BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_GDKPIXBUF
|
||||||
bool "gdkpixbuf"
|
bool "gdkpixbuf"
|
||||||
select BR2_PACKAGE_GDK_PIXBUF
|
|
||||||
depends on BR2_USE_WCHAR # gdk-pixbuf -> libglib2
|
depends on BR2_USE_WCHAR # gdk-pixbuf -> libglib2
|
||||||
depends on BR2_TOOLCHAIN_HAS_THREADS # gdk-pixbuf -> libglib2
|
depends on BR2_TOOLCHAIN_HAS_THREADS # gdk-pixbuf -> libglib2
|
||||||
|
select BR2_PACKAGE_GDK_PIXBUF
|
||||||
help
|
help
|
||||||
GdkPixbuf-based image decoder, overlay and sink
|
GdkPixbuf-based image decoder, overlay and sink
|
||||||
|
|
||||||
@ -316,12 +316,12 @@ comment "gdkpixbuf needs a toolchain w/ wchar, threads"
|
|||||||
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
|
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
|
||||||
|
|
||||||
config BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_PULSE
|
config BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_PULSE
|
||||||
|
bool "pulseaudio"
|
||||||
depends on BR2_TOOLCHAIN_HAS_THREADS # pulseaudio
|
depends on BR2_TOOLCHAIN_HAS_THREADS # pulseaudio
|
||||||
depends on BR2_USE_MMU # pulseaudio
|
depends on BR2_USE_MMU # pulseaudio
|
||||||
depends on !BR2_STATIC_LIBS # pulseaudio
|
depends on !BR2_STATIC_LIBS # pulseaudio
|
||||||
depends on BR2_TOOLCHAIN_HAS_SYNC_4 # pulseaudio -> json-c
|
depends on BR2_TOOLCHAIN_HAS_SYNC_4 # pulseaudio -> json-c
|
||||||
select BR2_PACKAGE_PULSEAUDIO
|
select BR2_PACKAGE_PULSEAUDIO
|
||||||
bool "pulseaudio"
|
|
||||||
help
|
help
|
||||||
PulseAudio plugin library
|
PulseAudio plugin library
|
||||||
|
|
||||||
@ -360,9 +360,9 @@ comment "taglib needs a toolchain w/ C++, wchar"
|
|||||||
|
|
||||||
config BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_VPX
|
config BR2_PACKAGE_GST1_PLUGINS_GOOD_PLUGIN_VPX
|
||||||
bool "vpx (webm)"
|
bool "vpx (webm)"
|
||||||
select BR2_PACKAGE_LIBVPX
|
|
||||||
depends on !BR2_bfin # libvpx
|
depends on !BR2_bfin # libvpx
|
||||||
depends on BR2_TOOLCHAIN_HAS_THREADS # libvpx
|
depends on BR2_TOOLCHAIN_HAS_THREADS # libvpx
|
||||||
|
select BR2_PACKAGE_LIBVPX
|
||||||
help
|
help
|
||||||
VP8 plugin
|
VP8 plugin
|
||||||
|
|
||||||
|
@ -1,12 +1,12 @@
|
|||||||
config BR2_PACKAGE_GST1_VAAPI
|
config BR2_PACKAGE_GST1_VAAPI
|
||||||
bool "gst1-vaapi"
|
bool "gst1-vaapi"
|
||||||
|
depends on !BR2_STATIC_LIBS # dlopen(), libva
|
||||||
|
depends on BR2_TOOLCHAIN_HAS_THREADS # libva, libdrm
|
||||||
|
depends on BR2_PACKAGE_HAS_UDEV
|
||||||
select BR2_PACKAGE_LIBVA
|
select BR2_PACKAGE_LIBVA
|
||||||
select BR2_PACKAGE_LIBDRM
|
select BR2_PACKAGE_LIBDRM
|
||||||
select BR2_PACKAGE_GST1_PLUGINS_BASE
|
select BR2_PACKAGE_GST1_PLUGINS_BASE
|
||||||
select BR2_PACKAGE_GST1_PLUGINS_BAD # gstreamer-codecparsers
|
select BR2_PACKAGE_GST1_PLUGINS_BAD # gstreamer-codecparsers
|
||||||
depends on !BR2_STATIC_LIBS # dlopen(), libva
|
|
||||||
depends on BR2_TOOLCHAIN_HAS_THREADS # libva, libdrm
|
|
||||||
depends on BR2_PACKAGE_HAS_UDEV
|
|
||||||
help
|
help
|
||||||
gstreamer-vaapi consists in a collection of VA-API based
|
gstreamer-vaapi consists in a collection of VA-API based
|
||||||
plugins for GStreamer and helper libraries.
|
plugins for GStreamer and helper libraries.
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
config BR2_PACKAGE_GUPNP_TOOLS
|
config BR2_PACKAGE_GUPNP_TOOLS
|
||||||
bool "gupnp-tools"
|
bool "gupnp-tools"
|
||||||
|
depends on BR2_PACKAGE_LIBGTK3
|
||||||
# gssdp, gupnp, libsoup all select on libglib2, so they have
|
# gssdp, gupnp, libsoup all select on libglib2, so they have
|
||||||
# the same dependencies as libgtk3, which we depend on. So for
|
# the same dependencies as libgtk3, which we depend on. So for
|
||||||
# the same of simplicity, we don't replicate all those
|
# the same of simplicity, we don't replicate all those
|
||||||
@ -8,7 +9,6 @@ config BR2_PACKAGE_GUPNP_TOOLS
|
|||||||
select BR2_PACKAGE_GUPNP
|
select BR2_PACKAGE_GUPNP
|
||||||
select BR2_PACKAGE_LIBSOUP
|
select BR2_PACKAGE_LIBSOUP
|
||||||
select BR2_PACKAGE_LIBXML2
|
select BR2_PACKAGE_LIBXML2
|
||||||
depends on BR2_PACKAGE_LIBGTK3
|
|
||||||
help
|
help
|
||||||
GUPnP Tools are free replacements of Intel UPnP tools that
|
GUPnP Tools are free replacements of Intel UPnP tools that
|
||||||
use GUPnP. They provides client and server side tools which
|
use GUPnP. They provides client and server side tools which
|
||||||
|
Loading…
x
Reference in New Issue
Block a user