Buildroot Snapshots

From Linux/Xtensa
Revision as of 22:23, 10 January 2008 by Marc (talk | contribs) (Skeleton list of buildroot snapshots)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Stable Snapshots of Buildroot and the Linux kernel

THIS PAGE IS A WORK IN PROGRESS. PLEASE TUNE IN LATER.

This page describes how to download a specific snapshot of sources that have been tested to work together, as well as associated links to build documentation that matched those snapshots.

First select the desired snapshot from the first table. Then follow the subsequent instructions to access that snapshot.

List of Snapshots
Date Buildroot
svn rev
<brev>
Kernel
repository
<krepos>
Kernel
git commit
<kcommit>
Instructions Comments
2008-Jan-10 47 xtensa-devel b1ab5580067c How to build Not officially tested (work in progress)


Downloading Sources

First create a work area directory on a disk with at least 4 GB available space.

The following creates and populates the <workdir>/trunk directory with revision <brev> of the buildroot source tree, and the <workdir>/<kdir> directory with git commit <kcommit> of the Linux source tree from git repository <krepos>:

  $ cd <workdir>
  $ svn co -r <brev> svn://linux-xtensa.org/var/svn/repos/buildroot/trunk/
  $ git clone git://git.linux-xtensa.org/kernel/<krepos> <kdir>
  $ git checkout <kcommit>

For example, to download buildroot sources (rev 47) in /mnt/workarea/trunk and Linux source (git commit b1ab5580067c from the xtensa-devel repository) in /mnt/workarea/xtensa-devel, you can do this (assuming /mnt/workarea exists and is empty):

  $ cd /mnt/workarea
  $ svn co -r 47 svn://linux-xtensa.org/var/svn/repos/buildroot/trunk/
  $ git clone git://git.linux-xtensa.org/kernel/xtensa-devel xtensa-devel
  $ git checkout b1ab5580067c