https://bugs.kde.org/show_bug.cgi?id=525190
--- Comment #1 from Bryan Jacobs <[email protected]> --- This patch makes HDMI port 2 (and only port 2) work properly: ``` Index: plasma-bigscreen-6.7.4/inputhandler/libcec/cecworker.cpp =================================================================== --- plasma-bigscreen-6.7.4.orig/inputhandler/libcec/cecworker.cpp +++ plasma-bigscreen-6.7.4/inputhandler/libcec/cecworker.cpp @@ -41,6 +41,8 @@ void CECWorker::initialize(const QString cecConfig.deviceTypes.Add(CEC_DEVICE_TYPE_RECORDING_DEVICE); cecConfig.callbacks = &m_cecCallbacks; cecConfig.callbackParam = this; + cecConfig.iPhysicalAddress = 2; + cecConfig.iHDMIPort = 2; m_cecAdapter = CECInitialise(&cecConfig); ``` I conclude that what's needed is a runtime config option passing down the `iPhysicalAddress` value. -- You are receiving this mail because: You are watching all bug changes.
