From b833306fa26009218ecc9d48114ec61707ddb9e1 Mon Sep 17 00:00:00 2001 From: amanarora9848 Date: Tue, 31 May 2022 23:12:54 +0530 Subject: [PATCH] Fixed quote errors in echo expressions Enclosed the echo expressions in double quotes (which previously had single quotes) for the following pages to prevent build errors: 1. Customizing Your Build 2. Building the AGL Image a. Building for x86 (Emulation and Hardware) b. Building for Raspberry Pi 4 c. Building for Supported Renesas Boards Signed-off-by: amanarora9848 Change-Id: I18543d001e5da6fbdcf11d72236122c7e6ffdac1 Reviewed-on: https://gerrit.automotivelinux.org/gerrit/c/AGL/documentation/+/27575 Reviewed-by: Jan-Simon Moeller Tested-by: Jan-Simon Moeller --- .../2_Building_AGL_Image/4_Customizing_Your_Build.md | 6 +++--- .../5_1_x86_Emulation_and_Hardware.md | 18 +++++++++--------- .../2_Building_AGL_Image/5_2_Raspberry_Pi_4.md | 12 ++++++------ .../2_Building_AGL_Image/5_3_RCar_Gen_3.md | 6 +++--- 4 files changed, 21 insertions(+), 21 deletions(-) diff --git a/docs/0_Getting_Started/2_Building_AGL_Image/4_Customizing_Your_Build.md b/docs/0_Getting_Started/2_Building_AGL_Image/4_Customizing_Your_Build.md index d1d4101..1c30ddd 100644 --- a/docs/0_Getting_Started/2_Building_AGL_Image/4_Customizing_Your_Build.md +++ b/docs/0_Getting_Started/2_Building_AGL_Image/4_Customizing_Your_Build.md @@ -138,9 +138,9 @@ section of the Yocto Project Reference Manual. ## Common Settings using Symbolic Link with site.conf ```sh -$ echo '# reuse download directories' >> $AGL_TOP/site.conf -$ echo 'DL_DIR = "$HOME/downloads/"' >> $AGL_TOP/site.conf -$ echo 'SSTATE_DIR = "$AGL_TOP/sstate-cache/"' >> $AGL_TOP/site.conf +$ echo "# reuse download directories" >> $AGL_TOP/site.conf +$ echo "DL_DIR = \"$HOME/downloads/\"" >> $AGL_TOP/site.conf +$ echo "SSTATE_DIR = \"$AGL_TOP/sstate-cache/\"" >> $AGL_TOP/site.conf $ cd $AGL_TOP/master/qemux86-64/ $ ln -sf $AGL_TOP/site.conf conf/ diff --git a/docs/0_Getting_Started/2_Building_AGL_Image/5_1_x86_Emulation_and_Hardware.md b/docs/0_Getting_Started/2_Building_AGL_Image/5_1_x86_Emulation_and_Hardware.md index 7282f66..871179f 100644 --- a/docs/0_Getting_Started/2_Building_AGL_Image/5_1_x86_Emulation_and_Hardware.md +++ b/docs/0_Getting_Started/2_Building_AGL_Image/5_1_x86_Emulation_and_Hardware.md @@ -22,9 +22,9 @@ specific options when you run the script: ```sh $ source meta-agl/scripts/aglsetup.sh -f -m qemux86-64 -b qemux86-64 agl-demo agl-devel -$ echo '# reuse download directories' >> $AGL_TOP/site.conf -$ echo 'DL_DIR = "$HOME/downloads/"' >> $AGL_TOP/site.conf -$ echo 'SSTATE_DIR = "$AGL_TOP/sstate-cache/"' >> $AGL_TOP/site.conf +$ echo "# reuse download directories" >> $AGL_TOP/site.conf +$ echo "DL_DIR = \"$HOME/downloads/\"" >> $AGL_TOP/site.conf +$ echo "SSTATE_DIR = \"$AGL_TOP/sstate-cache/\"" >> $AGL_TOP/site.conf $ ln -sf $AGL_TOP/site.conf conf/ ``` @@ -32,9 +32,9 @@ $ ln -sf $AGL_TOP/site.conf conf/ ```sh $ source meta-agl/scripts/aglsetup.sh -f -m qemux86-64 -b qemux86-64 agl-demo agl-devel agl-profile-graphical-html5 -$ echo '# reuse download directories' >> $AGL_TOP/site.conf -$ echo 'DL_DIR = "$HOME/downloads/"' >> $AGL_TOP/site.conf -$ echo 'SSTATE_DIR = "$AGL_TOP/sstate-cache/"' >> $AGL_TOP/site.conf +$ echo "# reuse download directories" >> $AGL_TOP/site.conf +$ echo "DL_DIR = \"$HOME/downloads/\"" >> $AGL_TOP/site.conf +$ echo "SSTATE_DIR = \"$AGL_TOP/sstate-cache/\"" >> $AGL_TOP/site.conf $ ln -sf $AGL_TOP/site.conf conf/ ``` @@ -42,9 +42,9 @@ $ ln -sf $AGL_TOP/site.conf conf/ ```sh $ source meta-agl/scripts/aglsetup.sh -f -m qemux86-64 -b qemux86-64 agl-flutter agl-devel -$ echo '# reuse download directories' >> $AGL_TOP/site.conf -$ echo 'DL_DIR = "$HOME/downloads/"' >> $AGL_TOP/site.conf -$ echo 'SSTATE_DIR = "$AGL_TOP/sstate-cache/"' >> $AGL_TOP/site.conf +$ echo "# reuse download directories" >> $AGL_TOP/site.conf +$ echo "DL_DIR = \"$HOME/downloads/\"" >> $AGL_TOP/site.conf +$ echo "SSTATE_DIR = \"$AGL_TOP/sstate-cache/\"" >> $AGL_TOP/site.conf $ ln -sf $AGL_TOP/site.conf conf/ ``` diff --git a/docs/0_Getting_Started/2_Building_AGL_Image/5_2_Raspberry_Pi_4.md b/docs/0_Getting_Started/2_Building_AGL_Image/5_2_Raspberry_Pi_4.md index 736666b..e08a51e 100644 --- a/docs/0_Getting_Started/2_Building_AGL_Image/5_2_Raspberry_Pi_4.md +++ b/docs/0_Getting_Started/2_Building_AGL_Image/5_2_Raspberry_Pi_4.md @@ -26,9 +26,9 @@ specific options when you run the script : ```sh $ source meta-agl/scripts/aglsetup.sh -f -m raspberrypi4 -b raspberrypi4 agl-demo agl-devel - $ echo '# reuse download directories' >> $AGL_TOP/site.conf - $ echo 'DL_DIR = "$HOME/downloads/"' >> $AGL_TOP/site.conf - $ echo 'SSTATE_DIR = "$AGL_TOP/sstate-cache/"' >> $AGL_TOP/site.conf + $ echo "# reuse download directories" >> $AGL_TOP/site.conf + $ echo "DL_DIR = \"$HOME/downloads/\"" >> $AGL_TOP/site.conf + $ echo "SSTATE_DIR = \"$AGL_TOP/sstate-cache/\"" >> $AGL_TOP/site.conf $ ln -sf $AGL_TOP/site.conf conf/ ``` @@ -36,9 +36,9 @@ specific options when you run the script : ```sh $ source meta-agl/scripts/aglsetup.sh -f -m raspberrypi4 -b raspberrypi4 agl-demo agl-devel agl-profile-graphical-html5 - $ echo '# reuse download directories' >> $AGL_TOP/site.conf - $ echo 'DL_DIR = "$HOME/downloads/"' >> $AGL_TOP/site.conf - $ echo 'SSTATE_DIR = "$AGL_TOP/sstate-cache/"' >> $AGL_TOP/site.conf + $ echo "# reuse download directories" >> $AGL_TOP/site.conf + $ echo "DL_DIR = \"$HOME/downloads/\"" >> $AGL_TOP/site.conf + $ echo "SSTATE_DIR = \"$AGL_TOP/sstate-cache/\"" >> $AGL_TOP/site.conf $ ln -sf $AGL_TOP/site.conf conf/ ``` diff --git a/docs/0_Getting_Started/2_Building_AGL_Image/5_3_RCar_Gen_3.md b/docs/0_Getting_Started/2_Building_AGL_Image/5_3_RCar_Gen_3.md index b7f6cd0..33fc50a 100644 --- a/docs/0_Getting_Started/2_Building_AGL_Image/5_3_RCar_Gen_3.md +++ b/docs/0_Getting_Started/2_Building_AGL_Image/5_3_RCar_Gen_3.md @@ -187,9 +187,9 @@ source meta-agl/scripts/aglsetup.sh -m $MACHINE -b build agl-devel agl-demo To avoid useless download and rebuild, it's important to set the variable DL_DIR and SSTATE_DIR in your configuration. ```sh -echo '# reuse download directories' >> $AGL_TOP/site.conf -echo 'DL_DIR = "$HOME/downloads/"' >> $AGL_TOP/site.conf -echo 'SSTATE_DIR = "$AGL_TOP/sstate-cache/"' >> $AGL_TOP/site.conf +echo "# reuse download directories" >> $AGL_TOP/site.conf +echo "DL_DIR = \"$HOME/downloads/\"" >> $AGL_TOP/site.conf +echo "SSTATE_DIR = \"$AGL_TOP/sstate-cache/\"" >> $AGL_TOP/site.conf ln -sf $AGL_TOP/site.conf conf/ ``` -- 2.16.6