Difference between revisions of "Bering-uClibc 4.x - Developer Guide - Introduction"

From bering-uClibc
Jump to: navigation, search
(Created)
 
m (Formatting tweaks)
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
TODO - Add Prev / Up / Next navigation links, like DocBook pages.
+
{| summary="Navigation header" width="100%"
 +
! colspan="3" align="center" | [[Bering-uClibc 4.x - Developer Guide - Introduction|Introduction]]
 +
|-
 +
| width="20%" align="left"  |
 +
! width="60%" align="center" | [[Bering-uClibc 4.x - Developer Guide]]
 +
| width="20%" align="right"  | [[Bering-uClibc 4.x - Developer Guide - Preparing the Build Environment|Next]]
 +
|}
 +
----
  
  
 
This Developer Guide describes the recommended approach for people who want to:
 
This Developer Guide describes the recommended approach for people who want to:
* Build Bering-uClibc 4.x from source code.
+
* Build [[Bering-uClibc 4.x]] from source code.
 
* Modify an existing Package.
 
* Modify an existing Package.
 
* Add a new Package.
 
* Add a new Package.
  
  
All LEAF variants are designed to run on small, embedded systems which do not provide a suitable platform for software development. The distribution therefore needs to be prepared on a separate "host" system and copied across to the "target" system.
+
All [[LEAF]] variants are designed to run on small, embedded systems which do not provide a suitable platform for software development. The distribution therefore needs to be prepared on a separate "build" system and installed onto the "target" system.
 +
The build system needs to run Linux but it can be any modern distribution which includes the pre-requisites described on [[Bering-uClibc 4.x - Developer Guide - Preparing the Build Environment|the next page]].
  
 +
One enhancement from [[Bering-uClibc 3.x]] is that the build environment can be 64-bit and still generate code for a 32-bit target system.
  
For Bering-uClibc 4.x there is a well-developed toolchain which consists of:
 
* A utility called buildtool.pl which automates the process of compiling source code for Packages.
 
** This also supports the compilation of the build environment itself, via a special pseudo-package called "buildenv".
 
* A utility called buildpacket.pl which automates the process of assembling an installable Package (.lrp) file from compiled code.
 
* A utility called buildimage.pl which automates the process of preparing a disk image.
 
** This does not exist (yet). Should we create it to replace geniso.sh / createimage.sh ?
 
  
 +
For [[Bering-uClibc 4.x]] there is a well-developed toolchain which consists of:
 +
* A utility called <code class="filename">buildtool.pl</code> which automates the process of compiling source code for Packages.
 +
** This also supports the compilation of the build environment itself, via a special pseudo-package called <code class="filename">buildenv</code>.
 +
* A utility called <code class="filename">buildpacket.pl</code> which automates the process of assembling an installable Package (<tt>.lrp</tt>) file from compiled code.
 +
* A utility called <code class="filename">buildimage.pl</code> which automates the process of preparing a disk Image from a full set of Package files.
  
TODO - Add Prev / Up / Next navigation links, like DocBook pages.
+
 
 +
----
 +
{| summary="Navigation footer" width="100%"
 +
| width="40%" align="left"  |
 +
| width="20%" align="center" | [[Bering-uClibc 4.x - Developer Guide|Up]]
 +
| width="40%" align="right"  | [[Bering-uClibc 4.x - Developer Guide - Preparing the Build Environment|Next]]
 +
|}
  
 
[[Category:Bering-uClibc 4.x]]
 
[[Category:Bering-uClibc 4.x]]
 +
[[Category:Developer Guide]]

Latest revision as of 16:31, 9 January 2011

Introduction
Bering-uClibc 4.x - Developer Guide Next


This Developer Guide describes the recommended approach for people who want to:

  • Build Bering-uClibc 4.x from source code.
  • Modify an existing Package.
  • Add a new Package.


All LEAF variants are designed to run on small, embedded systems which do not provide a suitable platform for software development. The distribution therefore needs to be prepared on a separate "build" system and installed onto the "target" system. The build system needs to run Linux but it can be any modern distribution which includes the pre-requisites described on the next page.

One enhancement from Bering-uClibc 3.x is that the build environment can be 64-bit and still generate code for a 32-bit target system.


For Bering-uClibc 4.x there is a well-developed toolchain which consists of:

  • A utility called buildtool.pl which automates the process of compiling source code for Packages.
    • This also supports the compilation of the build environment itself, via a special pseudo-package called buildenv.
  • A utility called buildpacket.pl which automates the process of assembling an installable Package (.lrp) file from compiled code.
  • A utility called buildimage.pl which automates the process of preparing a disk Image from a full set of Package files.



Up Next