update buildroot to 2017.02.11
This commit is contained in:
19
bsp/buildroot-2017.02.11/package/libcec/Config.in
Normal file
19
bsp/buildroot-2017.02.11/package/libcec/Config.in
Normal file
@@ -0,0 +1,19 @@
|
||||
config BR2_PACKAGE_LIBCEC
|
||||
bool "libcec"
|
||||
depends on BR2_INSTALL_LIBSTDCPP
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS
|
||||
depends on BR2_USE_WCHAR
|
||||
depends on !BR2_STATIC_LIBS
|
||||
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_7 # C++11
|
||||
select BR2_PACKAGE_LIBPLATFORM
|
||||
help
|
||||
libcec allows you in combination with the right hardware to
|
||||
control your home theater devices with your TV remote
|
||||
control utilizing existing HDMI cabling.
|
||||
|
||||
http://libcec.pulse-eight.com
|
||||
|
||||
comment "libcec needs a toolchain w/ C++, wchar, threads, dynamic library, gcc >= 4.7"
|
||||
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS || \
|
||||
!BR2_USE_WCHAR || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_7 || \
|
||||
BR2_STATIC_LIBS
|
||||
2
bsp/buildroot-2017.02.11/package/libcec/libcec.hash
Normal file
2
bsp/buildroot-2017.02.11/package/libcec/libcec.hash
Normal file
@@ -0,0 +1,2 @@
|
||||
# Locally computed
|
||||
sha256 0f29d5a2d155b507807ba896bc3b3e50a0ab56bf8f543a2bf5c2798c790292b5 libcec-2c675dac48387c48c7f43c5d2547ef0c4ef5c7dd.tar.gz
|
||||
40
bsp/buildroot-2017.02.11/package/libcec/libcec.mk
Normal file
40
bsp/buildroot-2017.02.11/package/libcec/libcec.mk
Normal file
@@ -0,0 +1,40 @@
|
||||
################################################################################
|
||||
#
|
||||
# libcec
|
||||
#
|
||||
################################################################################
|
||||
|
||||
LIBCEC_VERSION = 2c675dac48387c48c7f43c5d2547ef0c4ef5c7dd
|
||||
LIBCEC_SITE = $(call github,Pulse-Eight,libcec,$(LIBCEC_VERSION))
|
||||
LIBCEC_LICENSE = GPLv2+
|
||||
LIBCEC_LICENSE_FILES = COPYING
|
||||
|
||||
LIBCEC_INSTALL_STAGING = YES
|
||||
LIBCEC_DEPENDENCIES = host-pkgconf libplatform
|
||||
|
||||
ifeq ($(BR2_PACKAGE_LOCKDEV),y)
|
||||
LIBCEC_DEPENDENCIES += lockdev
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_HAS_UDEV),y)
|
||||
LIBCEC_DEPENDENCIES += udev
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_PYTHON)$(BR2_PACKAGE_PYTHON3),y)
|
||||
LIBCEC_DEPENDENCIES += host-swig $(if $(BR2_PACKAGE_PYTHON3),python3,python)
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_RPI_USERLAND),y)
|
||||
LIBCEC_DEPENDENCIES += rpi-userland
|
||||
LIBCEC_CONF_OPTS += \
|
||||
-DCMAKE_C_FLAGS="$(TARGET_CFLAGS) -lvcos -lvchiq_arm" \
|
||||
-DCMAKE_CXX_FLAGS="$(TARGET_CXXFLAGS) \
|
||||
-I$(STAGING_DIR)/usr/include/interface/vmcs_host/linux \
|
||||
-I$(STAGING_DIR)/usr/include/interface/vcos/pthreads"
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_XLIB_LIBXRANDR),y)
|
||||
LIBCEC_DEPENDENCIES += xlib_libXrandr
|
||||
endif
|
||||
|
||||
$(eval $(cmake-package))
|
||||
Reference in New Issue
Block a user