Fixed quote errors in echo expressions 75/27575/2
authoramanarora9848 <aman.arora9848@gmail.com>
Tue, 31 May 2022 17:42:54 +0000 (23:12 +0530)
committerJan-Simon Moeller <jsmoeller@linuxfoundation.org>
Tue, 31 May 2022 21:37:07 +0000 (21:37 +0000)
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 <aman.arora9848@gmail.com>
Change-Id: I18543d001e5da6fbdcf11d72236122c7e6ffdac1
Reviewed-on: https://gerrit.automotivelinux.org/gerrit/c/AGL/documentation/+/27575
Reviewed-by: Jan-Simon Moeller <jsmoeller@linuxfoundation.org>
Tested-by: Jan-Simon Moeller <jsmoeller@linuxfoundation.org>
docs/0_Getting_Started/2_Building_AGL_Image/4_Customizing_Your_Build.md
docs/0_Getting_Started/2_Building_AGL_Image/5_1_x86_Emulation_and_Hardware.md
docs/0_Getting_Started/2_Building_AGL_Image/5_2_Raspberry_Pi_4.md
docs/0_Getting_Started/2_Building_AGL_Image/5_3_RCar_Gen_3.md

index d1d4101..1c30ddd 100644 (file)
@@ -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/
 
index 7282f66..871179f 100644 (file)
@@ -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/
 ```
 
index 736666b..e08a51e 100644 (file)
@@ -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/
   ```
 
index b7f6cd0..33fc50a 100644 (file)
@@ -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/
 ```