diff options
author | Graeme Gregory <dp@xora.org.uk> | 2007-10-24 16:06:27 +0000 |
---|---|---|
committer | Graeme Gregory <dp@xora.org.uk> | 2007-10-24 16:06:27 +0000 |
commit | be420b7ba362e055b3ddea5df038136b6860f441 (patch) | |
tree | fcecf1dc9da95eace525daf21ce7f48e5e725160 | |
parent | ae2253eba8e6461b8ffc90b36f80d9edcbf05220 (diff) | |
parent | 4d473f8bad4e314db695765c3c57306141ea5a0c (diff) |
merge of '45ed3a3d615ea56e696ea876589e529d4f1d96e3'
and 'd6c5f92657001382dc587916da1fbce73d196bb6'
-rw-r--r-- | conf/machine/eseries.conf | 39 | ||||
-rw-r--r-- | packages/libxml/libxml2_2.6.29.bb | 9 |
2 files changed, 45 insertions, 3 deletions
diff --git a/conf/machine/eseries.conf b/conf/machine/eseries.conf new file mode 100644 index 0000000000..e6552b52d1 --- /dev/null +++ b/conf/machine/eseries.conf @@ -0,0 +1,39 @@ +#@TYPE: Machine +#@NAME: eseries +#@DESCRIPTION: Machine configuration for the Toshiba eseries (e3xx/e4xx/e7xx/e8xx) + +# +# Hardware-based properties +# +TARGET_ARCH = "arm" +PACKAGE_EXTRA_ARCHS = "armv4 armv4t armv5e armv5te " + +#Compile with armv5te optimizations, incompatible with armv4(t) cpus +require conf/machine/include/tune-xscale.inc + +#Set some hints for metadata +VOLATILE_STORAGE_SIZE = "64" +ROOT_FLASH_SIZE = "32" +MACHINE_GUI_CLASS = "smallscreen" +MACHINE_DISPLAY_WIDTH_PIXELS = "240" +MACHINE_DISPLAY_HEIGHT_PIXELS = "320" +MACHINE_FEATURES = "kernel26 touchscreen apm alsa pcmcia bluetooth irda usbgadget screen" + +# +# Software/packages selection +# +PCMCIA_MANAGER = "pcmciautils" +PREFERRED_PROVIDER_xserver = "xserver-kdrive" +PREFERRED_PROVIDER_virtual/kernel = "linux-handhelds-2.6" + +EXTRA_IMAGECMD_jffs2 = "--pad --eraseblock=0x4000" + +# +# Modules autoload and other boot properties +# +module_autoload_snd-pcm-oss = "snd-pcm-oss" + +SERIAL_CONSOLE = "115200 ttyS0 vt100" +USE_VT = "0" + +require conf/machine/include/LAB-settings.inc diff --git a/packages/libxml/libxml2_2.6.29.bb b/packages/libxml/libxml2_2.6.29.bb index 6904031670..521ba16d9b 100644 --- a/packages/libxml/libxml2_2.6.29.bb +++ b/packages/libxml/libxml2_2.6.29.bb @@ -14,9 +14,12 @@ export LDFLAGS += "-ldl" do_stage() { autotools_stage_all - install -m 0644 libxml.m4 ${STAGING_DATADIR}/aclocal/ - #this is need it by php during its install - install -m 0755 xml2-config ${STAGING_BINDIR_CROSS} + install -d ${STAGING_DATADIR}/aclocal/ + install -d ${STAGING_BINDIR_CROSS} + + install -m 0644 libxml.m4 ${STAGING_DATADIR}/aclocal/ + #this is need it by php during its install + install -m 0755 xml2-config ${STAGING_BINDIR_CROSS} } python populate_packages_prepend () { |