aboutsummaryrefslogtreecommitdiff
path: root/README
AgeCommit message (Collapse)Author
2015-08-11doc: implementers-guide: add validation descriptionChristophe Milard
Signed-off-by: Christophe Milard <christophe.milard@linaro.org> Signed-off-by: Mike Holmes <mike.holmes@linaro.org> Reviewed-and-tested-by: Bill Fischofer <bill.fischofer@linaro.org> Signed-off-by: Maxim Uvarov <maxim.uvarov@linaro.org>
2015-03-30README: Update content and linksMike Holmes
The 3rd party application repo is not supported and the architecture document is stale, in addition the ability to run the tests is now part of the build system. Make these updates to the document. Signed-off-by: Mike Holmes <mike.holmes@linaro.org> Reviewed-by: Anders Roxell <anders.roxell@linaro.org> Signed-off-by: Maxim Uvarov <maxim.uvarov@linaro.org>
2014-09-04doxygen: change doxygen-run to doxygen-htmlAnders Roxell
Signed-off-by: Anders Roxell <anders.roxell@linaro.org> Signed-off-by: Maxim Uvarov <maxim.uvarov@linaro.org>
2014-07-29README: Reorganised into platform specificAnders Roxell
Signed-off-by: Anders Roxell <anders.roxell@linaro.org>
2014-07-18README: Remove submission info for other odp reposAnders Roxell
Suggested-by: Mike Holmes <mike.holmes@linaro.org> Signed-off-by: Anders Roxell <anders.roxell@linaro.org>
2014-07-18README: change bug tracker urlAnders Roxell
Signed-off-by: Anders Roxell <anders.roxell@linaro.org>
2014-07-15README: Add link to per platform READMEMike Holmes
Signed-off-by: Mike Holmes <mike.holmes@linaro.org>
2014-07-11List required/suggested dependencies for building ODPSteve McIntyre
Add some documentation describing the minimum requirements and recommended versions of tools and libraries for building ODP. This initial checkin just mentions the Linux kernel and autotools. Signed-off-by: Steve McIntyre <steve.mcintyre@linaro.org> Reviewed-by: Anders Roxell <anders.roxell@linaro.org> Signed-off-by: Maxim Uvarov <maxim.uvarov@linaro.org>
2014-07-11README: update to reflect autotoolsAnders Roxell
Signed-off-by: Anders Roxell <anders.roxell@linaro.org>
2014-06-19add option to compile position independent libMaxim Uvarov
Signed-off-by: Maxim Uvarov <maxim.uvarov@linaro.org>
2014-05-15remove link to old google groupMaxim Uvarov
Google group can not be accessed for people outside of that google group. We moved from google group to standard mailing list. Remove link reference to google and refine README and CONTRIBUTING. Signed-off-by: Maxim Uvarov <maxim.uvarov@linaro.org>
2014-04-18refine README fileMaxim Uvarov
Put some useful information to README file. Signed-off-by: Maxim Uvarov <maxim.uvarov@linaro.org>
2013-12-30tree-wide: introduce SPDX Unique License IdentifiersKim Phillips
ODP includes big blocks of License headers in all files. This not only blows up the source code with mostly redundant information, but also makes it very difficult to generate License Clearing Reports. An additional problem is that even the same licenses are referred to by a number of slightly varying text blocks (full, abbreviated, different indentation, line wrapping and/or white space, with obsolete address information, ...) which makes automatic processing a nightmare. To make this easier, such license headers in the source files will be replaced with a single line reference to Unique License Identifiers as defined by the Linux Foundation's SPDX project [1]. I.e, in a source file the full BSD 3-clause header text will be replaced by a single line: SPDX-License-Identifier: BSD-3-Clause We use the SPDX Unique License Identifiers here; these are available at [2]. Note: From the legal point of view, this patch is supposed to be only a change to the textual representation of the license information, but in no way any change to the actual license terms. With this patch applied, all files will still be licensed under the same terms they were before. [1] http://spdx.org/ [2] http://spdx.org/licenses/ Signed-off-by: Kim Phillips <kim.phillips@linaro.org>
2013-11-18Added pthread helpersPetri Savolainen
Style cleaning on all files. Added support for pthreads and first multithreading test app code.
2013-11-18Added initial ODP filesPetri Savolainen
Directory arch/linux-generic contains ODP headers and implementation for linux-generic target. Use 'make libs' to build ODP library and 'make docs' to build ODP API documentation. Directory test contains simple test application to test few API calls. Use 'make' to build the test app, or 'make libs' or 'make docs' to build ODP libs and docs, respectively.