Shenzhen Shiningworth MXQ Plus M12N is one of the first TV box powered by Amlogic S912 octa-core processor also bringing a faster GPU, VP9 and HDR support compared to the earlier Amlogic S905 processor. I’ve already shown the device, its accesories, and its internal degisn in the first part of MXQ Plus M12N review, so today I’ll spend time reporting my finding testing features and performance with Android 6.0 firmware. Setup Wizard and First Impressions Since there are only two USB ports, I connected my USB hard drive to one, and used a USB hub to connect input devices including two RF dongles for an air mouse, and a gamepad, as well as a USB keyboard to take screenshots. I also added Ethernet and HDMI cable, and finally connected the power supply to boot it up. But as you can see from the picture the very first boot was not […]
Coowell V4 Android mini PC with Camera Review – Part 1: Unboxing and Teardown
Coowell V4 is one of the rare Android mini PCs with a built-in camera. It is powered by Rockchip RK3368 octa-core processor combined with 2GB RAM and 16GB flash. GearBest asked me whether I wanted to review it, and since I was curious about the camera, I took the offer up. Today, in the first part of the review I’ll start by checking out the device and its accessories, and tear it down to find more about the hardware design, before specifically testing the camera in the second part of the review in a similar way to what I did for HD23 review. Coowell V4 Unboxing The device comes in a black retail package with SMART MEDIA HUB text. The only icon that may cause troubles at custom might be the Android logo and text lacking TM. There’s also sticker on the side indicate Model: V4. SO there may be […]
YOKATV KB2 Amlogic S912 TV Box Comes with 32GB Internal Storage
Most Android TV boxes now come with either 8 or 16GB, and in my experience it’s usually enough for most users. However, as we’ve seen recently, while not being as powerful as Nvidia Shield Android TV box, Amlogic S912 TV boxes are suitable for gaming, and games may use a lot of space, and for example a PSP street fighting game took 500 MB space when I tested it. So if you need more storage space, you may consider devices such as YOKATV KB2 that comes with 32GB eMMC flash. YOKATV KB2 specifications: SoC – Amlogic S912 octo-core ARM Cortex A53 processor @ up to 2.0GHz with ARM Mali-T820MP3 GPU @ up to 750MHz System Memory – 2GB DDR3 Storage – 32GB eMMC flash, micro SD slot up to 32GB Video Output – HDMI 2.0a with HDR, CEC and (maybe) HDCP 2.2 support + 3.5mm AV jack Audio Output – […]
Mini Review of MECOOL BM8 TV Box with Android 6.0 and Kodi 17.0
CNXSoft: An other review by Ray for an Amlogic S905X powered TV box provided by Videostrong. MECOOL BM8 specifications The specifications are pretty standard, except for the large flash: SoC – Amlogic S905X quad core Cortex A53 @ 2.0GHz with a penta-core Mali-450MP GPU Memory – 2GB DDR3 RAM Storage – 32GB eMMC flash + card reader for SD/SDHC/MMC cards Video Output – HDMI 2.0 up to 4K*2K “super HD video” with HDR support and AV outputs Audio Output – HDMI, AV, and optical S/PDIF Connectivity – 10/100M Ethernet, dual band WiFi 802.11 b/g/n, and Bluetooth 4.0 USB – 2x USB 2.0 port Supports HEVC (H.265) decoding The TV box runs Android 6.0. Unboxing The box comes with 3 different Power Adapters, a HDMI cable, power supply and a completely oversized (20cm/5cm) remote control with “learning modes ability”. No manual was inside the box. The Videostrong MECOOL BM8 is a […]
Using M12N Android Amlogic S912 TV Box as a Game Console (Video)
When Amlogic announced S912 processor, they mentioned it would target not only 4K OTT and IP set-top boxes, but also gaming consoles thanks to a faster and better Mali-T820MP3 GPU compared to the Mali-450MP GPU found in their previous S905 and S805 processor, and we’ve already seen that S912 is indeed faster in 3D benchmarks. So I decided to play several games to show the performance, the pre-loaded retro gaming app, and for people who have never used a TV box to play games show what it looks like, and how to play using M12N TV box, in conjunction with MINIX NEO A2 Lite air mouse and Tronsmart Mars G01 wireless gamepad. I played four games downloaded from the Play Store or Amazon Underground: Candy Crush Saga with air mouse Beach Buggy Racing and Riptide GP2 with the gamepad Dead Trigger with the air mouse in menus, and the gamepad […]
Amlogic Releases Linux 3.14 Source Code for S905X, S905D, and S912 Processors, Has Started Working on Linux 4.4 / Android 7.0
Amlogic has just released buildroot with Linux 3.14 with support for Amlogic S905X (p212 board), S905D (p230 board), and S912 (Q200 board) processors, and the company appears to have started working on Linux 4.4 likely for future support for Android 7.0. You can check the source code as follows:
1 2 3 |
wget -c http://openlinux.amlogic.com:8000/download/ARM/filesystem/arm-buildroot-2016-08-18-5aaca1b35f.tar.gz tar xf arm-buildroot-2016-08-18-5aaca1b35f.tar.gz cd buildroot |
If you have the wrong toolchain the code won’t build (See comments section). So I installed several toolchains provided by Amlogic (all may not be needed) in /opt:
1 2 3 4 5 6 7 8 9 10 |
wget -c http://openlinux.amlogic.com:8000/deploy/gcc-linaro-aarch64-linux-gnu-4.9-2014.09_linux.tar wget -c http://openlinux.amlogic.com:8000/deploy/gcc-linaro-aarch64-none-elf-4.8-2013.11_linux.tar wget -c http://openlinux.amlogic.com:8000/deploy/gcc-linaro-arm-linux-gnueabihf.tar.gz wget -c http://openlinux.amlogic.com:8000/deploy/arc-4.8-amlogic-20130904-r2.tar.gz wget -c http://openlinux.amlogic.com:8000/deploy/CodeSourcery.tar.gz sudo tar xvf gcc-linaro-aarch64-linux-gnu-4.9-2014.09_linux.tar -C /opt sudo tar xvf gcc-linaro-aarch64-none-elf-4.8-2013.11_linux.tar.bz2 -C /opt sudo tar xvf arc-4.8-amlogic-20130904-r2.tar.gz -C /opt sudo tar xvf gcc-linaro-arm-linux-gnueabihf.tar.gz -C /opt sudo tar xvf CodeSourcery.tar.gz -C /opt |
I also downloaded a shell script to add the toolchains to my path:
1 2 |
wget http://openlinux.amlogic.com:8000/deploy/TOOLSENV.sh source TOOLSENV.sh |
Once toolchains are setup, you can select one of three boards config (Q200 / S912 as example) and start building the code:
1 2 3 |
sudo apt install build-essential make mesongxm_q200_release_defconfig make |
If you are interested in S905X or S905D instead, use respectively mesongxl_p212_release_defconfig or mesongxl_p230_release_defconfig. I built both S912:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
ls -l output/images/ total 1338448 -rw-r--r-- 1 jaufranc jaufranc 20407939 Aug 30 13:44 boot.img lrwxrwxrwx 1 jaufranc jaufranc 54 Aug 30 13:44 dtb.img -> /home/jaufranc/buildroot/output/images/gxm_q200_2g.dtb -rw-r--r-- 1 jaufranc jaufranc 40521 Aug 30 11:34 gxm_q200_2g.dtb -rw-r--r-- 1 jaufranc jaufranc 16973552 Aug 30 11:34 Image -rw-r--r-- 1 jaufranc jaufranc 7002624 Aug 30 13:44 rootfs.cpio -rw-r--r-- 1 jaufranc jaufranc 3391430 Aug 30 13:44 rootfs.cpio.gz -rw-r--r-- 1 jaufranc jaufranc 3391494 Aug 30 13:44 rootfs.cpio.uboot -rw-r--r-- 1 jaufranc jaufranc 1073741824 Aug 30 13:44 rootfs.ext2 lrwxrwxrwx 1 jaufranc jaufranc 11 Aug 30 13:44 rootfs.ext4 -> rootfs.ext2 -rw-r--r-- 1 jaufranc jaufranc 176076800 Aug 30 13:44 rootfs.tar -rw-r--r-- 1 jaufranc jaufranc 67588619 Aug 30 13:45 rootfs.tar.gz -rw-r--r-- 1 jaufranc jaufranc 917504 Aug 30 13:42 u-boot.bin -rw-r--r-- 1 jaufranc jaufranc 918016 Aug 30 13:42 u-boot.bin.sd.bin |
and S905X images successfully:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
ls -l output/images/ total 593932 -rw-r--r-- 1 jaufranc jaufranc 20408642 Aug 30 13:41 boot.img lrwxrwxrwx 1 jaufranc jaufranc 72 Aug 30 13:41 dtb.img -> /home/jaufranc/edev/amlogic/905x/buildroot/output/images/gxl_p212_2g.dtb -rw-r--r-- 1 jaufranc jaufranc 37278 Aug 30 12:08 gxl_p212_2g.dtb -rw-r--r-- 1 jaufranc jaufranc 16973552 Aug 30 12:08 Image -rw-r--r-- 1 jaufranc jaufranc 7002624 Aug 30 13:40 rootfs.cpio -rw-r--r-- 1 jaufranc jaufranc 3391580 Aug 30 13:41 rootfs.cpio.gz -rw-r--r-- 1 jaufranc jaufranc 3391644 Aug 30 13:41 rootfs.cpio.uboot -rw-r--r-- 1 jaufranc jaufranc 1073741824 Aug 30 13:41 rootfs.ext2 lrwxrwxrwx 1 jaufranc jaufranc 11 Aug 30 13:41 rootfs.ext4 -> rootfs.ext2 -rw-r--r-- 1 jaufranc jaufranc 230502400 Aug 30 13:41 rootfs.tar -rw-r--r-- 1 jaufranc jaufranc 90573453 Aug 30 13:41 rootfs.tar.gz -rw-r--r-- 1 jaufranc jaufranc 917504 Aug 30 13:39 u-boot.bin -rw-r--r-- 1 jaufranc jaufranc 918016 Aug 30 13:39 u-boot.bin.sd.bin |
Separately, you can also find buildroot for Linux 4.4, but […]
WeTek Play 2 4K Android Set-top Box with ATSC, DVB-S2 or DVB-T2 Tuners is up for Pre-order for $120
With WeTek Play 2, initially unveiled as WeTek Play+, we now have a successor to WeTek Play with the same ATSC, DVB-S2/S, DVB-T2/T/C tuners, but much better specs thanks to Amlogic S905-H processor, 8GB storage, 2GB memory, and support for HDMI 2.0 and 4K60Hz video decoding allowing you to watch 4K UHD channels via your satellite dish for example. The device can be pre-ordered for $119.90 with the tuner of your choice, and shipping is slated to start on September 6th. WeTek Play 2 specifications have changed slightly since January: SoC – Amlogic S905-H rev. C quad core ARM Cortex-A53 @ up to 2.0GHz with penta-core Mali-450MP GPU @ 750 MHz System Memory – 2 GB DDR3 Storage – 8 GB eMMC 5.0 flash + micro SD card slot Video Output – HDMI 2.0 up to 4K @ 60Hz with HDCP 2.2 support Audio – HDMI, optical S/PDIF Video codecs […]
Beelink GT1 Android TV Box Powered by Amlogic S912 Sells for $56 (Promo)
In a recent list of Amlogic S912 TV boxes we found out that factory prices ranged between $47 to $54 for typical devices with 2GB RAM and 16GB internal storage, but you can only get those price by buying in quantities, and they don’t include shipping. However, GearBest has just informed me they lowered Beelink GT1 prices to $55.99 shipped with GBGT1 coupon, which – provided the box works well – looks like a good bargain. Beelink GT1 specifications: SoC – Amlogic S912 octa-core ARM Cortex A53 processor @ up to 2.0GHz with ARM Mali-820MP3 @ up to 750MHz System Memory – 2GB DDR3 Storage – 16GB eMMC flash, micro SD slot up to 32GB Video Output – HDMI 2.0a Audio Output – HDMI and optical S/PDIF Connectivity – Gigabit Ethernet, WiFi 802.11 b/g/n/ac, and Bluetooth 4.0 USB – 2x USB 2.0 ports Misc – IR receiver Power Supply – […]