diff options
author | Duy Dang <duy.dang.yw@rvc.renesas.com> | 2018-12-14 10:56:55 +0700 |
---|---|---|
committer | Duy Dang <duy.dang.yw@rvc.renesas.com> | 2018-12-20 13:09:09 +0700 |
commit | 8af0b7d6e445b532088a068dc012757001be3a1f (patch) | |
tree | d5f1597b4629d15da7cce10ccf77339173ae68c3 | |
parent | 8b7c97ad682a4662089e9d27fa1acb082545d0bb (diff) |
rcar-gen3: README: Add build requirementRenesas-Yocto-v3.15.0
This commit adds build requirement of git configuration
for user name and email to the README file.
Signed-off-by: Duy Dang <duy.dang.yw@rvc.renesas.com>
Signed-off-by: Takamitsu Honda <takamitsu.honda.pv@renesas.com>
-rw-r--r-- | meta-rcar-gen3/README.md | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/meta-rcar-gen3/README.md b/meta-rcar-gen3/README.md index 1f6d55b..83ec2be 100644 --- a/meta-rcar-gen3/README.md +++ b/meta-rcar-gen3/README.md @@ -33,6 +33,12 @@ This layer depends on: The following instructions require a Poky installation (or equivalent). +This also needs git user name and email defined: +```bash + $ git config --global user.email "you@example.com" + $ git config --global user.name "Your Name" +``` + Initialize a build using the 'oe-init-build-env' script in Poky. e.g.: ```bash $ source poky/oe-init-build-env |