waffleman
waffleman

Reputation: 4339

Build Systems for Embedded Linux

I work on a device that uses Embedded Linux. In the near future this device is going to probably turn into a product family and a few more devices (i.e. hardware platforms) are going to added to the mix. These devices will be similar but may have processors, hardware peripherals (and device drivers), user space applications and kernel settings. In addition to compiling distributions for different devices, I'd also like to build debug distributions for development.

What are some of the more common ways to assemble and manage Embedded Linux systems? I have been playing around with Jenkins some and see some potential there.

Upvotes: 4

Views: 1237

Answers (1)

pmod
pmod

Reputation: 10997

There are several build systems targeting Embedded Linux:

OpenEmbedded

Buildroot

Scratchbox

PTXdist

LTIB

Emdebian

There is document which compares them here. But I suppose the Buildroot is the most famous and used among them. There are more interesting docs related to Embedded Linux on free-electrons.com.

Upvotes: 5

Related Questions