From 19e3648390b011715f7446161a05d9d568aed765 Mon Sep 17 00:00:00 2001 From: Scott Rifenbark Date: Thu, 17 Mar 2016 12:59:39 -0700 Subject: dev-manual: Edits from a 2.1 read-through. * Removed some eMenlow stuff * Cleaned up the description of the BSP structures we have now. * Various links fixed into the SDK manual. * Other minor fixes. (From yocto-docs rev: 5e45005d7ff2254df2754a5ea2d7efd7f1c19a42) Signed-off-by: Scott Rifenbark Signed-off-by: Richard Purdie --- documentation/dev-manual/dev-manual-newbie.xml | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) (limited to 'documentation/dev-manual/dev-manual-newbie.xml') diff --git a/documentation/dev-manual/dev-manual-newbie.xml b/documentation/dev-manual/dev-manual-newbie.xml index e81ec15f75..bf454c47ab 100644 --- a/documentation/dev-manual/dev-manual-newbie.xml +++ b/documentation/dev-manual/dev-manual-newbie.xml @@ -96,7 +96,10 @@ For developers who mainly do application level work on top of an existing software stack, - here are some practices that work best: + the following list shows practices that work best. + For information on using a Software Development Kit (SDK), see + the + Yocto Project Software Development Kit (SDK) Developer's Guide: Use a pre-built toolchain that contains the software stack itself. @@ -1045,9 +1048,10 @@ - Some key tags are dylan-9.0.4, - dora-10.0.4, daisy-11.0.2, - dizzy-12.0.0, and + Some key tags are + dizzy-12.0.0, + fido-13.0.0, + jethro-14.0.0, and &DISTRO_NAME;-&POKYVERSION;. These tags represent Yocto Project releases. @@ -1127,20 +1131,20 @@ into the project’s upstream (or master) repository. git status: Reports any modified files that possibly need to be staged and committed. - git checkout <branch-name>: Changes + git checkout branch-name: Changes your working branch. This command is analogous to "cd". - git checkout –b <working-branch>: Creates + git checkout –b working-branch: Creates a working branch on your local machine where you can isolate work. It is a good idea to use local branches when adding specific features or changes. This way if you do not like what you have done you can easily get rid of the work. git branch: Reports existing local branches and tells you the branch in which you are currently working. - git branch -D <branch-name>: + git branch -D branch-name: Deletes an existing local branch. You need to be in a local branch other than the one you are deleting - in order to delete <branch-name>. + in order to delete branch-name. git pull: Retrieves information from an upstream Git repository and places it in your local Git repository. -- cgit v1.2.3-54-g00ecf