User Tools

Site Tools


doc:appunti:hardware:x96_mini

This is an old revision of the document!


Installing CoreELEC on the X96 Mini Android TV Box

I bought this little device for about 27 EUR in January 2022 from Aliexpress, I wish to use it as a TV Box, getting media from the LAN or from an external hard disk atthached via USB. It is based on the Amlogic S905W chip, equipped with 1 Gb of RAM and 16 Gb of flash storage.

The device is shipped with Android 9 and some apps installed on it. Among the installed apps you can find Kodi 18, Youtube, Netflix, etc. I want a better control of the hardware and of the operating system and I need only the Kodi app, so I decided to install a Kodi distribution on the SD card. Fortunately this device can boot from the SD card, leaving the original operating system on the flash memory untouched.

It seems that the best combination of Kodi and GNU/Linux operating system for this device is the one offered by CoreELEC.

From the download section I selected my options:

Device X96 Mini
RAM Variant 1G
DTB gxl_p281_1g
SoC S905W

SD card preparation

I used mu GNU/Linux computer to prepare a 16 Gb micro SD card.

  1. Donwload the image CoreELEC-Amlogic-ng.arm-19.4-Matrix_rc2-Generic.img.gz and gunzip it.
  2. Copy the image over an SD card using the Linux command line tool dd:
    dd if=CoreELEC-Amlogic-ng.arm-19.4-Matrix_rc2-Generic.img of=/dev/sdb bs=4M conv=fsync
  3. Mount the first partition on the SD card and copy the file device_trees/gxl_p281_1g.dtb into the root directory, renaming it to dtb.img.

First boot using the toothpick trick

The X96 Mini, like many other Amlogic devices, have an hidden reset button inside the AV jack. Get a wood toothpick, make it a bit rounded removing the tip and insert it into the AV jack, you should feel the click of the button. Do some experimentation with the device turned off until you are sure you can press it correctly.

  1. Remove the power jack from the device.
  2. Connect the HDMI cable to the TV.
  3. Press the reset button with the toothpick and keep it pressed.
  4. Connect the power jack, still keeping the reset button pressed.
  5. Wait some seconds until you see the CoreELEC screen. On the top-left corner you can see some writings about the ongoing writing process; you can release the reset button.

Configure the remote control

The remote control provided with my device does not work out-of-the-box in CoreELEC. I created a custom remote control keymap with the following procedure.

Connect to the CoreELEC box using SSH and stop kodi and infra-red services:

systemctl stop kodi
systemctl stop eventlircd

To check if the remote is generating some events detected by the GNU/Linux infra-red subsystem, run the following command:

ir-keytable -p NEC,RC-5,RC-6,JVC,SONY -t

Press some keys on the remote; this is an example of the output when pressing the OK key on the remote:

CoreELEC:~ # ir-keytable -p NEC,RC-5,RC-6,JVC,SONY -t
Protocols changed to rc-5 jvc sony nec rc-6 
Testing events. Please, press CTRL-C to abort.
496.280087: event type EV_MSC(0x04): scancode = 0x113
496.280087: event type EV_SYN(0x00).

It turned out that my remote is using the NEC protocol (just experiment with the -p option above).

To get a list of valid button names run the command:

irrecord --list-namespace

The buttons that I mapped from my remote are:

# table X96MINI_KODI, type: NEC
0x140 KEY_POWER
0x144 KEY_VIDEO         # KD Button
# Media center keys
0x155 KEY_PREVIOUS
0x15a KEY_PLAYPAUSE
0x152 KEY_STOP
0x154 KEY_NEXT
# Color buttons
0x143 KEY_RED           # SETUP
0x10f KEY_GREEN         # APP
0x110 KEY_VOLUMEDOWN
0x118 KEY_VOLUMEUP
# Arrows keypad
0x151 KEY_LEFT
0x150 KEY_RIGHT
0x116 KEY_UP
0x11a KEY_DOWN
0x113 KEY_ENTER
# Extra buttons
0x111 KEY_HOME
0x119 KEY_ESC
0x14c KEY_CONTEXT_MENU
0x100 KEY_INFO          # Mouse
# Numeric keypad
0x101 KEY_0
0x14e KEY_1
0x10d KEY_2
0x10c KEY_3
0x14a KEY_4
0x109 KEY_5         
0x108 KEY_6                    
0x146 KEY_7                    
0x105 KEY_8         
0x104 KEY_9                    
0x141 KEY_MUTE                 
0x142 KEY_TEXT          # Backspace                       

To load the new key table:

ir-keytable -a /storage/.config/rc_maps.cfg -s rc0

You can verify that the key name is associated witht the scancode, e.g. pressing the left key you should get:

CoreELEC:~ # ir-keytable -p NEC -t
Protocols changed to nec 
Testing events. Please, press CTRL-C to abort.
9641.553993: event type EV_MSC(0x04): scancode = 0x151
9641.553993: event type EV_KEY(0x01) key_down: KEY_LEFT(0x0069)
9641.553993: event type EV_SYN(0x00).
9641.565262: event type EV_MSC(0x04): scancode = 0x151
9641.565262: event type EV_SYN(0x00).
9641.692059: event type EV_MSC(0x04): scancode = 0x151
9641.692059: event type EV_SYN(0x00).
9641.948038: event type EV_KEY(0x01) key_up: KEY_LEFT(0x0069)
9641.948038: event type EV_SYN(0x00).

Finally you can restart infra-red and kodi services:

systemctl start eventlircd
systemctl start kodi
doc/appunti/hardware/x96_mini.1643370876.txt.gz · Last modified: 2022/01/28 12:54 by niccolo