While doing a Google search to locate the open Linux page of AMLogic, I noticed another link reading “Amlogic AML8726-MX Linux kernel code released“. Interesting. So AMLogic appears to have released the kernel source code for their latest dual core Cortex A9 processor at the beginning of August and the tarball is available from their open source site: kernel-common-2012-08-03-git-a63244fb9c.tar.gz. A github user (fards) also imported the code to github, but he’s not affiliated with AMLogic, so don’t expect commits from AMLogic there. Let’s retrieve it:
1 |
git clone git://github.com/fards/AMlogic_Meson6_030812release.git |
AML8726-MX is codenamed MESON6 in the source code, and the code is in arch/arm/mach-meson6/, but let’s see if we can find a config file in arch/arm/configs. Yes! There are 4: meson6_android_defconfig – Android config file (Single core) meson6_defconfig – Linux config file (Single core) all Android config disabled. meson6smp_android_defconfig – Android config file with smp (symmetric multiprocessing) support meson6smp_defconfig – Config file with smp […]