As some of you already know, I’ve been playing around with Tronsmart Vega S89 Elite, an Android TV Box powered by Amlogic S802 quad-core ARM Cortex A9r4 processor at 2 GHz. Today, I’ll show how to boot a headless Linux image on any Amlogic-based S802 TV Box from the network. The instructions can mainly be used as a starting point for developers, as it requires access to a serial terminal via UART, but if you’ve never done it before, the instructions should be easy enough to follow. Everything is loaded from the network, the kernel (via boot.img) is loaded via TFTP, and the rootfs (Linaro ALIP image) is mounted via NFS, so it’s nearly impossible to brick your device using the method provided. Linaro ALIP rootfs comes with LXDE, but at this stage, the desktop environment is not showing, even though my HDMI TV is properly detected by the drivers. However, Ethernet, USB mass storage, and the micro SD seem to be working just fine.
If you want to skip the kernel compilation part, ramdisk modification, and just boot your Vega S89 Elite from network you can download vegas89eboot.img (compressed with bzip2), and skip steps 4 to 9 included. Please don’t just flash this image or use it without reading the post, as even if it should not brick your device, Android won’t boot at all if you don’t follow the right instructions.
Let’s get started
- Make sure you’ve connected a USB to serial board to your S802-based device.
- If not done already, you’ll need to install TFTP and NFS servers, and then get basic development tools installed on a Linux computer. All instructions here have been performed on a PC running Ubuntu 14.04 64-bit.
- For the TFTP server, I installed and ran aftfpd as follows:
12sudo apt-get install atftpdsudo tftpd --daemon - Instructions to install an NFS server on Ubuntu/Debian.
- You’ll need to install the build-essentials and other tools to successfully build Linux, something like:
1sudo apt-get install git-core build-essential zip curl g++-multilib cpio gcc-arm-linux-gnueabihf gcc-arm-linux-gnueabi
- For the TFTP server, I installed and ran aftfpd as follows:
- Download a rootfs, and extract it to your NFS directory. For example:
12345mkdir -p /srv/nfs/alippushd /srv/nfs/alipwget http://releases.linaro.org/14.04/openembedded/vexpress-lsk/linaro-image-alip-genericarmv7a-20140417-248.rootfs.tar.gzsudo tar xzvf linaro-image-alip-genericarmv7a-20140417-248.rootfs.tar.gzpopd - Get the device tree file (DTD) for your device from its firmware image or, if not available, directly from the NAND flash.
- Follow the instructions to get S802 kernel source and setup the source tree until after the step where you do
1make ARCH=arm meson8_defconfig - Run “make ARCH=arm menuconfig” to enable NFS client support as shown below.
Then exit and save - You’ll need to edit mk_m8.sh script for your device using the correct DTD file, which you need to copy to ./arch/arm/boot/dts/amlogic/ directory. I’ve renamed the script to mk_vegas89e.sh, and edited it as follows:
123456789101112131415# Modify these four lines for your boardDTDFILE=meson8_vegas89eDTDFILE_PATH=./arch/arm/boot/dts/amlogic/BOOTIMG=vegas89eboot.imgROOTFS="rootfs.cpio"make uImage -j8#make modulesmake ${DTDFILE}.dtdmake ${DTDFILE}.dtb./mkbootimg --kernel ./arch/arm/boot/uImage --ramdisk ./${ROOTFS} --second ${DTDFILE_PATH}/${DTDFILE}.dtb --output ./${BOOTIMG}ls -l ./${BOOTIMG}echo "${BOOTIMG} done" - We also need to create an init to switch the root to NFS. Normally, we should be able to do this in the bootloader with “bootargs” but this did not work for me, probably because I missed some steps.
- Extract the ramdisk provided with the source code
123mkdir rootfscd rootfssudo cpio -i -F ../rootfs.cpio - Delete sbin/init symlink to busybox, and create a new init file. Be very careful at this stage as if you inadvertently add a leading slash, you’ll mess up with your PC system.
12rm sbin/initsudo vi sbin/init - Here’s the content of sbin/init. Replace 192.168.0.104 by the IP address of your PC / NFS server, and /srv/nfs/alip by the path where you extracted your rootfs in the NFS directory.
12345678910111213#!/bin/busybox shecho "CNXSoft init script entered"PATH="/bin:/sbin:/usr/bin:/usr/sbin"echo "DHCP..."udhcpc eth0echo "Mounting NFS rootfs..."mount -t nfs -o proto=tcp -o nolock 192.168.0.104:/srv/nfs/alip /mntecho "Switching root..."exec switch_root /mnt /sbin/init - Recreate the ramdisk
12find .| sudo cpio -o -H newc > ../rootfs.cpiocd ..
- Extract the ramdisk provided with the source code
- Now we can finally build the kernel, and boot.img:
12chmod +x mk_vegas89e.sh./mk_vegas89e.sh - It should take between a minute to a few minutes depending on your machine, and if everything works as planned you could get your boot.img, in my case vegas89eboot.img. Copy it to your tftp server directory
1sudo cp vegas89eboot.img /srv/tftp/boot.img - Now start minicom connected to ttyUSB0 (115200 8N1), and power the TV box. Press the space bar, or any other key, during boot up to access U-boot command line. Let’s define IP addresses for the board, the TFTP server, and gateway (router), and save these to the U-boot environment:
1234m8_k200_v1# setenv ipaddr 192.168.0.144m8_k200_v1# setenv serverip 192.168.0.104m8_k200_v1# setenv gatewayip 192.168.0.1m8_k200_v1# saveenv - Setup the boot arguments for NFS. I know I should really have used fixed IP instead of dhcp, for consistency, and to shave off two or three seconds to boot time, but…
1m8_k200_v1# setenv bootargs 'root=/dev/nfs rootfstype=nfs nfsroot=192.168.0.104:/srv/nfs/alip,rw,nolock ip=dhcp rootwait init=/sbin/init no_console_suspend storage=4 logo=osd1,loaded,0x15100000,576cvbs,full hdmimode=720p cvbsmode=576cvbs androidboot.firstboot=0 hdmitx=cec0 console=ttyS0,115200n8'
You could also use saveenv to save these, but then Android won’t boot any more next time you start the board. Alternatively, you could create a bootargs2 and copy this to bootargs before running Linux. - Load boot.img from the TFTP server
1bootp - Start the system
1bootm
Once you make sure boot.img loads properly from TFTP server, you could also combine both commands with “bootp; bootm“ - You should now have access to the command line as root, no password required. An sshd daemon is already running so you can access it via ssh if you want. The board temperature will be outputted every second or so. There must be a way to disable that in the code, but in the meantime you can do:
1echo "3 3 3 3" > /proc/sys/kernel/printk
Let’s have a look at free memory, storage devices and more.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
root@genericarmv7a:~# uname -a Linux genericarmv7a 3.10.10 #2 SMP PREEMPT Tue May 13 17:14:29 ICT 2014 armv7l x root@genericarmv7a:~# free -m total used free shared buffers Mem: 1578 91 1487 0 3 -/+ buffers: 87 1490 Swap: 0 0 0 root@genericarmv7a:~# df -h Filesystem Size Used Available Use% Mounted on 192.168.0.104:/srv/nfs/alip 901.0G 656.3G 199.0G 77% / tmpfs 40.0K 0 40.0K 0% /mnt/.psplash tmpfs 789.3M 176.0K 789.1M 0% /run tmpfs 789.3M 128.0K 789.1M 0% /var/volatile none 775.2M 4.0K 775.2M 0% /dev /dev/sda1 3.4G 2.7G 678.8M 80% /media/sda1 root@genericarmv7a:~# |
There’s about 1.5GB ram free, I’ve got a lot of storage in the root as it is the 1TB hardware in my PC, and my 4GB USB flash drive was almost mounted automatically.
I’ll also through the CPU information for reference:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
root@genericarmv7a:~# cat /proc/cpuinfo Processor : ARMv7 Processor rev 1 (v7l) processor : 0 BogoMIPS : 12.65 processor : 1 BogoMIPS : 12.65 processor : 2 BogoMIPS : 12.65 processor : 3 BogoMIPS : 12.65 Features : swp half thumb fastmult vfp edsp neon vfpv3 tls CPU implementer : 0x41 CPU architecture: 7 CPU variant : 0x4 CPU part : 0xc09 CPU revision : 1 Hardware : Amlogic Meson8 platform Revision : 000b Serial : 1900000000000000 |
You should easily be able to adapt these instructions to boot from flash, by inserting boot.img into one of the available firmware update packages, and switching root to a USB flash or hard drive with the rootfs. I’m not sure how to access the flash partitions right now, as only the bootloader shows up in the MTD partition, but it;s the same thing in Android.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
root@genericarmv7a:~# cat /proc/mtd dev: size erasesize name mtd0: 00060000 00001000 "bootloader" mtd1: 00010000 00001000 "ubootenv" root@genericarmv7a:~# ls /dev/block/ -l total 0 lrwxrwxrwx 1 root root 8 Apr 17 15:21 254:0 -> ../zram0 lrwxrwxrwx 1 root root 12 Apr 17 15:21 31:0 -> ../mtdblock0 lrwxrwxrwx 1 root root 12 Apr 17 15:21 31:1 -> ../mtdblock1 lrwxrwxrwx 1 root root 8 Apr 17 15:21 7:0 -> ../loop0 lrwxrwxrwx 1 root root 8 Apr 17 15:21 7:1 -> ../loop1 lrwxrwxrwx 1 root root 8 Apr 17 15:21 7:2 -> ../loop2 lrwxrwxrwx 1 root root 8 Apr 17 15:21 7:3 -> ../loop3 lrwxrwxrwx 1 root root 8 Apr 17 15:21 7:4 -> ../loop4 lrwxrwxrwx 1 root root 8 Apr 17 15:21 7:5 -> ../loop5 lrwxrwxrwx 1 root root 8 Apr 17 15:21 7:6 -> ../loop6 lrwxrwxrwx 1 root root 8 Apr 17 15:21 7:7 -> ../loop7 lrwxrwxrwx 1 root root 6 Apr 17 15:21 8:0 -> ../sda lrwxrwxrwx 1 root root 7 Apr 17 15:21 8:1 -> ../sda1 |
I’m not sure I’ll go much further myself, but hopefully, some people will pick up on this, and we’ll get a fully working easily installable Linux server and desktop images for Amlogic S802-based platforms.
Jean-Luc started CNX Software in 2010 as a part-time endeavor, before quitting his job as a software engineering manager, and starting to write daily news, and reviews full time later in 2011.
Support CNX Software! Donate via cryptocurrencies, become a Patron on Patreon, or purchase goods on Amazon or Aliexpress
XBMC build on pure buildroot use this to init video output
https://github.com/CoreTech-Development/buildroot-mx_linux/tree/2013.11-Amlogic_Gotham/board/amlogic/M6_MX/overlay/etc/init.d
fbset -g 1280 720 1280 1440 32
At least it works for me on MX board
But in most case x.org init and configure framebuffer correctly without fbset
This it for hw accelerated compositing and and opengl support in applications.
How to X.org on mali from arm mali directly 🙂
http://malideveloper.arm.com/develop-for-mali/features/graphics-and-compute-development-on-samsung-chromebook/
But you will need
mali drivers for x.org
https://github.com/linux-sunxi/sunxi-mali-proprietary
Hey, I ‘m here again 🙂 Thanks for maintaining such a awesome site! It always gives me surprise.
So it ‘s *completely* possible to build a usable linux kernel on s802? By “completely” I mean USB support, cardreader support, gpu, and so on. I read your last post, device tree for s802 is available!
If it ‘s possible to build a perfect kernel, then I ‘m going to give up the aml8726mx hack, and turn to s802 happily.
@Riaqn
But most of as will be still happy to see 3.10 kernel on aml8726mx devices 🙂
https://github.com/CoreTech-Development/buildroot-mx_linux/issues/5
@Riaqn
USB support, card reader yes.
GPU is more complicated. Having a desktop on the framebuffer should be feasible, but 2D/3D hardware acceleration is more tricky. Links provided by @m][sko should help.
If these “pesky” RK3288 and AllWinner A80 were not hitting the market soon :), I’d be more confident a community could gather around S802. We’ll see.
@m][sko
Hi, thanks for the link, a group of awesome person. 🙂
I ‘m quite new to linux on arm. Does it have to take so much effort to make it boot? I cannot run linux on my aml8726-mx now, I think just because there is no dtd file matching my device. Will my device be supported if these cool guys work things out?
BTW, does it take special steps to boot a kernel consisting a dtb? I just load the boot.img and “bootm” as usual. Just to make sure 🙂
@Jean-Luc Aufranc (CNXSoft)
Oh god, I just saw my device is listed on their README!
STVMX (G02REF) (mx_linux_stvmx_defconfig)
JYNXM6 (G02REF) (mx_linux_jynxm6_defconfig)
This is from my android firmware kernel log:
[0.000000@0] Machine: Amlogic Meson6 g02 customer platform
Though I don ‘t know which one to use…does it mean something special to me? I mean, Do they have dtd file or something?
@Riaqn
They use kernel 3.0 but no public kernel source 🙁
But As I said.
I still hope that you will solve kernel 3.10 for aml8726-mx 🙂
@m][sko
Well without the dtd file it’s too hard for me to make it…I probably have to wait till the official android firmware go to 3.10…then I can get the dtd file. But it will never happen(a tvbox ‘s kernel needn’t to be up-to-date, haha).
@Riaqn I’ll just clarify again: With Linux 3.0.5 – The hardware is defined with the board file (C language) + .config With linux 3.5 and greater – The hardware is defined via device tree files (DTS/DTB). Before I checked Amlogic source code, I never heard about DTD by the way. So since they are using 3.0.5 device tree file are not usable… as it’s not supported by the kernel. @m][sko I really thought the source code was available. But after re-reading things like http://www.cnx-software.com/2012/08/18/amlogic-releases-aml8726-mx-linux-3-0-8-source-code/, the code appears to be incomplete so it’s not really usable, except maybe on some specific… Read more »
@Jean-Luc Aufranc (CNXSoft)
If it possible please post a full kernel boot log and if there’s any debug output when running “ip” command or “ip addr” then please also post it.
I’ve been trying getting ethernet working with kernel 3.10 on meson6 (Arch Linux, systemd) without luck ATM.
@Jean-Luc Aufranc (CNXSoft)
some board integration files:
https://github.com/Stane1983/kernel-amlogic-mx/tree/master/customer
My stupid USB uart is broken, crappy deal, i will buy a new one asap, and give this a go. (m8 Square S802)
@dhead Full boot log – http://pastebin.com/YzZYMpfz root@genericarmv7a:~# ip addr 1: lo: mtu 65536 qdisc noqueue link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 inet 127.0.0.1/8 scope host lo valid_lft forever preferred_lft forever inet6 ::1/128 scope host valid_lft forever preferred_lft forever 2: eth0: mtu 1500 qdisc pfifo_fast qlen 1000 link/ether 6e:36:3d:06:44:bb brd ff:ff:ff:ff:ff:ff inet 192.168.0.106/24 brd 192.168.0.255 scope global eth0 valid_lft forever preferred_lft forever inet6 fe80::6c36:3dff:fe06:44bb/64 scope link valid_lft forever preferred_lft forever 3: sit0: mtu 1480 qdisc noop link/sit 0.0.0.0 brd 0.0.0.0 4: ip6tnl0: mtu 1452 qdisc noop link/tunnel6 00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00 brd 00:00:00:00 I’m not sure it’s relevant to your case, but when I used meson8_k200… Read more »
Hi, I have one more question 🙂 Now I gave up on the attempt to 3.10.10, and turn back to 3.0. I get the source from here https://github.com/Stane1983/kernel-amlogic-mx I compiled the kernel, all things is perfect. But when I type ‘uptime’ to check the system load: Riaqn-MBox ~ # uptime 18:25:19 up 1:14, 1 user, load average: 4.00, 4.01, 3.95 It’s always greater than 4. But there isn ‘t any heavy program running: 2343 root 20 0 3188 1316 960 R 0.7 0.2 0:00.03 top 4 root 20 0 0 0 0 S 0.3 0.0 0:18.62 kworker/0:0 1 root 20… Read more »
@Jean-Luc Aufranc (CNXSoft)
Thanks, I’m not sure why would this make any difference, it’s just the same value in hex instead of dec.
From a brief look at the 3.0.50 source I think the intterupt num is the same for the meson6 (40 or 0x38) so I’ll give it a try (ethbaseaddr is not the same).
Probably next week I’ll play a bit with the uboot sources and try get a FTD enabled uboot on my device to see if it would help.
@Riaqn
It must be a bug. I think I’ve some people talk about the same type of issues with Linux on the Wandboard (Freescale i.MX6)
@dhead
Oops that’s embarrassing… I thought both values were written in hex. So it’s definitely something else.
@Riaqn
That was not wandboard but GK802, and it was a bug in the kernel. It could be the same in your case.
https://groups.google.com/forum/#!topic/imx6-dongle/XBrh4_iPyUM
@Jean-Luc Aufranc (CNXSoft)
Thanks for your link, there ‘s a discussion here too, http://www.linuxquestions.org/questions/linux-server-73/server-with-high-load-average-and-no-obvious-reason-677824/
I check my system with the command in the thread, it turns out to be 3 process related to hdmi and 1 process related to cardreader. I ‘ve reconfigure the kernel and disable the hdmi. Now the load go down to 1. Since the bug doesn’t affect the performance actually, so I just stop here.
By the way, the kernel-3.0 Stane1983 maintained is perfect. 🙂 Though with only experimental nfsv4 support, but ‘unstable’ is better than ‘cannot boot’.
@Riaqn
similar to raspberry pi problem
https://github.com/Hexxeh/rpi-firmware/issues/46
breaking news – official S802 firmware source code ‘released’ including DTD for S802-H etc. – https://github.com/oman007/s82_kernel
@gizmomelb
We don’t have problem with kernel sources
http://www.cnx-software.com/2014/03/10/amlogic-gpl-source-code-release-kernel-3-10-u-boot-and-drivers-wi-fi-nand-tvin-mali-gpu/
We have problem with version as amlogic don’t release up to date version from their git for public
@gizmomelb
Nice.
Kernel 3.10.33, missing mali and ump kernel modules (probably we can use Amlogic’s gpu 20140306 public release).
I decided to create my own monstrous linux-meson repo just for kicks (I’m not much of developer and surely not kernel developer) and I pulled in also this kernel tree, will have fun next week with the sources.
https://github.com/MakakLabs/linux-meson
I also created a Github organization dubbed “not-aml” to mirror Amlogic OpenLinux GPL releases (still missing the filesystem releases with Amlogic misc libraries like amlplayer).
https://github.com/not-aml
@m][sko
and sometimes the “dtd files”, too, as amlogic doesn ‘t release dtd files of their customers’ board, some of which don’t have a firmware later than 3.5, from which we cannot get a dtd file.
just curious if you’ve had a look at the source I linked… it’s the (leaked) same source and tools used to build the official 102K4 firmware for the Tronsmart S89 and Beelink M8 S802 Amlogic media players.
@gizmomelb
This kernel tree fixed my issues with ethernet on meson6, I now running Arch Linux on the g18.
Is there any new info on this? Has anyone got full Linux booting?
@dhead
what about internal usb wifi on meson6_g18?
I now try running Ubuntu precise with 3.10.33 amlogic kernel,
there is no wifi device on usb device list (lsusb -t), only usb hosts…(on 3.0.101 kernel all ok)
Hey,
So is there an easy installable image already?
I would love that!
@Pedro
I haven’t worked on it since then, and I know some Linux developers have Vega S89 Elite, and MINIX NEO X8, but nobody has released an image yet.
I follow instruction above to make my tronsmart vega s89 boot to linux headless from nfs but i not success when I use commnad bootp, please help me to solve this problems. Another hand, I want to flash nflash with image linux headless, how can I do? Thanks. My Ip: setenv ipaddr 192.168.11.10 setenv serverip 192.168.11.144 setenv gatewayip 192.168.11.1 saveenv setenv bootargs ‘root=/dev/nfs rootfstype=nfs nfsroot=192.168.11.144:/srv/nfs/alip,rw,nolock ip=dhcp rootwait init=/sbin/init no_console_suspend storage=4 logo=osd1,loaded,0x15100000,576cvbs,full hdmimode=720p cvbsmode=576cvbs androidboot.firstboot=0 hdmitx=cec0 console=ttyS0,115200n8’ My error: m8_k200_v1#bootp Amlogic Ethernet Init Success: reset mac OK!(0) ETH PHY hardware reset OK find net phy id=0x2430c54, phyad=0 set_mac_mode(0) final_addr[rx-tx]: 0x7ffee000-0x7ffee600 Ethernet… Read more »
@lionnet
Looks like your TFTP daemon is not running, or you firewall blocks it.
I haven’t checked how to flash to NAND in details, but I’d imagine you can use one of the Android firmware update package, and modify it for Linux.
@Jean-Luc Aufranc (CNXSoft)
Thanks for your reply! I run Tftp daemon on the same machine that I use UART. So I think not problems from firewall or TFTP, the problems in the parameter bootargs. So please let me know how to set IP static not DHCP like you show me.
Another hands, I follow the http://www.stane1983.com/amlinux/ to put linux but this is not linux, I cannot install any package on it. So you can show me how to put debian or ubuntu through Android firmware update. Thanks
Really nice, you are genius.
Sir, now I need the latest update for M8 Amlogic S802 Android.