From f9db48724f4800e7810daad34e4a55551f29fb1c Mon Sep 17 00:00:00 2001 From: Scott Rifenbark Date: Tue, 30 Jan 2018 11:31:29 -0800 Subject: getting-started: Removed accidental tracked files I accidentally pushed a commit after building out the new getting-started manual before applying some key files to the .gitignore file. So, the HTML, TGZ, and eclipse/* stuff got tracked in Git. I don't want that. So I had to use the 'git rm' command to untrack those files. (From yocto-docs rev: 217f6db7f741cee266885a845b2b0e7faf96e537) Signed-off-by: Scott Rifenbark Signed-off-by: Richard Purdie --- .../source-fetching-dev-environment.html | 93 ---------------------- 1 file changed, 93 deletions(-) delete mode 100644 documentation/getting-started/eclipse/html/getting-started/source-fetching-dev-environment.html (limited to 'documentation/getting-started/eclipse/html/getting-started/source-fetching-dev-environment.html') diff --git a/documentation/getting-started/eclipse/html/getting-started/source-fetching-dev-environment.html b/documentation/getting-started/eclipse/html/getting-started/source-fetching-dev-environment.html deleted file mode 100644 index afcdafdc76..0000000000 --- a/documentation/getting-started/eclipse/html/getting-started/source-fetching-dev-environment.html +++ /dev/null @@ -1,93 +0,0 @@ - - - -2.8.5.1. Source Fetching - - - - - - - -
-

-2.8.5.1. Source Fetching

-

- The first stages of building a recipe are to fetch and unpack - the source code: -

-
-

-

-

- The - do_fetch - and - do_unpack - tasks fetch the source files and unpack them into the work - directory. -

-
-

Note

- For every local file (e.g. file://) - that is part of a recipe's - SRC_URI - statement, the OpenEmbedded build system takes a checksum - of the file for the recipe and inserts the checksum into - the signature for the do_fetch. - If any local file has been modified, the - do_fetch task and all tasks that - depend on it are re-executed. -
-

- By default, everything is accomplished in the - Build Directory, - which has a defined structure. - For additional general information on the Build Directory, - see the - "build/" - section in the Yocto Project Reference Manual. -

-

- Unpacked source files are pointed to by the - S - variable. - Each recipe has an area in the Build Directory where the - unpacked source code resides. - The name of that directory for any given recipe is defined from - several different variables. - You can see the variables that define these directories - by looking at the figure: -

-
    -
  • TMPDIR - - The base directory where the OpenEmbedded build system - performs all its work during the build. -

  • -
  • PACKAGE_ARCH - - The architecture of the built package or packages. -

  • -
  • TARGET_OS - - The operating system of the target device. -

  • -
  • PN - - The name of the built package. -

  • -
  • PV - - The version of the recipe used to build the package. -

  • -
  • PR - - The revision of the recipe used to build the package. -

  • -
  • WORKDIR - - The location within TMPDIR where - a specific package is built. -

  • -
  • S - - Contains the unpacked source files for a given recipe. -

  • -
-

-

-
- -- cgit v1.2.3-54-g00ecf