diff --git a/documentation/toaster-manual/toaster-manual-reference.xml b/documentation/toaster-manual/toaster-manual-reference.xml
index 94ece4e16d..9aeb1fe576 100644
--- a/documentation/toaster-manual/toaster-manual-reference.xml
+++ b/documentation/toaster-manual/toaster-manual-reference.xml
@@ -252,146 +252,6 @@
-
-
- What Makes Up a Release?
-
-
- A release consists of the following:
-
- Name:
- The name of the release (name).
- This release name never appears in the the Toaster
- web interface.
- Consequently, a user never sees the release name.
-
- Description:
- The textual description of the release
- (description).
- This description is what users encounter when creating
- projects with the Toaster web interface.
- When you configure your release, be sure to use
- a description that sufficiently describes and is
- understandable.
- If Toaster has more than one release configured, the
- release descriptions appear listed in a drop down menu
- when a user creates a new project.
- If Toaster has only one release configured, all
- projects created using the web interface take that
- release and the drop down menu does not display in the
- Toaster web interface.
-
- BitBake:
- The Bitbake version (bitbake)
- used to build layers set in the current release.
- This version is described by a name, a Git URL, a
- branch in the Git URL, and a directory path in the
- Git repository.
- As an example, consider the following snippet from
- a Toaster JSON configuration file.
- This BitBake version uses the master branch from the
- OpenEmbedded repository:
-
- "bitbake" : [
- {
- "name": "master",
- "giturl": "git://git.openembedded.org/bitbake",
- "branch": "master",
- "dirpath": ""
- }
- ]
-
- Here is more detail on each of the items that comprise
- the BitBake version:
-
- Name:
- A string
- (name) used to refer to
- the version of BitBake you are using with
- Toaster.
- This name is never exposed through Toaster.
-
- Git URL:
- The URL (giturl)
- for the BitBake Git repository cloned
- for Toaster projects.
-
- Branch:
- The Git branch, or revision,
- (branch) of the BitBake
- repository used with Toaster.
-
- Directory Path:
- The sub-directory of the BitBake repository
- (dirpath).
- If the Git URL includes more than one
- repository, you need to set this directory.
- If the URL does not include more than a single
- repository, you can set
- dirpath to a null string
- (i.e. "").
-
-
-
- Branch:
- The branch for the layer source
- (branch) used with the release.
- For example, for the OpenEmbedded layer source, the
- "master", "fido", and "jethro" branches are available.
-
- Default Layers:
- The set of default layers
- (defaultlayers) automatically
- added to the project configuration when a project is
- created.
-
- Layer Source Priorities
- A specification of
- layer source
- priorities (layersourcepriority).
- In order for Toaster to work as intended, the
- "Imported layers" layer source should have the highest
- priority, which means that layers manually imported by
- users with the "Import layer" functionality will
- always be visible and available for selection.
-
- Help Text:
- Help text (helptext) that explains
- what the release does when selected.
- This help text appears below the release drop-down
- menu when you create a Toaster project.
- The help text should assist users in making the correct
- decision regarding the release to use for a given
- project.
-
-
-
-
-
- To summarize what comprises a release, consider the following
- example from a Toaster JSON file.
- The configuration names the release "master" and uses the
- "master" branch provided by the layer source of type
- "layerindex", which is called "OpenEmbedded", and sets
- the openembedded-core layer as the one
- to be added by default to any projects created in Toaster.
- The BitBake version used would be defined as shown earlier
- in the previous list:
-
- "releases": [
- {
- "name": "master",
- "description": "OpenEmbedded master",
- "bitbake": "master",
- "branch": "master",
- "defaultlayers": [ "openembedded-core" ],
- "layersourcepriority": { "Imported layers": 99, "Local OpenEmbedded" : 10, "OpenEmbedded" : 0 },
- "helptext": "Toaster will run your builds using the tip of the <a href=\"http://git.yoctoproject.org/cgit/cgit.cgi/poky/log/\">Yocto Project master branch</a>, where active development takes place. This is not a stable branch, so your builds might not work as expected."
- }
- ]
-
-
-