From 9addcf5ccbd96eb791c333c53dcb8ccab593b64c Mon Sep 17 00:00:00 2001 From: Scott Rifenbark Date: Thu, 7 Nov 2013 14:23:56 -0800 Subject: documentation: Scrubbed use of directory names There was inconsistent use of the way directory names were handled throughout the YP documentation. I have scrubbed the set and replaced many instances such as the following: meta/ replaces /meta/ poky replaces ~/poky (except in some very specific examples) I basically got rid of leading slash characters. Reported-by: Robert P. J. Day (From yocto-docs rev: 12a96db6dffe09fca7ce848e006c591a637be5a4) Signed-off-by: Scott Rifenbark Signed-off-by: Richard Purdie --- documentation/adt-manual/adt-prepare.xml | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'documentation/adt-manual') diff --git a/documentation/adt-manual/adt-prepare.xml b/documentation/adt-manual/adt-prepare.xml index 02416b3cda..df9d5b0f76 100644 --- a/documentation/adt-manual/adt-prepare.xml +++ b/documentation/adt-manual/adt-prepare.xml @@ -106,7 +106,7 @@ build environment while also creating the default Build Directory, and run the BitBake command that results in the tarball - ~/yocto-project/build/tmp/deploy/sdk/adt_installer.tar.bz2: + poky/build/tmp/deploy/sdk/adt_installer.tar.bz2: Before using BitBake to build the ADT tarball, be sure to make sure your @@ -136,7 +136,7 @@ a top-level directory named adt-installer: $ cd ~ - $ cp ~/poky/build/tmp/deploy/sdk/adt_installer.tar.bz2 $HOME + $ cp poky/build/tmp/deploy/sdk/adt_installer.tar.bz2 $HOME $ tar -xjf adt_installer.tar.bz2 Unpacking it creates the directory adt-installer, @@ -206,7 +206,7 @@ When you run the installer, the environment must use a host gcc: - $ cd ~/adt-installer + $ cd adt-installer $ ./adt_installer Once the installer begins to run, you are asked to enter the @@ -303,7 +303,7 @@ The first thing the installer prompts you for is the directory into which you want to install the toolchain. The default directory used is - opt/poky/&DISTRO;. + /opt/poky/&DISTRO;. If you do not have write permissions for the directory into which you are installing the toolchain, the toolchain installer notifies you and exits. @@ -545,7 +545,7 @@ the toolchain environment script in the tmp directory. If you installed the toolchain by hand, the environment setup - script is located in opt/poky/&DISTRO;. + script is located in /opt/poky/&DISTRO;. @@ -563,16 +563,16 @@ built filesystem that is located in the ~/Downloads directory. Furthermore, this command extracts the root filesystem into the - $HOME/qemux86-sato directory: + qemux86-sato directory: $ cd ~ $ source /opt/poky/&DISTRO;/environment-setup-i586-poky-linux $ runqemu-extract-sdk \ - ~Downloads/core-image-sato-sdk-qemux86-2011091411831.rootfs.tar.bz2 \ + ~/Downloads/core-image-sato-sdk-qemux86-2011091411831.rootfs.tar.bz2 \ $HOME/qemux86-sato You could now point to the target sysroot at - $HOME/qemux86-sato. + qemux86-sato. @@ -625,13 +625,13 @@ By default, this toolchain does not build static binaries. If you want to use the toolchain to build these types of libraries, - you need to be sure your image has the appropriate static + you need to be sure your image has the appropriate static development libraries. - Use the + Use the IMAGE_INSTALL variable inside your local.conf file to install the appropriate library packages. - Following is an example using eglibc static + Following is an example using eglibc static development libraries: IMAGE_INSTALL_append = " eglibc-staticdev" -- cgit v1.2.3-54-g00ecf