Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions config/functions
Original file line number Diff line number Diff line change
Expand Up @@ -553,6 +553,7 @@ show_config() {
config_message="$config_message\n - Remote support:\t\t\t $REMOTE_SUPPORT"
config_message="$config_message\n - ATV Remote support:\t\t\t $ATVCLIENT_SUPPORT"
config_message="$config_message\n - CEC Adapter support:\t\t\t $CEC_SUPPORT"
config_message="$config_message\n - CEC Framework support:\t\t\t $CEC_FRAMEWORK_SUPPORT"
config_message="$config_message\n - Kodi Joystick support:\t\t $JOYSTICK_SUPPORT"

# Misc. hardware configuration
Expand Down
3 changes: 3 additions & 0 deletions distributions/LibreELEC/options
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,9 @@
# build and install CEC adapter support (yes / no)
CEC_SUPPORT="yes"

# build and install CEC framework support (yes / no)
CEC_FRAMEWORK_SUPPORT="no"

# build and install iSCSI support - iscsistart (yes / no)
ISCSI_SUPPORT="yes"

Expand Down
5 changes: 5 additions & 0 deletions packages/devel/libcec/package.mk
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,11 @@ else
PKG_CMAKE_OPTS_TARGET="$PKG_CMAKE_OPTS_TARGET -DHAVE_AOCEC_API=0 -DHAVE_AMLOGIC_API=0"
fi

if [ "$CEC_FRAMEWORK_SUPPORT" = "yes" ]; then
PKG_PATCH_DIRS="cec-framework"
PKG_CMAKE_OPTS_TARGET="$PKG_CMAKE_OPTS_TARGET -DHAVE_LINUX_API=1"
fi

pre_configure_target() {
if [ "$KODIPLAYER_DRIVER" = "bcm2835-driver" ]; then
export CXXFLAGS="$CXXFLAGS \
Expand Down
Loading