Difference between revisions of "JavaRecipeHowto"

From Openembedded.org
Jump to: navigation, search
(Overview)
(Overview)
Line 1: Line 1:
 
= Overview =
 
= Overview =
  
This page describes how to create a recipe for a pre-existing Java project or library that is not currently available in OpenEmbedded or Jalimo.  It assumes a basic working knowledge of OpenEmbedded and Java tools such as <tt>javac</tt>.
+
This page describes how to create a recipe for a pre-existing Java project or library that is not currently available in OpenEmbedded or Jalimo.  It assumes a basic working knowledge of OpenEmbedded and Java tools such as <tt>javac</tt>.  An example library will be built from sources: Concierge, an OSGi framework.
  
 
= Prerequisites =
 
= Prerequisites =

Revision as of 15:33, 23 August 2008

Overview

This page describes how to create a recipe for a pre-existing Java project or library that is not currently available in OpenEmbedded or Jalimo. It assumes a basic working knowledge of OpenEmbedded and Java tools such as javac. An example library will be built from sources: Concierge, an OSGi framework.

Prerequisites

General Open Embedded

Java Native Tools

BitBake Classes

Creating a recipe

General Items

Inheriting java-library

Pulling in your Sources

Testing it out

Examining the Result

Conclusion

Troubleshooting