Yet Another Android Tablet by Foxconn

Here’s a video of another Android tablet, a 10″ tablet made by Foxconn, aka Hon Hai Precision Industry Company. There seems to be quite a few tablets coming on the market (See Allgo Tablet) that should keep the prices down. 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

uClinux kernel panic: Stack overflow

If you’re using ucLinux, you may get kernel panic errors coming out of nowhere. There may be several reasons (buffer overflow, out of memory..), but the most common is stack overflow for the process or one of the threads. To increase the stack size of a flat binary you’ll need to adjust the LDFLAGS as follows:

This will set the stack size to 64KB. To change the stack size of a thread (e.g. 32KB below), you’ll need to set the stack size attribute:

How to detect which thread suffers from stack overflow? First, you can check your code for recursive function calls and local variables (especially arrays) both of which will be added at runtime to the stack to estimate what should be the stack size. So if you have large arrays you may use a pointer + a call to malloc instead. If this can not fix […]

Installing 2 Linux distributions in one PC

Here are the step I followed to install two distributions of Linux: Install the first distribution normally with GRUB in the MBR. While installing the second distribution make sure to set GRUB in its root partition. At this point the second distribution should not be available in GRUB Boot loader, login in the first distribution as root and edit /etc/grub.conf and add the following lines: Linux Distribution 2 root (hd0,2) chainloader +1 Save and restart your PC you should have 2 choices in GRUB, select “Linux Distribution 2”or whatever name you gave in grub.conf and this should start the second Linux distribution. 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

Finding large files in a Linux system

To list large files in a directory and subdirectories

This command looks for files larger than 10MB in /home/user directory and displays the result as follows: /home/user/largefile1.tar.bz2: 32M /home/user/bugzilla.sql: 21M 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

EP9307 Thin Client with DirectVNC

One of my reader had issues running Thin-clients ENTC Encore-1000 based on EP9307 and wanted to update the firmware in his systems. So I’ll explain how to access Linux, Windows XP or any other operating systems using a thin client based on Cirrus Logic EP9307 hardware. This is for reference only, and the performance may not be suitable for your environment/setup. One PC (server) is needed to run VNC (Virtual Network Computing) server for each remote desktop (i.e. each thin client), then the thin client can run the software without hard disk by just using the network connection. This can be used for checking emails, browsing internet, office applications, etc.. All resource heavy tasks are done on the server side whose specifications may be chosen to match the applications requirements. I’ll explain how to use Linux, but Windows XP (or any other operating systems for that matter) could also be […]

IPAD Killer – Allgo Android Tablet

Ok, the title is a bit over the top but the Allgo tablet reference design running android would only cost around 35 USD to manufacture (15 dollars for the board, 15 dollars for the touch screen display and 5 dollars for the battery). So you’d be able to browse the web, read e-books, flicker through your pictures and access a wide range of applications through Google app store for less than 100 USD (retail) compared to  the IPAD retail price of 499 USD that would seem like a bargain even though the performance is not as good as the IPAD (but still acceptable) as you can see in the video below. 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

ARM-based Android Set-Top-Box

Last month, I posted a blog entry about demo featuring Sigma Designs Android STB that was shown at CeBit last January. AFAIK this is still being developed and there is still no Android STB products based on Sigma Designs Chips that can be purchased. Earlier this month, another company Webia Technologies demo’ed an Android STB (HDMI 1080p – ARM 11) whose factory price would be 50 USD, which is well below the price of a similar Sigma Designs STB based on SMP8640 or SMP8650 series. They also showed a smaller box that can support 720p and selling for 25 USD (Factory price, not retail price). You can see the demo below showing both set-top-boxes. Interestingly enough, I was unable to find Webia Technologies website or other previous news about this company. All I found is Webia Technologies is supposedly registered in Hong Kong. Update: After searching which ARM-based solution may […]