Yesterday, we got Linux kernel 3.0.8 source code from Telechips, as well as some files related to Android 4.0 (Webkit + OMX). Today, I’ve had a look at the kernel source code and found a few very interesting things. First let’s get the code from github:
1 |
git clone git://github.com/cnxsoft/telechips-linux.git |
Good news! The code for the latest Telechips TCC892X is present in arch/arm/mach-tcc892x, and there is support for 3 types of boards: board-m805_892x – TCC8923 M805 board board-tcc8920 – TCC8920 evaluation board board-tcc8920st – TCC8920 STB evaluation board TCC8920 STB evaluation board appears to be relevant to products such as Diyomate A6, but if it’s also used for TCC8925 HDMI Dongle such as CX-01 mini PC, Zero Devices Z900 or ValuePlus TizzBird N1. Now let’s have a look at the default config directory for arm (arch/arm/configs):
1 2 3 4 5 6 7 8 |
ls | grep tcc89 tcc8920st_defconfig tcc8920st_hdb892s_defconfig tcc8925st_dongle_defconfig tcc8925st_donglehs_defconfig tcc8925st_hdb892f_defconfig tcc8925st_isdbt_module_defconfig tcc892x_defconfig |
Nice! tcc8925st_dongle_defconfig and tcc8925st_donglehs_defconfig look particularly interesting! A quick comparison shows that the only difference is […]