Difference between revisions of "Development Tools"

From Pandora Wiki
Jump to: navigation, search
(Kernel Source)
m
Line 9: Line 9:
  
 
===Official Firmware images===
 
===Official Firmware images===
A Pandora specific repository is work-in-progress. From 1 July 2010, you can grab the latest ''unstable'' ready-to-be-flashed ubifs-images from [http://openpandora.org/firmware/ http://openpandora.org/firmware/] (the current one already includes Hotfix 4) or the rootfs which you can [[Creating_a_bootable_SD_card | extract on your SD Card and boot]] from there. For ''stable'' released images, see the OpenPandora support page.
+
A Pandora specific repository is work-in-progress. From 1 July 2010, you can grab the latest ''unstable'' ready-to-be-flashed ubifs-images from [http://openpandora.org/firmware/ http://openpandora.org/firmware/] (the current one already includes [[Hotfix 4]]) or the rootfs which you can [[Creating_a_bootable_SD_card | extract on your SD Card and boot]] from there. For ''stable'' released images, see the OpenPandora support page.
  
Be aware that these images are the most recent cutting edge. They might have some bugs, but should include any new fixes which are yet to be released as Hotfixes. Note they are also 'un-configured' so will take you through the first-boot process. You will obtain a slightly different result if you copy your existing rootfs to an SD card and boot from there.
+
Be aware that these images are the most recent cutting edge. They might have some bugs, but should include any new fixes which are yet to be released as [[Hotfixes]]. Note they are also 'un-configured' so will take you through the first-boot process. You will obtain a slightly different result if you copy your existing rootfs to an SD card and boot from there.
  
 
==Pandora Specific Libraries==
 
==Pandora Specific Libraries==

Revision as of 23:33, 28 October 2011

Official Pandora Source Code Repository

The official source repository is under GIT revision control; EvilDragon is the admin, but the repo has a web based browser built in.===

Minor note on libpnd in the GIT; as skeezix (me) is too lazy to install vmware-tools for date sync, the check-in times are not accurate for libpnd; they're in order of course, but the actual date is usualyl off by many days, so don't sweat it.

The actual GIT repository is here: [1] It is recommended that you read the git structure information before going too far.

Official Firmware images

A Pandora specific repository is work-in-progress. From 1 July 2010, you can grab the latest unstable ready-to-be-flashed ubifs-images from http://openpandora.org/firmware/ (the current one already includes Hotfix 4) or the rootfs which you can extract on your SD Card and boot from there. For stable released images, see the OpenPandora support page.

Be aware that these images are the most recent cutting edge. They might have some bugs, but should include any new fixes which are yet to be released as Hotfixes. Note they are also 'un-configured' so will take you through the first-boot process. You will obtain a slightly different result if you copy your existing rootfs to an SD card and boot from there.

Pandora Specific Libraries

libpnd - the Pandora Library

libpnd is a collection of utilities that Pandora developers may find useful, as well as including the daemons and tools for creating and working with PXML.xml based applications (pnd files or unpacked application directories.)

It is hoped the community will continue to expand this library over time!

Some stubs are included as hints .. for instance, the first dev to build a clean /dev/gpio based input library should slip it into libpnd so that others may benefit as well, avoid fragmentation and application bugs.

Continue into the main libpnd documentation hub.

Tentative Library Environment

Information

Please note, that this information is hearsay/guesswork, and is yet to be confirmed on a production unit.

For Pandora (Out-Of-The-Box)

  • glibc (at a guess, version 2.6.1 or whatever is compatible with OpenEmbedded)
  • libSDL (also a guess, latest available version of 1.2)

For those interested in creating libraries, or needing more low-level access, read about the kernel interface.

Tools for Pandora Software Development

  • OpenEmbedded cross-compile environment (and Angstrom distro) [2]
  • CodeSourcery gcc[3]
    • [4] - NB: OpenEmbedded uses the CodeSourcery 2007q3 to build the kernel, but uses gcc 4.3.1 to compile everything else.
  • TI CodeComposer Studio: Free Evaluation Tools[5]
  • TI c6x Codegen tools for Linux[6]; License [7]; TI account required; this is *only* for Open Source development
  • Das U-boot: The Universal Bootloader[8]

Kernel Source

  • A read-only GIT repository for the kernel source has been made available (November 2008); the note from ED is:

If anybody wants to take a sneak peek at the current kernel, we've got a read-only GIT setup which features the most recent version of the MK2 OpenPandora Kernel.

The git is: [9]

Use the pandora-27-omap1 branch for the moment, there will soon be a 2.6.28.

OpenGL

(See also OpenGLES On the Pandora)

  • OpenGL ES 2.0 emulator for PC[10] This works both on Linux and Windows. One needs to register with imgtec before downloading.
    • To build the applications a few environment variables need to be set (tested on Ubuntu Gutsy). Note that to run them, you do need an OpenGL 2.0 compliant gfx card.
      • LD_LIBRARY_PATH needs to be set to the folder holding the important libraries, such as libEGL.so ($SDK_PATH/Builds/OGLES2/LinuxPC/Lib might be enough)
      • To run the makefiles in the Training section you need to set a PLATFORM variable to either LinuxPC or LinuxGeneric. I have had success with LinuxPC.
      • See [11] for a script that you can run to set these for you.
  • PowerVR Texture creation tool
    • "PVRTexTool enables conversion of standard bitmap files (e.g. BMP, JPG, PNG, TGA, etc.) to any texture type supported by POWERVR MBX or POWERVR SGX hardware including PVRTC, DXT and ETC compressed formats. Both a GUI and command line version are supplied for Windows and Linux. There are also plug-ins for Autodesk 3ds Max, Maya and Adobe Photoshop." - requires imgtec registration.
    • Note, this is part of the main SDK - (Linux path to it is /SDKPackage/Utilities/PVRTexTool/)

Packaging

(See also Making PND files and the PND package format)