Linux on CompuLab boards
Development resources
»Home
»EM-X270
»CM-iGLX
»CM-X270
»Links
Important

This site is no longer being updated.
Please use CompuLab Linux Wiki

News

8-Jan-2008

26-Dec-2007

Released Linux kernel 2.6.16 with NAND flash driver updates. See CM-X270 changelog

09-Oct-2007

Released Angstrom Linux 2007.1Angstrom Linux 2007.1 for EM-X270. The package can be downloaded here

02-Sep-2007

RTC appears to be the most problematic device :(. The v3020 driver has off-by-one error in month conversion. This patch fixes it.

21-Jun-2007

CompuLab started shipping of CM-iGLX based Fit-PC with preinstalled Gentoo Linux. More information can be found here

13-Jun-2007

Released fix for RTC access on CM-x270. See CM-X270 changelog

28-May-2007

Released an updated versoin of Gentoo Linux for CM-iGLX. More information can found here

01-Apr-2007

Released Gentoo Linux for CM-iGLX. More information can found here

06-Feb-2006

CM-x2xx. The PCI implementation in Linux kernel for ARM architecture does not set up latency timer for the PCI masters. This timer setting is required for fast PCI devices behind the ITE8152 bridge.

There're two possible solutions to this problem. The first, is to use setpci utility. Using this utility one can modify the latency timer of the PCI device:

# setpci -s <bus>:<slot> 0d.B=40

The other way is to modify Linux kernel PCI code, so that it will setup PCI masters latency timers, as for example done in pcibios_set_master in arch/i386/pci/i386.c

14-Dec-2006

Recently we get a lot of complains about incompatibility between Scratchbox toolkits and our Debian Linux for CM-x2xx. Indeed, Scratchbox latest release, called Apophis contains EABI toolchain, which is not supported by current stable Debian ARM Linux. Yet, the Scratchbox release 0.9.8 (marked legacy), is fully binary compatible with Debian ARM Linux for CM-X270. So, if you'd like to take advantage of Scratchbox flexibility and Debian huge package base at the same time, please use Scratchbox 0.9.8.

30-Oct-2006

CM-X270. Since ARMmon released on 16-Aug-2006, kernel image in NOR flash is prefixed by the image size. If you use UsbMLink for downloading kernel image to the CM-X270 NOR flash, you should also use nor_prefix.exe that adds this prefix to the image. The nor_prefix.exe adds a 4 byte file length prefix to kernel image, required by new bootloader. (Note: use nor_prefix only for installation by UsbMlink). For help run nor_prefix.exe without arguments.

12-Oct-2006

Released new kernel for CM-X270 with various minor fixes. The Debian image for CM-x2xx is also updated with latest kernel modules.

05-Oct-2006

Fixed month read bug in the MAX6902 RTC driver for CM-X255. Line 98 of drivers/char/max6902.c instead of

       dt->tm_mon = BCD_TO_BIN(max6902_get_reg(0x09)-1);

should be

       dt->tm_mon = BCD_TO_BIN(max6902_get_reg(0x09))-1;

05-Sep-2006

Added preliminary release of Linux packages for CM-iGLX. It can be downloaded here. This release includes Linux kernel 2.6.17 optimized for AMD Geode LX800 processor and CM-iGLX borad. There are also Debian linux images customized to run on CM-iGLX with 128 or 512 MByte on-board NAND flash storage.