diff --git a/documentation/dev-manual/dev-manual-common-tasks.xml b/documentation/dev-manual/dev-manual-common-tasks.xml index 11ae3aa657..ce5cbf2528 100644 --- a/documentation/dev-manual/dev-manual-common-tasks.xml +++ b/documentation/dev-manual/dev-manual-common-tasks.xml @@ -5826,8 +5826,7 @@ The merge_config.sh script is part of the Linux Yocto kernel Git repositories (i.e. linux-yocto-3.14, - linux-yocto-3.10, - linux-yocto-3.8, and so forth) + linux-yocto-3.19, and so forth) in the scripts/kconfig directory. For more information on configuration fragments, diff --git a/documentation/dev-manual/dev-manual-model.xml b/documentation/dev-manual/dev-manual-model.xml index f2f859b94a..bbf4904860 100644 --- a/documentation/dev-manual/dev-manual-model.xml +++ b/documentation/dev-manual/dev-manual-model.xml @@ -288,9 +288,9 @@ Linux 3.8 released kernel. - linux-yocto-3.10 - The - stable Yocto Project kernel to use with the Yocto - Project Release 1.5. + linux-yocto-3.10 - An + additional, unsupported Yocto Project kernel used with + the Yocto Project Release 1.5. This kernel is based on the Linux 3.10 released kernel. @@ -301,10 +301,16 @@ linux-yocto-3.17 - An - additional Yocto Project kernel used with the Yocto - Project Release 1.7. + additional, unsupported Yocto Project kernel used with + the Yocto Project Release 1.7. This kernel is based on the Linux 3.17 released kernel. + + linux-yocto-3.19 - The + stable Yocto Project kernel to use with the Yocto + Project Release 1.8. + This kernel is based on the Linux 3.19 released kernel. + linux-yocto-dev - A development kernel based on the latest upstream release diff --git a/documentation/dev-manual/dev-manual-start.xml b/documentation/dev-manual/dev-manual-start.xml index c3206b86f8..518feb7273 100644 --- a/documentation/dev-manual/dev-manual-start.xml +++ b/documentation/dev-manual/dev-manual-start.xml @@ -138,29 +138,31 @@ For simplicity, it is recommended that you create these structures outside of the Source Directory, which is usually named poky. As an example, the following transcript shows how to create the bare clone - of the linux-yocto-3.10 kernel and then create a copy of + of the linux-yocto-3.19 kernel and then create a copy of that clone. When you have a local Yocto Project kernel Git repository, you can reference that repository rather than the upstream Git repository as part of the clone command. Doing so can speed up the process. In the following example, the bare clone is named - linux-yocto-3.10.git, while the - copy is named my-linux-yocto-3.10-work: + linux-yocto-3.19.git, while the + copy is named my-linux-yocto-3.19-work: - $ git clone --bare git://git.yoctoproject.org/linux-yocto-3.10 linux-yocto-3.10.git - Cloning into bare repository 'linux-yocto-3.10.git'... - remote: Counting objects: 3364487, done. - remote: Compressing objects: 100% (507178/507178), done. - remote: Total 3364487 (delta 2827715), reused 3364481 (delta 2827709) - Receiving objects: 100% (3364487/3364487), 722.95 MiB | 423 KiB/s, done. - Resolving deltas: 100% (2827715/2827715), done. + $ git clone --bare git://git.yoctoproject.org/linux-yocto-3.19 linux-yocto-3.19.git + Cloning into bare repository 'linux-yocto-3.19.git'... + remote: Counting objects: 3983256, done. + remote: Compressing objects: 100% (605006/605006), done. + remote: Total 3983256 (delta 3352832), reused 3974503 (delta 3344079) + Receiving objects: 100% (3983256/3983256), 843.66 MiB | 1.07 MiB/s, done. + Resolving deltas: 100% (3352832/3352832), done. + Checking connectivity... done. Now create a clone of the bare clone just created: - $ git clone linux-yocto-3.10.git my-linux-yocto-3.10-work - Cloning into 'my-linux-yocto-3.10-work'... + $ git clone linux-yocto-3.19.git my-linux-yocto-3.19-work + Cloning into 'my-linux-yocto-3.19-work'... done. + Checking out files: 100% (48440/48440), done. The meta-yocto-kernel-extras Git Repository: