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