diff options
author | Koen Kooi <koen@openembedded.org> | 2009-12-22 16:31:36 +0100 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2009-12-22 16:33:24 +0100 |
commit | 1fa0831219bd3fe19e07005b35d370a7d45689e3 (patch) | |
tree | 0f96fd4b92f8042a537abc86806292c6afe1dd57 /conf/machine | |
parent | 9774a6e8be6deff7e5db50a6382baef043b953fd (diff) |
archos5: first batch of archos5 machine support. Downloaded from archos.com website
Diffstat (limited to 'conf/machine')
-rw-r--r-- | conf/machine/archos5.conf | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/conf/machine/archos5.conf b/conf/machine/archos5.conf new file mode 100644 index 0000000000..8640912b0f --- /dev/null +++ b/conf/machine/archos5.conf @@ -0,0 +1,41 @@ +#@TYPE: Machine +#@NAME: OMAP3 based Archos 5 +#@DESCRIPTION: Machine configuration for the Archos 5 + +TARGET_ARCH = "arm" +require conf/machine/include/omap3.inc + +ASSUME_PROVIDED += "u-boot" + +PREFERRED_PROVIDER_virtual/xserver = "xserver-xorg" +XSERVER = "xserver-xorg \ + xf86-input-evdev \ + xf86-input-mouse \ + xf86-input-tslib \ + xf86-video-omapfb \ + xf86-input-keyboard" + +#What is the correct one, both seem in use? +MACHINE_GUI_CLASS = "bigscreen" +GUI_MACHINE_CLASS = "bigscreen" + +#800 * 480 Widescreen +MACHINE_DISPLAY_WIDTH_PIXELS = "800" +MACHINE_DISPLAY_HEIGHT_PIXELS = "480" + +KERNEL_IMAGETYPE = "zImage" + +PREFERRED_PROVIDER_virtual/kernel = "linux-omap-archos" + +# Ship all kernel modules +MACHINE_EXTRA_RRECOMMENDS = "kernel-modules" + +IMAGE_FSTYPES += "tar.bz2" +EXTRA_IMAGECMD_jffs2 = "-lnp " + +SERIAL_CONSOLE = "115200 ttyS2" + +CMDLINE = "root=/dev/sda1 rw init=/sbin/init console=ttyS2,115200n8 mem=128M nohz=off" + +MACHINE_FEATURES = "kernel26 apm usbgadget usbhost keyboard vfat ext2 screen touchscreen wifi" + |