diff options
Diffstat (limited to 'meta/conf')
-rw-r--r-- | meta/conf/distro/include/poky-eabi.inc | 1 | ||||
-rw-r--r-- | meta/conf/machine/overo.conf | 37 |
2 files changed, 38 insertions, 0 deletions
diff --git a/meta/conf/distro/include/poky-eabi.inc b/meta/conf/distro/include/poky-eabi.inc index 56d23dc65..e0cafbaaa 100644 --- a/meta/conf/distro/include/poky-eabi.inc +++ b/meta/conf/distro/include/poky-eabi.inc @@ -18,6 +18,7 @@ GCCVERSION_qemuarmv7 = "4.3.1" GCCVERSION_beagleboard = "4.3.1" GCCVERSION_omap-3430sdp = "4.3.1" GCCVERSION_omap-3430ldp = "4.3.1" +GCCVERSION_overo = "4.3.2" # 4.2.3+csl-arm-2008q1-126 doesn't work BINUVERSION = "2.18" diff --git a/meta/conf/machine/overo.conf b/meta/conf/machine/overo.conf new file mode 100644 index 000000000..dde4bff47 --- /dev/null +++ b/meta/conf/machine/overo.conf @@ -0,0 +1,37 @@ +#@TYPE: Machine +#@NAME: overo machine +#@DESCRIPTION: Machine configuration for the overo + +include conf/machine/include/tune-cortexa8.inc + +TARGET_ARCH = "arm" +PACKAGE_EXTRA_ARCHS = "armv4 armv4t armv5te armv6 armv7 armv7a" +MACHINE_FEATURES = "kernel26 apm usbgadget usbhost vfat alsa" + +PREFERRED_VERSION_u-boot = "git" +UBOOT_ENTRYPOINT = "0x80008000" +UBOOT_LOADADDRESS = "0x80008000" + +PREFERRED_PROVIDER_virtual/kernel = "linux-omap3" +KERNEL_IMAGETYPE = "uImage" +MACHINE_EXTRA_RRECOMMENDS = " kernel-modules" +SERIAL_CONSOLE = "115200 ttyS2" + +IMAGE_FSTYPES += "tar.bz2 jffs2" +EXTRA_IMAGECMD_jffs2 = "-lnp " +EXTRA_IMAGEDEPENDS += "u-boot-omap3 x-load" + +PREFERRED_PROVIDER_virtual/xserver = "xserver-kdrive" +#XSERVER = "xserver-xorg \ +# xf86-input-evdev \ +# xf86-input-mouse \ +# xf86-video-fbdev \ +# xf86-input-keyboard" + +XSERVER = "xserver-kdrive-fbdev" + +GUI_MACHINE_CLASS = "bigscreen" + +ANGSTROM_URI = "http://www.gumstix.net" + + |