Disable Auto-Update for Thunderbird and Firefox

Mozilla has decided to speed up the release cycle of Thunderbird and Firefox. This is all good except that it often breaks Add-ons. If you want to do the update manually, when you feel like it or when you know the all important plugins you use are compatible with the new version,  you may follow the instructions to disable automatic update of Thunderbird and Firefox. Disabling Automatic Update in Firefox Type about:config in the address bar and press Enter. You should get a page trying to scare you off with a message starting with “This might void you warranty!”, just click “I’ll be careful I promise!“. Then in the Filter filed type app.update.enabled. It should be set to true, double-click on the line to set it to false. Disabling Automatic Update in Thunderbird On the top menu, click on Tools->Options to enter the Options window, then click on Advanced and […]

AMD G-Series based iBase SI-08 Digital Signage

Ibase announced the SI-08, a digital signage player with an AMD G-Series processor and a DVI output. The device features a 1.6GHz dual-core T56N processor, up to 2GB of RAM and 1TB of disk storage, gigabit Ethernet,  a serial port, 2 USB port, an audio jack (in or out) as well as a Mini PCI slot for optional Wi-Fi or Bluetooth. Here are the specifications and features of the iBase SI-08 digital signage player: System Mainboard EB900-16-SI CPU Type AMD G-Series Dual-Core APU (Accelerated Processing Unit): T56N=1.65GHz @ 18W TDP CPU Package 413-BGA Chipset AMD A55M Controller Hub Memory DDR3-1333, up to 4GB Graphics ATi Radeon HD6320 series graphics processing system integrated in APU • DirectX 11 • Direct Compute 11 • Open GL 4.0 • OpenCL 1.1 • UVD3 Hardware Video Decoder – MPEG2, MPEG4, H.264, VC-1, WMV9 • Hybrid-DVI connector supporting CRT, DVI, or HDMI devices LAN 1x […]

Khadas Edge2 Arm mini PC

Intel Unveils Cedar Trail Atom Processors: N2600, N2800, D2500 and D2700

Intel recently published the Intel® Atom™ Processor D2000 Series and N2000 Series Datasheet (PDF). The D2000 and N2000 Series (Codenamed ” Cedar Trail”) includes four new CPUs targeted at Desktops (D2000 Series) and Netbooks (N2000 Series): Atom N2600 @ 1.86 GHz – Up to 2 GB memory – 42 USD Atom N2800 @ 2.13 GHz – Up to 4 GB memory – 47 USD Atom D2500 @  2.13 GHz- Up to 4 GB memory – 42 USD Atom D2700 @  2.40 Ghz – Up to 4G memory – 52 USD Those processors will be manufactured using 32nm technology and the D2000 series will replace the existing Atom N475 and N455. The CPUs will also feature an integrated GPU  (SGXS45 PowerVR Core)  that supports DirectX 10.1 technology and OpenGL 3.0. The processors will support Blu-Ray 2.0 and resolution up to 1080p (1920×1080) and even 2560×1600 for D2000 series via the DP […]

Xibo Digital Signage on ARM (Beagleboard / Overo)

Xibo (pronounced eX-E-bO) is an open source, multi-display, multi-zone, fully scheduled digital signage solution written in Python (there is also a dotnet version). This is a client /server solution that can run on Windows or Linux. If you are not familiar with Xibo you can visit http://xibo.org.uk/ or/and read my introduction XIBO: An Open Source Digital Signage Server/Client. Since I had not seen digital signage solution running on low cost ARM development platform such as Beagleboard, Pandaboard or Origen, I decided to give the Xibo python client a try using qemu to emulate Gumstix Overo COM (OMAP 3530). Porting Xibo to ARM could provide several benefits compared to x86 platform: Lower hardware cost Lower power consumption (and electricity bill) Smaller form factor allowing easier integration in displays and in transportation (e.g. buses, subway trains). Easier to implement new digital signage features such as touch screen support, 3G connectivity, location based […]

Android Developer Conference: DroidCon 2011 Schedule

