<html><head><meta http-equiv="Content-Type" content="text/html charset=utf-8"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class="">Hello,<div class=""><br class=""></div><div class="">As always, had a perfectly working Myth setup on Fedora 21 and Myth 27.4.</div><div class=""><br class=""></div><div class="">Updated to Fedora 22 and things look fine, except for lirc and sending channel changes.</div><div class=""><br class=""></div><div class="">Now, with my HDPVR, using this simple script, I am getting this error and having a hard time diagnosing…</div><div class="">Any thoughts on the cause or changes in F22 that could have caused this:</div><div class=""><br class=""></div><div class=""><br class=""></div><div class=""><div style="margin: 0px; font-size: 11px; line-height: normal; font-family: Menlo;" class="">channel.sh 313</div><div style="margin: 0px; font-size: 11px; line-height: normal; font-family: Menlo; min-height: 13px;" class=""><br class=""></div><div style="margin: 0px; font-size: 11px; line-height: normal; font-family: Menlo;" class="">hardware does not support sending</div><div style="margin: 0px; font-size: 11px; line-height: normal; font-family: Menlo;" class="">Error running command: Input/output error</div><div style="margin: 0px; font-size: 11px; line-height: normal; font-family: Menlo; min-height: 13px;" class=""><br class=""></div><div style="margin: 0px; font-size: 11px; line-height: normal; font-family: Menlo;" class="">hardware does not support sending</div><div style="margin: 0px; font-size: 11px; line-height: normal; font-family: Menlo;" class="">Error running command: Input/output error</div><div style="margin: 0px; font-size: 11px; line-height: normal; font-family: Menlo; min-height: 13px;" class=""><br class=""></div><div style="margin: 0px; font-size: 11px; line-height: normal; font-family: Menlo;" class="">hardware does not support sending</div><div style="margin: 0px; font-size: 11px; line-height: normal; font-family: Menlo;" class="">Error running command: Input/output error</div><div style="margin: 0px; font-size: 11px; line-height: normal; font-family: Menlo; min-height: 13px;" class=""><br class=""></div><div style="margin: 0px; font-size: 11px; line-height: normal; font-family: Menlo;" class="">hardware does not support sending</div><div style="margin: 0px; font-size: 11px; line-height: normal; font-family: Menlo;" class="">Error running command: Input/output error</div><div style="margin: 0px; font-size: 11px; line-height: normal; font-family: Menlo; min-height: 13px;" class=""><br class=""></div><div style="margin: 0px; font-size: 11px; line-height: normal; font-family: Menlo;" class="">hardware does not support sending</div><div style="margin: 0px; font-size: 11px; line-height: normal; font-family: Menlo;" class="">Error running command: Input/output error</div><div style="margin: 0px; font-size: 11px; line-height: normal; font-family: Menlo; min-height: 13px;" class=""><br class=""></div><div style="margin: 0px; font-size: 11px; line-height: normal; font-family: Menlo;" class="">hardware does not support sending</div><div style="margin: 0px; font-size: 11px; line-height: normal; font-family: Menlo;" class="">Error running command: Input/output error</div></div><div style="margin: 0px; font-size: 11px; line-height: normal; font-family: Menlo;" class=""><br class=""></div><div style="margin: 0px; font-size: 11px; line-height: normal; font-family: Menlo;" class="">Script I use:</div><div style="margin: 0px; font-size: 11px; line-height: normal; font-family: Menlo;" class=""><br class=""></div><div style="margin: 0px; font-size: 11px; line-height: normal; font-family: Menlo;" class=""><div style="margin: 0px; line-height: normal;" class="">#!/bin/bash</div><div style="margin: 0px; line-height: normal; min-height: 13px;" class=""><br class=""></div><div style="margin: 0px; line-height: normal;" class=""> REMOTE_NAME=blaster</div><div style="margin: 0px; line-height: normal;" class=""> DEVICE=/var/run/lirc/lircd</div><div style="margin: 0px; line-height: normal;" class=""> SLEEP_TIME="0.4"</div><div style="margin: 0px; line-height: normal;" class=""> STB=0_109</div><div style="margin: 0px; line-height: normal; min-height: 13px;" class=""><br class=""></div><div style="margin: 0px; line-height: normal;" class=""> send () {</div><div style="margin: 0px; line-height: normal;" class="">   irsend --device=${DEVICE} SEND_ONCE ${REMOTE_NAME} ${STB}_${1}</div><div style="margin: 0px; line-height: normal;" class="">   # irsend SEND_ONCE ${REMOTE_NAME} ${STB}_${1}</div><div style="margin: 0px; line-height: normal;" class="">   sleep ${SLEEP_TIME}</div><div style="margin: 0px; line-height: normal;" class=""> }</div><div style="margin: 0px; line-height: normal; min-height: 13px;" class=""><br class=""></div><div style="margin: 0px; line-height: normal;" class="">send KEY_EXIT</div><div style="margin: 0px; line-height: normal;" class=""> #send KEY_ENTER</div><div style="margin: 0px; line-height: normal;" class="">send KEY_MNSELECT</div><div style="margin: 0px; line-height: normal; min-height: 13px;" class=""><br class=""></div><div style="margin: 0px; line-height: normal;" class=""> for DIGIT in $(echo ${1} | sed -e 's/./& /g'); do</div><div style="margin: 0px; line-height: normal;" class="">   send KEY_${DIGIT}</div><div style="margin: 0px; line-height: normal;" class=""> done</div><div style="margin: 0px; line-height: normal; min-height: 13px;" class=""><br class=""></div><div style="margin: 0px; line-height: normal;" class="">send KEY_MNSELECT</div><div style="margin: 0px; line-height: normal;" class=""> #send KEY_ENTER</div><div style="margin: 0px; line-height: normal;" class=""><br class=""></div><div style="margin: 0px; line-height: normal;" class="">Thoughts on what I can check?</div></div></body></html>