From 8cdb88330c2a7c98114a6740fd1d913e20e384a4 Mon Sep 17 00:00:00 2001 From: Scott Rifenbark Date: Tue, 12 Jun 2012 10:36:09 -0700 Subject: documentation/poky-ref-manual/development.xml: removed section Removed the "Development Using Yocto Project Directly" section. This information is better covered in the YP Development Manual where it talks about modifying temporary source code. (From yocto-docs rev: f3c8c182a8b34c8fdfe4be8c497948f8b777ddf2) Signed-off-by: Scott Rifenbark Signed-off-by: Richard Purdie --- documentation/poky-ref-manual/development.xml | 58 --------------------------- 1 file changed, 58 deletions(-) (limited to 'documentation/poky-ref-manual') diff --git a/documentation/poky-ref-manual/development.xml b/documentation/poky-ref-manual/development.xml index 17fed8ee22..69885593ec 100644 --- a/documentation/poky-ref-manual/development.xml +++ b/documentation/poky-ref-manual/development.xml @@ -15,64 +15,6 @@ This chapter describes each development method. -
- Development Using Yocto Project Directly - - Working directly with the Yocto Project is a fast and effective development technique. - The idea is that you can directly edit files in a working directory - (WORKDIR) - or the source directory (S) - and then force specific tasks to rerun in order to test the changes. - An example session working on the matchbox-desktop package might - look like this: - - - - - $ bitbake matchbox-desktop - $ sh - $ cd tmp/work/armv5te-poky-linux-gnueabi/matchbox-desktop-2.0+svnr1708-r0/ - $ cd matchbox-desktop-2 - $ vi src/main.c - . - . - [Make your changes] - . - . - $ exit - $ bitbake matchbox-desktop -c compile -f - $ bitbake matchbox-desktop - - - - - This example builds the matchbox-desktop package, - creates a new terminal, changes into the work directory for the package, - changes a file, exits out of the terminal, and then recompiles the - package. - Instead of using sh, - you can also use two different terminals. - However, the risk of using two terminals is that a command like - unpack could destroy your changes in the - work directory. - Consequently, you need to work carefully. - - - - It is useful when making changes directly to the work directory files to do - so using the Quilt tool as detailed in the - "Using a Quilt Workflow" section in the Yocto Project Development Manual. - Using Quilt, you can copy patches into the recipe directory and use the patches directly - through use of the SRC_URI variable. - - - - For a review of the skills used in this section, see the - "BitBake" and - "Running Specific Tasks" sections. - -
-
Development Within a Development Shell -- cgit v1.2.3-54-g00ecf