DroidCon UK will be held for two days (October 6th & 7th 2011) at the Islington Design Center in London and boasts to be United Kingdom’s largest Android-only developer conference. Here’s the program for day 1 (6th of October): 9:00 Barcamp Talks will be selected by attended among the following proposals: From Publisher to Platform – the role of OpenSource in engaging with developers by Oscar Clark, Papaya Mobile. Reality of Mobile Advertising by Terence Eden, Inmobi. OpenGLES2 & Android QEMU Emulator by Jonathan White and Jose Commins, Accenture. Enhancing User Experience with HTC: 3D, Pen, and Audio Lance Nanek, HTC. Cisco Workshop by Marcus O’Sullivan, Cisco. OpenGL & NDK by Ashraf Hegab, Orange. Fed up with trying to make pay per download pay back? Try API revenue share by James Parton, o2. (Re)Branding Headache? Here’s your Pain Killer by Joana Cruz e Costa, Masabi. Smooth and User Friendly UI […]

Linaro 11.09 Release with Linux Kernel 3.0.4

Linaro has just released version 11.09 based on Linux Kernel 3.0.4. Here are the highlights of the release: Android Ethernet Configuration Manager from the x86 Android project is now available in all builds. Ethernet now works on Panda, Staging Panda, Beagle, Beagle xM, Staging Snowball. QA on all boards for the 11.09 Linaro Android Builds. Daily builds of Android toolchain against gcc-linaro bzr repository is provided. Android is now compiled with GCC4.6 with -O3. Busybox is built from source in all Android builds. glmark2 added to all the official builds for Android. Powertop is now available on Android. Linaro’s 11.09 toolchain has been benchmarked. All Android builds are running with the 11.09 toolchain. The MLO that Panda and Staging Panda uses for Android uses gets built from source from the upstream git. An OMAP4460 Android build is available from android-build. Panda supports Bluetooth. Panda supports Wi-Fi. Snowball Android A-release from […]

Intel Arc Graphics Technology

Cross Compiling libavg for ARM

libavg is a high-level development platform for media-centric applications using Python as scripting language and written in C++. Bear in mind that are many dependencies with libavg 1.6. I have not built all the libraries required, but instead simply taken the pre-built binaries and header files in the qemu overo image and copied the files as follows: mkdir mnt sudo mount -o loop,offset=$[106496*512] overo_sd_alip.img mnt mkdir ~/edev/beagleboard/libs/lib -p mkdir ~/edev/beagleboard/libs/include cp mnt/usr/lib/* ~/edev/beagleboard/libs/lib/ -rf -d cp mnt/lib/* ~/edev/beagleboard/libs/lib/ -rf -d cp /mnt/usr/include/* ~/edev/beagleboard/libs/include -rf -d sudo umount mnt The -d flag skips the symlink, so we need to recreate then for all library so that the compiler can find libname.so instead of libname.so.12. Save the following scripts to symlinks.sh:

and run it where the arm libraries are located (in my case in /home/jaufranc/edev/beagleboard/libs/lib, /home/jaufranc/edev/beagleboard/libs/lib/arm-linux-gnueabi and /home/jaufranc/edev/beagleboard/libs/lib/mesa). This will  create symlinks for most libraries, but not all. Some will still […]

Cross-Compiling Mesa 3D Graphics Library for ARM

Mesa is an open-source implementation of the OpenGL specification that can be used for software emulation or  complete hardware acceleration for modern GPUs.The Mesa library is used by a variety of games (e.g. Quake 2.3), libraries (e.g PyOpenGL), science and technical applications and utilities (e.g. xscreensaver). MesaLib requires X11 libraries. I’ll assume those are already cross-compiled here. For this build, I used pre-built X11 libraries found in ALIP (ARM Internet Platform) binaries. I used the method described here and copied the libs in /lib and /usr/lib and header files in /lib/include found in the qemu overo image respectively to /home/jaufranc/edeve/beagleboard/libs/lib and /home/jaufranc/edeve/beagleboard/libs/include. make sure you use the “-d” with cp to avoid copying the symlinks or some symbolic links would point to x86 binaries or files that do not exist. Here are the instructions to cross-compile MesaLib 7.11 for ARM using arm-linux-guneabi-gcc: Download the latest version of Mesa source code: […]

Khadas VIM4 SBC