diff options
author | Chris Larson <clarson@kergoth.com> | 2004-12-04 04:20:57 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-12-04 04:20:57 +0000 |
commit | 22f417117110108112a7673025f4fee51bb5bfde (patch) | |
tree | 0f8f2ef18d7959dc08162ea04c8da0f0e0c613ab | |
parent | 5aa973d8a623642a573d5cc88425835380a4e5a4 (diff) |
zaurus-clamshell.conf:
* Add 'zaurus-clamshell' to IPKG_ARCHS.
* Set MACHINE_ARCH to 'zaurus-clamshell' unless the package is a kernel
or kernel module, since the other machine specific packages are actually
common across all the clamshell devices (i.e. qte).
BKrev: 41b13b29lUTaBWnHsE87wRBZdMMzHg
-rw-r--r-- | conf/machine/zaurus-clamshell.conf | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/conf/machine/zaurus-clamshell.conf b/conf/machine/zaurus-clamshell.conf index e69de29bb2..e931557e02 100644 --- a/conf/machine/zaurus-clamshell.conf +++ b/conf/machine/zaurus-clamshell.conf @@ -0,0 +1,34 @@ +TARGET_ARCH = "arm" + +# The machine specific PACKAGE_ARCH is set to zaurus-clamshell because +# machine specific packages (other than the kernel) are common across +# all the clamshell devices. +MACHINE_ARCH = "${@['zaurus-clamshell', oe.data.getVar('MACHINE', d, 1)][oe.data.inherits_class('kernel', d) or oe.data.inherits_class('module-base', d) or oe.data.inherits_class('module', d)]}" + +IPKG_ARCHS = "all arm armv4 armv5te zaurus-clamshell ${MACHINE}" +PREFERRED_PROVIDER_xserver = "xserver-kdrive" +PREFERRED_PROVIDER_virtual/kernel = "openzaurus-pxa" +BOOTSTRAP_EXTRA_DEPENDS = "virtual/kernel hostap-modules orinoco-modules sharp-sdmmc-support chkhinge" +BOOTSTRAP_EXTRA_RDEPENDS = "kernel hostap-modules-cs orinoco-modules sharp-sdmmc-support \ +kernel-module-net-fd kernel-module-registers kernel-module-pxa-bi \ +kernel-module-usbdcore kernel-module-usbdmonitor chkhinge" + +EXTRA_IMAGECMD_jffs2 = "--pad --little-endian --eraseblock=0x4000 -n" +EXTRA_IMAGEDEPENDS = "sharp-flash-header-c700" + +IMAGE_CMD_jffs2 = "mkfs.jffs2 --root=${IMAGE_ROOTFS} --faketime \ + --output=${T}/${IMAGE_NAME}.rootfs.jffs2 \ + ${EXTRA_IMAGECMD}; \ + cat ${STAGING_LIBDIR}/sharp-flash-header/header-c700.bin \ + ${T}/${IMAGE_NAME}.rootfs.jffs2 > \ + ${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}.rootfs.img" + +GUI_MACHINE_CLASS = "bigscreen" +GPE_EXTRA_DEPENDS += "gaim sylpheed" +GPE_EXTRA_INSTALL += "gaim sylpheed" + +include conf/machine/handheld-common.conf +# not using tune-xscale.conf so as to retain backwards compatibility +include conf/machine/tune-strongarm.conf + +SERIAL_CONSOLE = "115200 ttyS0" |