summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSandeep Gundlupet Raju <sandeep.gundlupet-raju@amd.com>2024-04-30 10:49:04 -0600
committerMark Hatle <mark.hatle@amd.com>2024-05-01 17:28:22 -0500
commit44c9aa5ef0b36494ce7d3853007ddc277e223f53 (patch)
tree808bb16b543c3554d4cb238c284a7ac62ba27e88
parenta3eee586ba5cc9528eecc7da2ac4ccc5e6d2324e (diff)
downloadmeta-xilinx-44c9aa5ef0b36494ce7d3853007ddc277e223f53.tar.gz
README.building.md: Make gen-machine-conf clone as default step
Make gen-machine-conf clone as default step as this is required for SDT builds. Signed-off-by: Sandeep Gundlupet Raju <sandeep.gundlupet-raju@amd.com> Signed-off-by: Mark Hatle <mark.hatle@amd.com>
-rw-r--r--README.building.md14
1 files changed, 7 insertions, 7 deletions
diff --git a/README.building.md b/README.building.md
index 28ba1b24..456aa634 100644
--- a/README.building.md
+++ b/README.building.md
@@ -23,15 +23,15 @@ $ mkdir sources
23$ git clone -b <release-branch> https://git.yoctoproject.org/poky.git 23$ git clone -b <release-branch> https://git.yoctoproject.org/poky.git
24$ git clone -b <release-branch> https://git.openembedded.org/meta-openembedded.git 24$ git clone -b <release-branch> https://git.openembedded.org/meta-openembedded.git
25$ git clone -b <release-branch> https://git.yoctoproject.org/git/meta-virtualization 25$ git clone -b <release-branch> https://git.yoctoproject.org/git/meta-virtualization
26$ git clone -b <rel-version> https://github.com/Xilinx/meta-xilinx.git 26$ git clone -b <rel-version> https://github.com/Xilinx/meta-xilinx.git --recurse-submodules
27$ git clone -b <rel-version> https://github.com/Xilinx/meta-xilinx-tools.git 27$ git clone -b <rel-version> https://github.com/Xilinx/meta-xilinx-tools.git
28``` 28```
29> **Note:** When meta-xilinx layer is cloned using git tool by default it will 29> **Note:**
30> not clone [gen-machine-conf](https://github.com/Xilinx/gen-machine-conf.git) 30> * When meta-xilinx layer is cloned using git tool by default it will clone
31> repo as submodules, make sure this repo https://github.com/Xilinx/meta-xilinx.git 31> [gen-machine-conf](https://github.com/Xilinx/gen-machine-conf.git) repo as
32> is cloned using `--recurse-submodules` option as shown. 32> submodules, If you don't need to clone gen-machine-conf repo then remove
33> `$ git clone -b <rel-version> https://github.com/Xilinx/meta-xilinx.git --recurse-submodules` 33> `--recurse-submodules` option.
34> Skip this step if you are using yocto-manifests https://github.com/Xilinx/yocto-manifests 34> * Skip this step if you are using yocto-manifests https://github.com/Xilinx/yocto-manifests
35 35
363. Initialize a build environment using the `oe-init-build-env` script. 363. Initialize a build environment using the `oe-init-build-env` script.
37``` 37```