Difference between revisions of "Beagleboard:BeagleBoneBlack Rebuilding Software Image"

From eLinux.org
Jump to: navigation, search
(Sources)
(Angstrom Build Instructions: formatting: "Step 1" header was hanging on the end of the previous text instead in leftmost column)
(6 intermediate revisions by one other user not shown)
Line 10: Line 10:
  
 
     Bootloader: http://www.denx.de/wiki/U-Boot/SourceCode (git://git.denx.de/u-boot.git)
 
     Bootloader: http://www.denx.de/wiki/U-Boot/SourceCode (git://git.denx.de/u-boot.git)
     Kernel: http://github.com/beagleboard/kernel
+
     Kernel: http://github.com/beagleboard/linux
 
     Angstrom root file system: http://github.com/beagleboard/meta-beagleboard
 
     Angstrom root file system: http://github.com/beagleboard/meta-beagleboard
 
     Debian root file system: https://github.com/beagleboard/image-builder
 
     Debian root file system: https://github.com/beagleboard/image-builder
 +
    Cape overlays: https://github.com/beagleboard/bb.org-overlays
  
 
To access the getting started guide do the following:
 
To access the getting started guide do the following:
Line 25: Line 26:
 
All Angstrom binaries are built using OpenEmbedded. This document described the steps necessary to setup an environment where you can build images and packages yourself.
 
All Angstrom binaries are built using OpenEmbedded. This document described the steps necessary to setup an environment where you can build images and packages yourself.
  
If you just want a simple toolchain, please read our simplified development setup instructions
+
The OE host distributions wiki has information about needed packages on your host and possible tweaks for e.g. SElinux.
  
The OE host distributions wiki has information about needed packages on your host and possible tweaks for e.g. SElinux.
+
<big>Step 1</big>
<big>
 
Step 1</big>
 
  
 
get the setup scripts:
 
get the setup scripts:
Line 46: Line 45:
 
MACHINE=beaglebone ./oebb.sh update  
 
MACHINE=beaglebone ./oebb.sh update  
 
MACHINE=beaglebone ./oebb.sh bitbake virtual/kernel
 
MACHINE=beaglebone ./oebb.sh bitbake virtual/kernel
 +
</pre>
 +
 +
The complete image is the [https://github.com/Angstrom-distribution/meta-ti/blob/master/recipes-misc/images/cloud9-gnome-image.bb cloud9-gnome-image] that for legacy reasons lives in the Angstrom fork of meta-ti.
 +
 +
<pre>
 +
MACHINE=beaglebone ./oebb.sh bitbake cloud9-gnome-image
 
</pre>
 
</pre>
  
 
= Debian Build Instructions =
 
= Debian Build Instructions =
 +
 +
You'll want a fairly beefy ARM system to run this script.
 +
 +
<pre>
 +
git clone git://github.com/beagleboard/image-builder.git && cd image-builder
 +
./beagleboard.org_image.sh
 +
</pre>
 +
 +
Latest builds can be found at http://builds.beagleboard.org.

Revision as of 01:34, 11 February 2017

Sources

It is highly recommended that you always use the latest version of the Software.

If you power off the board without using the Power Button to do it, you can corrupt the data in the eMMC Flash.

For instructions on reflashing or updating the software on your BeagleBone Black go to Beagleboard:Updating the Software

Software Sources

   Bootloader: http://www.denx.de/wiki/U-Boot/SourceCode (git://git.denx.de/u-boot.git)
   Kernel: http://github.com/beagleboard/linux
   Angstrom root file system: http://github.com/beagleboard/meta-beagleboard
   Debian root file system: https://github.com/beagleboard/image-builder
   Cape overlays: https://github.com/beagleboard/bb.org-overlays

To access the getting started guide do the following:

Angstrom Build Instructions

All Angstrom binaries are built using OpenEmbedded. This document described the steps necessary to setup an environment where you can build images and packages yourself.

The OE host distributions wiki has information about needed packages on your host and possible tweaks for e.g. SElinux.

Step 1

get the setup scripts: Go to the the setup-scripts repository and clone it, the URLS are on top of that page. You should end up doing something like:

git clone https://github.com/Angstrom-distribution/setup-scripts

Step 2

If you are behind a firewalling proxy, have a look at the oebb.sh file, it has built-in proxy handling.

Start building:

MACHINE=beaglebone ./oebb.sh config beaglebone
MACHINE=beaglebone ./oebb.sh update 
MACHINE=beaglebone ./oebb.sh bitbake virtual/kernel

The complete image is the cloud9-gnome-image that for legacy reasons lives in the Angstrom fork of meta-ti.

MACHINE=beaglebone ./oebb.sh bitbake cloud9-gnome-image

Debian Build Instructions

You'll want a fairly beefy ARM system to run this script.

git clone git://github.com/beagleboard/image-builder.git && cd image-builder
./beagleboard.org_image.sh

Latest builds can be found at http://builds.beagleboard.org.