aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2018-07-10tgt: Use return instead of exit to restart tgtd, if tgtd is not runningsumorockoJagadeesh Krishnanjanappa
If the tgtd daemon is stopped, then '/etc/init.d/tgtd.init restart' does not start the new tgtd daemon, as the control comes out from the stop function, if it finds tgtd is not running. Signed-off-by: Jagadeesh Krishnanjanappa <jkrishnanjanappa@mvista.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2017-10-27xterm: remove bbappendKai Kang
Add freetype-native to DEPENDS has been done by PACKAGECONFIG 'xft'. Signed-off-by: Kai Kang <kai.kang@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2017-10-19kernel: update bbappends to match oe-core reference kernelsBruce Ashfield
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2017-09-29spice: fix CVE-2017-7506Yi Zhao
CVE-2017-7506: spice versions though 0.13 are vulnerable to out-of-bounds memory access when processing specially crafted messages from authenticated attacker to the spice server resulting into crash and/or server memory leak. Reference: https://nvd.nist.gov/vuln/detail/CVE-2017-7506 Patches from: https://cgit.freedesktop.org/spice/spice/commit/?h=0.12&id=f1e7ec03e26ab6b8ca9b7ec060846a5b706a963d https://cgit.freedesktop.org/spice/spice/commit/?h=0.12&id=ec6229c79abe05d731953df5f7e9a05ec9f6df79 https://cgit.freedesktop.org/spice/spice/commit/?h=0.12&id=a957a90baf2c62d31f3547e56bba7d0e812d2331 Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2017-09-19README: fix oe-core and meta-oe layer referencesBruce Ashfield
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2017-09-15packagegroups: fix invalid license fileJackie Huang
Use '${COMMON_LICENSE_DIR}/MIT' for MIT License to fix the warning: | WARNING: packagegroup-cloud-compute do_populate_lic: ${COREBASE}/LICENSE is not a valid license file, please use '${COMMON_LICENSE_DIR}/MIT' for a MIT License file in LIC_FILES_CHKSUM. This will become an error in the future Signed-off-by: Jackie Huang <jackie.huang@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2017-09-15meta-openstack: qemu: match spice arch restrictionsMark Asselstine
The spice recipe is restricted to Intel x86 and x86-64 so keep 'spice' out of the PACKAGECONFIG unless we are using one of these ARCHs. Signed-off-by: Mark Asselstine <mark.asselstine@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2017-08-24spice: fix builds with gcc 7.xMark Asselstine
There is an upstream fix for this issue but it doesn't apply cleanly and is rather simple so rather than backport it and turn it into something unrecognizeable I simply created my own version of it. This fixes builds which fail with: | ../../git/server/reds.c: In function 'vdi_port_read_one_msg_from_device': | ../../git/server/reds.c:797:31: error: this statement may fall through [-Werror=implicit-fallthrough=] | state->read_state = VDI_PORT_READ_STATE_GET_BUFF; | ~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ../../git/server/reds.c:798:9: note: here | case VDI_PORT_READ_STATE_GET_BUFF: { | ^~~~ Signed-off-by: Mark Asselstine <mark.asselstine@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2017-08-24erlang-native: Add DEPENDS for ncurses-nativeMark Asselstine
This was most likely being provided by another pkg pulling in ncurses-native before erlang-native was being built. With RSS this is no longer the case and we need to add the explicit DEPENDS. Without this we are seeing erlang-native fail to configure: | checking for tgetent in -lncurses... no | checking for tgetent in -lcurses... no | checking for tgetent in -ltermcap... no | checking for tgetent in -ltermlib... no | configure: error: No curses library functions found While we are at it we drop the setting of PR as this will be handled by the PR server. Signed-off-by: Mark Asselstine <mark.asselstine@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2017-08-24uwsgi: fixups for gcc 7.xMark Asselstine
Apply several upstream patches to fixup fallthrough switch statements. This fixes build failures such as: | core/hash.c:44:13: error: this statement may fall through [-Werror=implicit-fallthrough=] | h ^= key[2] << 16; | ~~^~~~~~~~~~~~~~~ | core/hash.c:45:7: note: here | case 2: | ^~~~ Signed-off-by: Mark Asselstine <mark.asselstine@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2017-08-22python-novaclient: drop DEPENDS for python-setuptools-gitMark Asselstine
The upstream project dropped the use of setuptools-git when they moved to use pbr. There was a bug here anyway in that 'inherit setuptools' sets a DEPENDS which was then being blown away by the "DEPENDS = ...", but since we just don't need python-setuptools-git anymore we simply drop it. Signed-off-by: Mark Asselstine <mark.asselstine@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2017-08-22python-positional: use archived tarballMark Asselstine
The upstream project has been discontinued as you can see from the comment from the developer in response to another pkg which used positional: https://github.com/conda-forge/positional-feedstock/issues/7 In addition to discontinuing the project the developer removed the repository, so we need to use the version archived via pypi. We can't simply drop the package as it is used by python-nova and other openstack components. Signed-off-by: Mark Asselstine <mark.asselstine@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2017-08-22cyrus-sasl: drop bbappendMark Asselstine
The change implemented in the bbappend is now part of the main recipe file. See commit a97ab8e018d86461a4701625dc16b09370fad21f [cyrus-sasl: inherit autotools-brokensep] in meta-openembedded. Signed-off-by: Mark Asselstine <mark.asselstine@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2017-08-17rabbitmq-server: add systemd supportShrikant Bobade
add systemd support to bring-up out of box rabbitmq-server support. rabbitmq-server-setup: essential setup required by rabbitmq-server rabbitmq-server.service: systemd support service file Signed-off-by: Shrikant Bobade <shrikant_bobade@mentor.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2017-08-17nss-pam-ldapd: upgrade to 0.9.8Huang Qiyu
Upgrade nss-pam-ldapd from 0.9.7 to 0.9.8. Signed-off-by: Huang Qiyu <huangqy.fnst@cn.fujitsu.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2017-07-26glusterfs: uprev to 3.11.1Yi Zhao
* Add systemd support * Drop the following patch which already fixed in upstream: 0001-Fix-for-mount.glusterfs-not-accepting-version-argume.patch Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2017-07-26librdmacm: add new recipeYi Zhao
User space RDMA 'socket' protocol and libraries for establising RDMA communication. Includes both Infiniband specific and general RDMA communication management libraries for unreliable datagram, reliable connected, and multicast data transfers. Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2017-07-26libibverbs: add new recpieYi Zhao
Libibverbs is a library that allows userspace processes to use InfiniBand/RDMA 'verbs' directly. libibverbs is now part of rdma-core and the standalone libibverbs project has been deprecated. Rough testing shows that we can move to use rdma-core however we have yet to perform extensive testing with this change. We therefor will continue to use the standalone libibverbs at this point in time. This is also inline with the upstream glusterfs project that still lists libibverbs as a dependency. Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2017-07-25spice: set COMPATIBLE_HOSTChen Qi
Set COMPATIBLE_HOST to restrict building only for x86 archs. The configure script clearly requires x86 archs. Message is as below. Only x86 and x86-64 are supported Signed-off-by: Chen Qi <Qi.Chen@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2017-07-25spice: Fix build failuresHe Zhe
Backport 3cb746329ea4846bd9c65e0198e69423379b6f62 "Use PRI macros in printf to keep compatibility between 32/64bit system" from upstream to fix the following errors: server/jpeg_encoder.c:639:17: error: format '%lu' expects argument of type 'long unsigned int', but argument 12 has type 'uint64_t {aka long long unsigned int}' [-Werror=format=] server/mjpeg_encoder.c:639:17: error: format '%lu' expects argument of type 'long unsigned int', but argument 13 has type 'uint64_t {aka long long unsigned int}' [-Werror=format=] server/mjpeg_encoder.c:706:21: error: format '%lu' expects argument of type 'long unsigned int', but argument 6 has type 'uint64_t {aka long long unsigned int}' [-Werror=format=] server/mjpeg_encoder.c:706:21: error: format '%lu' expects argument of type 'long unsigned int', but argument 7 has type 'uint64_t {aka long long unsigned int}' [-Werror=format=] server/mjpeg_encoder.c:936:75: error: integer overflow in expression [-Werror=overflow] Signed-off-by: He Zhe <zhe.he@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2017-07-10python-salttesting: Modify patch to improve ptest outputJeffrey Pautler
Current test case output includes shortDescription and looks like this: PASS: [CPU:24.1%|MEM:17.4%] First line of test case doc string New test case output replaces shortDescription with test name and looks like this: PASS: test_case_function_name Signed-off-by: Jeffrey Pautler <jeffrey.pautler@ni.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2017-06-29python: satisfy setup.py 'setup_requires' for vcversionerMark Asselstine
python-jsonschema has a 'setup_requires' for python vcversioner so we must have a -native version of python-vcversioner and DEPEND on it in order to avoid setup.py downloading the requires from PyPI. Signed-off-by: Mark Asselstine <mark.asselstine@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2017-06-29python-greenlet: uprev to 0.4.9Amy Fong
python-greenlet bugfixes from 0.3.4 - unstable issues. This resulted in the docker-registry (in some build scenarios) crashing repeatedly. Traceback (most recent call last): File "/usr/lib64/python2.7/site-packages/gunicorn/arbiter.py", line 507, in spawn_worker worker.init_process() File "/usr/lib64/python2.7/site-packages/gunicorn/workers/ggevent.py", line 193, in init_process super(GeventWorker, self).init_process() File "/usr/lib64/python2.7/site-packages/gunicorn/workers/base.py", line 120, in init_process self.run() File "/usr/lib64/python2.7/site-packages/gunicorn/workers/ggevent.py", line 117, in run gevent.sleep(1.0) File "/usr/lib64/python2.7/site-packages/gevent/hub.py", line 75, in sleep hub.wait(loop.timer(seconds, ref=ref)) File "/usr/lib64/python2.7/site-packages/gevent/hub.py", line 341, in wait result = waiter.get() File "/usr/lib64/python2.7/site-packages/gevent/hub.py", line 568, in get return self.hub.switch() File "/usr/lib64/python2.7/site-packages/gevent/hub.py", line 331, in switch return greenlet.switch(self) SystemError: NULL result without error in PyObject_Call <repeat> Signed-off-by: Amy Fong <amy.fong@windriver.com> Signed-off-by: He Zhe <zhe.he@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2017-06-29glusterfs: Move from meta-openstack to meta-cloud-servicesHe Zhe
It's not an openstack specific package. Signed-off-by: He Zhe <zhe.he@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2017-06-29python-pyparsing: Move from meta-openstack to meta-cloud-servicesHe Zhe
It's not an openstack specific package. Signed-off-by: He Zhe <zhe.he@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2017-06-29spice: Fix compilation errorHe Zhe
| ../../git/server/red_parse_qxl.c:367:18: error: 'BITMAP_FMT_IS_RGB' defined but not used [-Werror=unused-const-variable=] | static const int BITMAP_FMT_IS_RGB[] = {0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1}; Signed-off-by: He Zhe <zhe.he@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2017-06-16layer.conf: bump python-requests 2.12 -> 2.13Ioan-Adrian Ratiu
Meta-oe upreved to 2.13 (present in Pyro) so bump it here also to avoid bitbake messages like: "NOTE: preferred version 2.12.0 of python-requests not available" Signed-off-by: Ioan-Adrian Ratiu <adrian.ratiu@ni.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2017-06-01python: Inherit setuptools instead of distutils for several packagesAdrian Dudau
python-appdirs python-keystoneauth python-lesscpy python-os-client-config The setup scripts of these modules use setuptools instead of distutils, resulting in errors like this: | File "setup.py", line 5, in <module> | from setuptools import setup | ImportError: No module named setuptools Signed-off-by: Adrian Dudau <adrian.dudau@enea.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2017-06-01openstack-image-*: Remove ROOTFS_PKGMANAGE_BOOTSTRAPAdrian Dudau
run-postinsts is now installed by default in image.bbclass, so no need to include it in each image. Reference: OE-core rev 529244ee212fe14019e35a5f163fab705ddbf141 Signed-off-by: Adrian Dudau <adrian.dudau@enea.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2017-03-15kernel: remove non-existent bbappends and add current onesBruce Ashfield
Our kernel bbappends have gotten out of date. This commit syncs them with oe-core master. Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2017-03-13qpid: fix the wrong python dir issuefli
qpid used the wrong python path and thus cannot package the files installed. This commit will fix the following warning issue: WARNING: QA Issue: qpid: Files/directories were installed but not shipped in any package: /usr/lib/python2.7/site-packages/qmfengine.py /usr/lib/python2.7/site-packages/qmf.py /usr/lib/python2.7/site-packages/_qmfengine.so /usr/lib/python2.7/site-packages/_qmfengine.la /usr/lib/python2.7/site-packages/qmfengine.pyo /usr/lib/python2.7/site-packages/qmf.pyo /usr/lib/python2.7/site-packages/cqpid.py /usr/lib/python2.7/site-packages/_cqpid.so /usr/lib/python2.7/site-packages/_cqpid.la /usr/lib/python2.7/site-packages/cqpid.pyo /usr/lib/python2.7/site-packages/qmf2.py /usr/lib/python2.7/site-packages/cqmf2.py /usr/lib/python2.7/site-packages/_cqmf2.so /usr/lib/python2.7/site-packages/_cqmf2.la /usr/lib/python2.7/site-packages/qmf2.pyo /usr/lib/python2.7/site-packages/cqmf2.pyo /usr/lib/python2.7/site-packages/qmfgen /usr/lib/python2.7/site-packages/qmfgen/__init__.py /usr/lib/python2.7/site-packages/qmfgen/generate.py /usr/lib/python2.7/site-packages/qmfgen/schema.py /usr/lib/python2.7/site-packages/qmfgen/management-types.xml /usr/lib/python2.7/site-packages/qmfgen/__init__.pyo /usr/lib/python2.7/site-packages/qmfgen/generate.pyo /usr/lib/python2.7/site-packages/qmfgen/schema.pyo /usr/lib/python2.7/site-packages/qmfgen/templates /usr/lib/python2.7/site-packages/qmfgen/templates/Args.h /usr/lib/python2.7/site-packages/qmfgen/templates/Class.cpp /usr/lib/python2.7/site-packages/qmfgen/templates/Class.h /usr/lib/python2.7/site-packages/qmfgen/templates/CMakeLists.cmake /usr/lib/python2.7/site-packages/qmfgen/templates/Event.cpp /usr/lib/python2.7/site-packages/qmfgen/templates/Event.h /usr/lib/python2.7/site-packages/qmfgen/templates/Makefile.mk /usr/lib/python2.7/site-packages/qmfgen/templates/Package.cpp /usr/lib/python2.7/site-packages/qmfgen/templates/Package.h /usr/lib/python2.7/site-packages/qmfgen/templates/V2Package.cpp /usr/lib/python2.7/site-packages/qmfgen/templates/V2Package.h Please set FILES such that these items are packaged. Alternatively if they are unneeded, avoid installing them or delete them within do_install. qpid: 36 installed and not shipped files. [installed-vs-shipped] Signed-off-by: fli <fupan.li@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2017-01-30python-netaddr: switch to setuptoolsMark Asselstine
The uprev done in commit 0f9fb18e1883 didn't take into account that upstream moved to use setuptools (see upstream commit a8509c0c7c4c [cleaned up of older conventions and switched to setuptools]). Switch to setup tools to match this upstream change. This will fix errors seen when attempting to 'import netaddr'. Signed-off-by: Mark Asselstine <mark.asselstine@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2017-01-30python-xstatic-smart-table: uprev to v1.4.13.2Mark Asselstine
Although version 1.4.5.3 is within the acceptable versions listed by python-horizon (stable/newton) there are changes related to smart-table.min.js vs smart-table.js which will cause python-horizon to error with the following exception: 'horizon/lib/angular_smart_table/smart-table.min.js' could not be found in the COMPRESS_ROOT '/usr/lib/python2.7/site-packages/static' or with staticfiles. (See commit 12c37e3af0a95cb793ad1fb7e055276da049e5ac in horizon) Upstream should probably remove 1.4.5.3 from the range of acceptable versions due to this. At any rate uprev'ing the package avoids the mismatch. Signed-off-by: Mark Asselstine <mark.asselstine@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2017-01-30python-alembic: uprev to 0.8.10Mark Asselstine
This uprev is required to support python-oslo.db uprev to stable/newton. The license is still MIT though the md5sum required being updated. Runtime dependencies were updated based on requires.txt. Signed-off-by: Mark Asselstine <mark.asselstine@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2017-01-30python-kombu: add version 3.0.37Mark Asselstine
The 4.x.x series requires the amqp>=2 which is outside of the range of amqp versions supported versions required for python-oslo.messaging therefore we need to continue support for the 3.0.x series and force its use via the layer.conf and PREFERRED_VERSION. This is an updated version of the python-kombu recipe for the 3.0.x series with updated license checksup (the license type remains the same) and updated runtime dependencies based on the packages requirements/default.txt. Signed-off-by: Mark Asselstine <mark.asselstine@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2017-01-25python-oslo.reports: uprev to latest stable/newtonMark Asselstine
Minor runtime dependency updates. Runtime dependency versions are all already met. Signed-off-by: Mark Asselstine <mark.asselstine@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2017-01-25python-oslo.rootwrap: uprev to latest stable/newtonMark Asselstine
Signed-off-by: Mark Asselstine <mark.asselstine@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2017-01-25python-oslo.cache: uprev to latest stable/newtonMark Asselstine
Minor runtime dependency updates. Requiers an uprev to python-dogpile.cache Signed-off-by: Mark Asselstine <mark.asselstine@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2017-01-25python-dogpile.cache: uprev to 0.6.2Mark Asselstine
Required to support the uprev of python-oslo.cache to the latest stable/newton. Signed-off-by: Mark Asselstine <mark.asselstine@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2017-01-25python-oslo.vmware: uprev to latest stable/newtonMark Asselstine
A few runtime dependency updates, but otherwise a straightforward uprev. Signed-off-by: Mark Asselstine <mark.asselstine@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2017-01-25python-xstatic-angular-schema-form: initial versionMark Asselstine
This package is required by the stable/newton verison of python-horizon. Signed-off-by: Mark Asselstine <mark.asselstine@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2017-01-25python-xstatic-tv4: initial versionMark Asselstine
This package is required to support the stable/newton version of python-horizon. Signed-off-by: Mark Asselstine <mark.asselstine@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2017-01-25python-xstatic-angular-fileupload: initial versionMark Asselstine
This package is required to support the stable/newton version of python-horizon. Signed-off-by: Mark Asselstine <mark.asselstine@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2017-01-25python-xstatic-objectpath: initial versionMark Asselstine
This package is required to support the stable/newton uprev of python-horizon. Signed-off-by: Mark Asselstine <mark.asselstine@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2017-01-25python-django-babel: uprev to 0.5.1Mark Asselstine
This uprev is required to support the update to stable/newton of python-horizon. Signed-off-by: Mark Asselstine <mark.asselstine@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2017-01-25python-rcssmin: initial versionMark Asselstine
This package is required to support the uprev of python-django-compressor to v2.1. Signed-off-by: Mark Asselstine <mark.asselstine@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2017-01-25python-rjsmin: initial versionMark Asselstine
This package is required to support the uprev of python-django-compressor to v2.1. Signed-off-by: Mark Asselstine <mark.asselstine@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2017-01-25python-django-compressor: uprev to v2.1Mark Asselstine
This version is required to support the uprev of python-horizon to stable/newton. Signed-off-by: Mark Asselstine <mark.asselstine@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2017-01-25python-xstatic-mdi: uprev to 1.4.57.0Mark Asselstine
This uprev is required by the uprev of python-horizon to stable/newton. Signed-off-by: Mark Asselstine <mark.asselstine@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2017-01-25python-oslo.service: correct PVMark Asselstine
Mistakenly had 0.16.0 instead of 1.16.0. Signed-off-by: Mark Asselstine <mark.asselstine@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>