diff options
author | Koen Kooi <koen@openembedded.org> | 2010-02-07 12:30:33 +0100 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2010-02-07 12:30:33 +0100 |
commit | e76740c52b494b53fcbd7473e43d0ac688e2b744 (patch) | |
tree | b960e8709da8edf0e1362047a8f3d8091790ce93 /conf/machine | |
parent | 647b959b391ce4904cf160bd046306970049a3d8 (diff) |
archos5it: add archos5it support from Archos OE repo
* machine config, pointercal, xorg conf, kernel
Diffstat (limited to 'conf/machine')
-rw-r--r-- | conf/machine/archos5it.conf | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/conf/machine/archos5it.conf b/conf/machine/archos5it.conf new file mode 100644 index 0000000000..0a1989a5e3 --- /dev/null +++ b/conf/machine/archos5it.conf @@ -0,0 +1,41 @@ +#@TYPE: Machine +#@NAME: OMAP3 based Archos 5 IT +#@DESCRIPTION: Machine configuration for the Archos 5 IT (Gen7) + +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=256M nohz=off omapfb.vram=3686400 extrabaud=1000000" + +MACHINE_FEATURES = "kernel26 apm alsa bluetooth usbgadget usbhost keyboard vfat ext2 screen touchscreen wifi" + |