Rikomagic MK802 Android mini PC Unboxing and Review

Youtube user Zaatour36 has received the low cost MK802 Android 4.0 mini-PC based on AllWinner A10 processor and has uploaded 2 videos. The first video gives an overview of the device connectors and show the different cables (mini HDMI to HDMI, USB) and adapters (microUSB to USB and power) that are provided with the MK802. The second video is more like a review, and shows how to connect the device, go to the setup menu to change the settings and language and play around with the different Android applications. You’ll also be able to get a feeling of the performance. Jean-Luc Aufranc (CNXSoft)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. www.cnx-software.com

74 USD AllWinner A10 Android 4.0 Mini PC

A cheap white brand Android 4.0 USB/HDMI Stick based on AllWinner A10 has started to show up in Chinese websites. Initially, I thought it was like a low cost version of FXI Tech Cotton Candy (which will start shipping this month), but as you can see in the image below, the HDMI port is female so you’d still need a HDMI cable. The hole next to the USB port should be for the power supply, so this device is apparently not powered via USB (TBC). Connect a wireless mouse and keyboard to the device, the power supply, and an HDMI cable to your TV, and you’ve got yourself a cheap PC running Android 4.0. Since this is based on AllWinner A10, you could also insert a microSD card with Ubuntu, Debian or your other favorite Linux distribution and have yourself a Linux PC. Here are the specifications of the device […]

makeSD Script to Write Image to SD Card for Mele A1000 / AllWinner A10 Devices

Most images released for Mele A1000 (Ubuntu, Puppy Linux..) won’t fit in my SD card, and until now I had to manually partition the SD card, extract the data and copy it to the SD card. I’ve also noticed the size of the SD card slowly creeps lower overtime. I bought an SD card last week and fdisk reported 3901685760 bytes and this morning the same command reported 3898782720 bytes. That’s probably due to new bad sectors which I believe is actually normal for this type of device. The problem is that a backup of “last week” SD card done with dd might not be restored properly with dd since the SD card is now smaller. So I decided to write a shell script “makeSD.sh” that will do the following: Umount the SD card if needed Partition the SD card Copy uboot to the SD card Mount the image file […]

Editing AllWinner A10 Board Configuration Files (script.bin)

AllWinner A10 based devices all have board configuration files in binary format, sometimes refereed to as script.bin, evb.bin, sys_config.{product_nane}.bin store in the FAT partition with the kernel. You may want to decode those binary files to configure your hardware and/or disable/enable peripherals. For the Ubuntu image provided for the Mele A1000 set-top box, the file is called evb.bin and the two other files (mele.bin and sys_config1.mele_mod.bin) are not used. The filename can change since it is configurable in u-boot e.g.: load1=fatload mmc 0 43000000 evb.bin bootcmd=run load1 boot_mmc If you want to decrypt the binary files into text format (fex), you can retrieve bin2fex tool: git clone https://github.com/amery/sunxi-tools Build it: cd sunxi-tools make This will compile both bin2fex (binary to fex text files) and fex2bin (fex files to bin), but the later does not seem to work right now. fex2bin also works now. If you want to decrypt a configuration […]

Xibo Digital Signage Running on Mele A1000 AllWinner A10 Set-Top Box

Those following my blog know that I recently bought a Mele A1000 to play around. For those who are not familiar with this device, the Mele A1000 is a $70 Android set-top box featuring an AllWinner A10 cortex A8 processor and lots of peripherals, and it can easily be hacked to run a Linux distributions. This hardware would also be a great digital signage player thanks to its video playback capabilities: up to 2160p video decoding and 1080p video output. Last year, I ported Xibo, an open source digital signage player, to ARM and ran it in the Beagleboard emulator (qemu), but I hadn’t had the opportunity to try it out in a real hardware. I’ve tried this rootfs based on Linaro ARM Linux Internet Platform (ALIP) image for BeagleBoard in the Mele A1000, by following an adaptation of the method I provided earlier. For this demo, I created a […]

How to Create Your Own Debian / Ubuntu Image for Mele A1000 (AllWinner A10 Based STB)

Developers working on AllWinner A10 have released an Ubuntu 10.04 LTS SD card image (4GB) for the Mele A1000. I’ll show how you can create your own Debian or Ubuntu image based on this image for any size of SD Card using Debian 6.0 (Squeeze) and the recent Ubuntu 12.04 (Precise Pangolin) as example. The current image is not perfect, for example Ethernet doesn’t work (but you can still get network connectivity with WiFi), the NAND flash can not be accessed, the system does not appear to be very stable when running X and a few more issues. But this will be fixed by the developer community over time. First download the SD card image wget http://hands.com/~lkcl/mele-ubuntu-lucid.img.lzma Install 7z (if you don’t have it yet) and decompress the file: sudo apt-get install p7zip-full 7z x mele-ubuntu-lucid.img.lzma The decompressed size is 4008706048, which might be larger than your 4GB SD Card […]

Olimex A13-OLinuXino Could Become a Proper Raspberry Pi Alternative

Olimex recently announced they produced the first 10 prototypes of iMX233-OLinuXino Development Board, a low-end Linux development board that will cost 30 Euros, with specifications inferior to the Raspberry Pi. They have now announced their plan to design A13-OLinuxXino development board based on the new AllWinner A13 chipset, a strip down version of AllWinner A10 without HDMI nor SATA. Thanks to the low cost of AllWinner A13 (5 USD for very large orders / 10 USD in smaller quantities), Olimex plans to sell the new A13-OLinuxXino board for the same price as the iMX233-OLinuXino but with a faster 1GHz Cortex A8 processor and 256 or 512 MB RAM. I assume their will be 2 versions as well, the MINI for 29,95 Euros and the MAXI version with 2 more USB 2.0 host ports and 10/100Mbit Ethernet for 44.95 Euros. This board could be a very interesting alternative to the Raspberry […]

Ubuntu on AllWinner A10 based Mele A1000 Set-top Box

I’ve recently received and reviewed the 70 USD Mele A1000 STB powered by AllWinner A10, but haven’t been able to hack it yet since I’ve have not received the USB to Serial cable necessary for debugging the board. However, somebody else (Tom Cubie) had time to hack the box and run Ubuntu from a SD card (while still keeping Android in the flash) as you can see below. This port does not seem to include hardware accelerated GUI just yet, but this is definitely a step in the right direction. Tom said he just followed the instructions at http://rhombus-tech.net/allwinner_a10/hacking_the_mele_a1000/ and http://rhombus-tech.net/a10_mmc_boot/ to have Ubuntu working, but those do not appear to be that clear at the moment. Jean-Luc Aufranc (CNXSoft)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 […]

UP 7000 x86 SBC