Last month, I noticed Amlogic provided links to the Android SDK for S802 / M802 on their open source website, but the only way to get the source was to share your SSH public with Amlogic, so that they give you access. It did not happen, but the company has released the source for Linux 3.10.10, U-boot 2011.03, Realtek and Broadcom Wi-Fi drivers, NAND drivers, “TVIN”drivers, and kernel space GPU drivers for Mali-400 / 450 GPU. There are also some customer board files for Meson 6 only (AML8726-MX / M6) but they do not seem to match the kernel… If you want to build the kernel, including the drivers, you’ll need to download a bunch of files: wget http://openlinux.amlogic.com:8000/download/ARM/kernel/arm-src-kernel-2014-03-06-d5d0557b2b.tar.gz wget http://openlinux.amlogic.com:8000/download/ARM/wifi/rtk8192du-2014-03-06-7f70d95d29.tar.gz wget http://openlinux.amlogic.com:8000/download/ARM/wifi/rtk8192eu-2014-03-06-9766866350.tar.gz wget http://openlinux.amlogic.com:8000/download/ARM/wifi/rtk8192cu-2014-03-06-54bde7d73d.tar.gz wget http://openlinux.amlogic.com:8000/download/ARM/wifi/rtk8188eu-2014-03-06-2462231f02.tar.gz wget http://openlinux.amlogic.com:8000/download/ARM/wifi/brcmap6xxx-2014-03-06-302aca1a31.tar.gz wget http://openlinux.amlogic.com:8000/download/ARM/wifi/wifi-fw-2014-03-06-d3b2263640.tar.gz wget http://openlinux.amlogic.com:8000/download/ARM/modules/aml_tvin-2014-03-06-fb3ba6b1c8.tar.gz wget http://openlinux.amlogic.com:8000/download/ARM/modules/aml_nand-2014-03-06-39095c4296.tar.gz wget http://openlinux.amlogic.com:8000/download/ARM/customer/aml_customer-2014-03-06-76ce689191.tar.gz wget http://openlinux.amlogic.com:8000/download/ARM/gpu/gpu-2014-03-06-0425a1f681.tar.gz You’ll need to extract these tarballs in specific directories:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
tar xvf arm-src-kernel-2014-03-06-d5d0557b2b.tar.gz mkdir -p hardware/amlogic/ mkdir -p hardware/wifi/realtek/drivers mkdir -p hardware/wifi/broadcom/drivers mkdir -p hardware/arm/ cd hardware/amlogic tar xvf ../../../aml_nand-2014-03-06-39095c4296.tar.gz mv aml_nand-amlogic-nand nand cd ../wifi/realtek/drivers tar xvf ../../../../rtk8192du-2014-03-06-7f70d95d29.tar.gz tar xvf ../../../../rtk8192eu-2014-03-06-9766866350.tar.gz tar xvf ../../../../rtk8192cu-2014-03-06-54bde7d73d.tar.gz tar xvf ../../../../rtk8188eu-2014-03-06-2462231f02.tar.gz mv rtk8188eu-8188eu 8188eu mv rtk8192du-8192du 8192du mv rtk8192cu-8192cu 8192cu mv rtk8192eu-8192eu 8192eu cd ../../broadcom/drivers tar xvf ../../../../brcmap6xxx-2014-03-06-302aca1a31.tar.gz mv brcmap6xxx-ap6xxx ap6xxx cd ../../../arm tar xvf ../../gpu-2014-03-06-0425a1f681.tar.gz mv gpu-r3p2-01rel3 gpu cd .. tar xvf ../../aml_tvin-2014-03-06-fb3ba6b1c8.tar.gz mv aml_tvin-amlogic-3.10-bringup tvin |
You […]