BDD Group (Black Dragon Development Group), a US based technology startup, has recently announced an AllWinner A10 Computer-on Module (CoM) targeting the industrial embedded market with support for Linux, Android and WinCE operating systems. The company did not provide complete specifications for the CoM/SoM, and they basically listed A10 specifications and added an RTC: SoC – AllWinner A10 ARM Cortex-A8 CPU + Mali-400 GPU VPU – Support for 2160P video decoding, 3D video decoding, various codecs such as VP8, AVS, H. 264 MVC, VC-1, MPEG-1,2,4, etc, and H.264 HP video encoding up to 1080p @ 30 fps or dual-channel 720p @ 30 fps. Display Multi-channel HD display Integrated HDMI 1.4 YPbPr, CVBS, VGA Multiple LCD interfaces, including CPU, RGB, LVDS up to Full HD Memory 32-bit DDR2/DDR3 up to 2GB SLC/MLC/TLC/DDR NAND up to 64 GB Boot Devices – NAND Flash, SPI NOR Flash, SD Card,USB RTC – Real time […]
Linaro Connect HK Greg Kroah-Hartman Keynote: “I Don’t Want Your Code!”
If you are a developer interested in getting your code into mainline, Greg KH keynote at Linaro Connect 2013 Hong Kong is probably worth a watch. In this presentation entitled “I Don’t Want Your Code! Linux Kernel Maintainers, why are they so grumpy?”, he first describes the large amount of patches they receive (7.28 patches per hour for kernel 3.8.0), gives some statistic about developers and companies involved with the kernel (about 20% is done by individuals), tells the audience they should submit the kernel code during SoC emulation/simulation stage, so that it’s accepted and ready to use when customers get the silicons (like Intel does), and quotes Intel and IBM executives saying “Working upstream saves time and money”. He then moves on what he does not want to see (and gets a lot): patch series with missing patches, email signature saying it’s confidential (since Linux development is done publicly, […]
$49.90 MarsBoard is Yet Another AllWinner A10 Development Board
After the tablet based Gooseberry and Hackberry boards, as well as Cubieboard and the upcoming A10-Olinuxino development boards, here’s another development board based on AllWinner A10 called the MarsBoard that looks very similar to the Cubieboard. Here are the key features of the board: SoC – AllWinner A10 Cortex A8 @ 1 GHz + Mali-400 GPU System Memory – 1GB DRAM Storage – 4GB Flash + 1x microSD card (up to 32GB) Video Output – HDMI Audio Output – 3.5mm stereo jack USB – 2x USB host port + 1x microUSB Connectivity – 10/100 M Ethernet SATA Connector Headers – 2x 2.0mm GPIO headers. (140 pins in total) Power Supply Requirements – 5V/2A Dimensions – 80mm x 55mm There’s also a 3.5mm jack but I’m not sure if it’s just for audio in or out, or for composite output. The website is still in construction (basically a modified copy of […]
Cloudsto AllWinner A20 Android 4.2 mini PC and Set-top Boxes
AllWinner A20 is a dual core Cortex A7 processor destined to provide an easy pin-to-pin compatible upgrade for AllWinner A10 devices, and the first devices start to appear on the market with several Cloudsto offerings running the latest Android 4.2 Jelly Bean: A20 Media Stick – AllWinner A20 mini PC with 1GB RAM, 4GB Flash, HDMI output, 2x USB Ports and IR receiver. Price: 59.99 GBP ($90.88 US) A20 Media PC – AllWinner A20 set-top box with 1GB RAM, 4GB NAND Flash, onboard Ethernet, HDMI + RCA Video output, Optical output, and 2 x USB Ports. Price: 84.99 GBP ($128.77 US) Cloudsto Media PC PRO DRIVEDOCK – AllWinner A20 set-top box with 1GB RAM, 4 GB Flash, a 2.5″ SATA Hard Drive Bay, HDMI, VGA, and RCA video output and more. Price: 94.99 GBP ($143.92 US) The Media PC PRO DRIVESTOCK is the star of the show, and just looks […]
FXI Technologies Cotton Candy HDMI Stick To Fully Support Both Android and Ubuntu
FXI Technologies was the first company to ever show an HDMI TV dongle when they unveiled the Cotton Candy in November 2011. Since then, many Chinese companies started to provide similar products at lower cost, and the company further improved the Cotton Candy, which is still powered by Exynos 4210 (dual core Cortex A9), by making it even smaller, and getting rid of the internal flash in the process. As a memory refresher, here are the specifications of the Cotton Candy: SoC – Samsung Exynos 4210 dual core Cortex A9 + Mali-400MP4 System Memory – 1GB DRAM Storage – No flash, up to 64GB microSD Video Output – HDMI Connectibity Wifi 802.11b/g/n Bluetooth 2.1 + EDR USB – USB 2.0 male connector for power and connection to devices that supports USB mass storage + microUSB Video Codecs- 480p/720p/1080p Decode of MPEG4-SP/H.263/H.264 AVC/MPEG-2/VC1 Audio Codecs – MP3, AAC, AAC+, Real Audio […]
How to Run Android Apps in Linux with AndroVM
You may want to run some Android applications in your computer. If you’re using Windows, there’s already a decent option with Bluestacks. If you’re using Linux, you could always install the Android SDK and run the emulator, but I don’t really like this option because of the user interface, and for people who don’t need to use the SDK it’s not really the simplest thing to install. The way to run Android apps in Linux is probably to run an x86 Android virtual machine in VirtualBox. Yesterday, I tried the latest development version of Android x86 4.2, but for some reasons I could not control the mouse, and had to perform all tasks with the keyboard. What I’m going to use today instead is AndroVM, an Android VM for x86 processor, that is even more easy to use than the Android x86 image. The instructions has been performed in a […]
Zopfli Library Improves Zlib Compression by 3 to 8%
Google developers have released a new compression library called Zopfli. This library, written in C, is compatible with zlib, yet provide a better compression, more exactly 3 to 8% according to Google. This library can be used on servers for better compression in order to save bandwidth, as well as delivering web pages faster. Since it’s fully compatible with zlib, the web browsers do not need to be changed. The only drawback is that it’s several magnitude slower than zlib, so it’s better used for static content that is compressed once, and sent over the Internet many times, and it may not be a good choice for dynamic content. The source code is available at https://code.google.com/p/zopfli/, so let’s try it. Get the code and build zopfli:
1 2 3 |
git clone https://code.google.com/p/zopfli/ cd zopfli make |
Different levels of compression are available:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
./zopfli -h Usage: zopfli [OPTION]... FILE -h gives this help -c write the result on standard output, instead of disk filename + '.gz' -v verbose mode --gzip output to gzip format (default) --deflate output to deflate format instead of gzip --zlib output to zlib format instead of gzip --i5 less compression, but faster --i10 less compression, but faster --i15 default compression, 15 iterations --i25 more compression, but slower --i50 more compression, but slower --i100 more compression, but slower --i250 more compression, but slower --i500 more compression, but slower --i1000 more compression, but slower |
For testing purpose, I’ve just saved this blog as one html file (test.html – 67275 bytes) […]
Linaro 13.02 Release with Linux Kernel 3.8 and Android 4.2.2
Linaro 13.02 is now available, and features Linux Kernel 3.8 and Android 4.2.2. The biggest news this month is probably the first release of a preliminary ARM64 Debian/Ubuntu Raring image. Other noticeable items include work on ARMv7 KVM, more improvements to OpenEmbedded ARMv8 implementation, as well as big.LITTLE MP implementation, and some modifications to the toolchain for Cortex A7 support. Origen images are not available for download this month, and there’s still no ALIP images since they have disappeared since Linaro upgraded to Ubuntu Quantal. Here are the highlights of this release: Android AOSP master build for Galaxy Nexus has been setup All the platforms have been updated to 4.2.2 Support for lava-test-shell has been added to linaro-android-build-tools. Developer Platform CI bring up: ARMv7 KVM – Add Arndale hypervisor patch to u-boot-linaro. CI bring up: Arndale – Add Arndale image reports to LAVA, Enable and verify UEFI support in the […]