Display MoreHi johnberg
Heres how to add the reboot to internal button.
1. Winscp into your box.
2. Navigate to confluence folder. Think its in .kodi/addons/confluence/720p/
3. Double click the DialogButtonMenu.xml file
4. Search for the words reboot button you should see code similiar to following
Code Display More<control type="button" id="8"> <description>Reboot button</description> <width>340</width> <height>40</height> <textcolor>grey2</textcolor> <focusedcolor>white</focusedcolor> <align>center</align> <textwidth>290</textwidth> <texturefocus border="25,5,25,5">ShutdownButtonFocus.png</texturefocus> <texturenofocus border="25,5,25,5">ShutdownButtonNoFocus.png</texturenofocus> <onclick>Reset()</onclick> <visible>System.CanReboot</visible> <pulseonselect>no</pulseonselect> <font>font13</font> <label>13013</label> </control>
5. Under that paste the following to add the button.
Code Display More<control type="button"> <description>Reboot to Internal</description> <width>340</width> <height>40</height> <textcolor>grey2</textcolor> <focusedcolor>white</focusedcolor> <align>center</align> <textwidth>290</textwidth> <texturefocus border="25,5,25,5">ShutdownButtonFocus.png</texturefocus> <texturenofocus border="25,5,25,5">ShutdownButtonNoFocus.png</texturenofocus> <onclick>System.ExecWait("/usr/sbin/rebootfromnand")</onclick> <pulseonselect>no</pulseonselect> <font>font13</font> <label>Reboot to Internal</label> </control>
6. Switch to a different skin and switch back to confluence to refresh skin (or you can reboot box). Press letter s on your keyboard to bring up the power menu. Hopefully Reboot to internal option should be listed. It may take a few seconds after you click it for the box to reboot into android.
Let me know if this works for you
I am trying to set this up as well, followed above but as you can see in the picture the reboot and reboot from internal are mushed together. So it will only reboot.
Can you help me space it so it is separated?
Much Appreciated.