diff options
author | Anuj-S62 <anuj603362@gmail.com> | 2023-04-10 10:25:11 +0530 |
---|---|---|
committer | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2023-04-13 16:14:55 +0000 |
commit | 56ef0a2b10f85ddaba4fe142d9e8814d53eabc6a (patch) | |
tree | c15eef98970c4acb78c5ff5c16bd66b405ce964c | |
parent | 0d62c15a448b41b6b592d323800f434ea12b018f (diff) |
IVI Flutter apps: correct build directory path
Changed build-flutter-dashboard directory path
Bug-AGL: SPEC-4752
Signed-off-by: Anuj Solanki <anuj603362@gmail.com>
Change-Id: Ie9325b325378b5cec3527fab179e536012008a69
Reviewed-on: https://gerrit.automotivelinux.org/gerrit/c/AGL/documentation/+/28629
Reviewed-by: Jan-Simon Moeller <jsmoeller@linuxfoundation.org>
Tested-by: Jan-Simon Moeller <jsmoeller@linuxfoundation.org>
-rw-r--r-- | docs/01_Getting_Started/03_Build_and_Boot_guide_Profile/03_IVI_Flutter_apps.md | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/01_Getting_Started/03_Build_and_Boot_guide_Profile/03_IVI_Flutter_apps.md b/docs/01_Getting_Started/03_Build_and_Boot_guide_Profile/03_IVI_Flutter_apps.md index ddce79d..6055436 100644 --- a/docs/01_Getting_Started/03_Build_and_Boot_guide_Profile/03_IVI_Flutter_apps.md +++ b/docs/01_Getting_Started/03_Build_and_Boot_guide_Profile/03_IVI_Flutter_apps.md @@ -45,8 +45,8 @@ $ $AGL_TOP/master/meta-agl/scripts/aglsetup.sh Run the script: ```bash -$ cd $AGL_TOP -$ source master/meta-agl/scripts/aglsetup.sh -b build-flutter-dashboard -m qemux86-64 agl-demo agl-devel +$ cd $AGL_TOP/master +$ source meta-agl/scripts/aglsetup.sh -b build-flutter-dashboard -m qemux86-64 agl-demo agl-devel ``` - Here `-b` is used to specify the build directory and `-m` is used to specify the target platform. @@ -57,7 +57,7 @@ $ source master/meta-agl/scripts/aglsetup.sh -b build-flutter-dashboard -m qemux ## 5. Using BitBake ```bash -$ cd $AGL_TOP/build-flutter-dashboard +$ cd $AGL_TOP/master/build-flutter-dashboard $ source agl-init-build-env $ bitbake agl-ivi-demo-platform-flutter ``` @@ -66,7 +66,7 @@ $ bitbake agl-ivi-demo-platform-flutter Boot the image using QEMU ```bash -$ cd $AGL_TOP/build-flutter-dashboard +$ cd $AGL_TOP/master/build-flutter-dashboard $ source agl-init-build-env $ runqemu kvm serialstdio slirp publicvnc ``` |