conf/local.conf.sample: fix typos/grammar/formatting

(From OE-Core rev: 6f81b3695f6f1e19906e6173c6c7e3ee4f86a11b)

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Paul Eggleton 2012-01-05 09:18:06 +00:00 committed by Richard Purdie
parent 22106230a8
commit a6e61c02a7
1 changed files with 18 additions and 17 deletions

View File

@ -4,7 +4,7 @@
# to the system might want to change but pretty much any configuration option can # to the system might want to change but pretty much any configuration option can
# be set in this file. More adventurous users can look at local.conf.extended # be set in this file. More adventurous users can look at local.conf.extended
# which contains other examples of configuration which can be placed in this file # which contains other examples of configuration which can be placed in this file
# but new users likely don't need any of them initially. # but new users likely won't need any of them initially.
# #
# Lines starting with the '#' character are commented out and in some cases the # Lines starting with the '#' character are commented out and in some cases the
# default values are provided as comments to show people example syntax. Enabling # default values are provided as comments to show people example syntax. Enabling
@ -22,16 +22,16 @@
# The second option controls how many processes make should run in parallel when # The second option controls how many processes make should run in parallel when
# running compile tasks: # running compile tasks:
# #
# PARALLEL_MAKE = "-j 4" #PARALLEL_MAKE = "-j 4"
# #
# For a quadcore, BB_NUMBER_THREADS = "4", PARALLEL_MAKE = "-j 4" would # For a quad-core machine, BB_NUMBER_THREADS = "4", PARALLEL_MAKE = "-j 4" would
# be appropriate for example. # be appropriate for example.
# #
# Machine Selection # Machine Selection
# #
# You need to select a specific machine to target the build with. There are a selection # You need to select a specific machine to target the build with. There are a selection
# emulated machines available which can boot and run in the QEMU emulator: # of emulated machines available which can boot and run in the QEMU emulator:
# #
#MACHINE ?= "qemuarm" #MACHINE ?= "qemuarm"
#MACHINE ?= "qemumips" #MACHINE ?= "qemumips"
@ -67,7 +67,7 @@ MACHINE ??= "qemux86"
# Where to place shared-state files # Where to place shared-state files
# #
# BitBake has the capability to accelerate builds based on previously built output. # BitBake has the capability to accelerate builds based on previously built output.
# This is done using "shared state" files which can be through of as cache objects # This is done using "shared state" files which can be thought of as cache objects
# and this option determines where those files are placed. # and this option determines where those files are placed.
# #
# You can wipe out TMPDIR leaving this directory intact and the build would regenerate # You can wipe out TMPDIR leaving this directory intact and the build would regenerate
@ -143,10 +143,10 @@ PACKAGE_CLASSES ?= "package_rpm"
# "tools-debug" - add debugging tools (gdb, strace) # "tools-debug" - add debugging tools (gdb, strace)
# "tools-profile" - add profiling tools (oprofile, exmap, lttng valgrind (x86 only)) # "tools-profile" - add profiling tools (oprofile, exmap, lttng valgrind (x86 only))
# "tools-testapps" - add useful testing tools (ts_print, aplay, arecord etc.) # "tools-testapps" - add useful testing tools (ts_print, aplay, arecord etc.)
# "debug-tweaks" - make an image for suitable of development # "debug-tweaks" - make an image suitable for development
# e.g. ssh root access has a blank password # e.g. ssh root access has a blank password
# There are other application targets that can be uses here too, see # There are other application targets that can be used here too, see
# meta/classes/core-image.bbclass and meta/recipes-core/tasks/task-core.bb for more details. # meta/classes/image.bbclass and meta/classes/core-image.bbclass for more details.
# We default to enabling the debugging tweaks. # We default to enabling the debugging tweaks.
EXTRA_IMAGE_FEATURES = "debug-tweaks" EXTRA_IMAGE_FEATURES = "debug-tweaks"
@ -173,16 +173,17 @@ USER_CLASSES ?= "buildstats image-mklibs image-prelink"
#IMAGETEST = "qemu" #IMAGETEST = "qemu"
# #
# This variable controls which tests are run against virtual images if enabled # This variable controls which tests are run against virtual images if enabled
# above. The following would enable bat, oot test case under sanity suite and # above. The following would enable bat, boot the test case under the sanity suite
# toolchain tests # and perform toolchain tests
#TEST_SCEN = "sanity bat sanity:boot toolchain" #TEST_SCEN = "sanity bat sanity:boot toolchain"
# #
# Because of the QEMU booting slowness issue(see bug #646 and #618), autobuilder # Because of the QEMU booting slowness issue (see bug #646 and #618), the
# may suffer a timeout issue when running sanity test. We introduce variable # autobuilder may suffer a timeout issue when running sanity tests. We introduce
# TEST_SERIALIZE here to reduce the time on sanity test. It is by default set # the variable TEST_SERIALIZE here to reduce the time taken by the sanity tests.
# to 1. This will start image and run cases in the same image without reboot # It is set to 1 by default, which will boot the image and run cases in the same
# or kill. If it is set to 0, the image will be copied and tested for each # image without rebooting or killing the machine instance. If it is set to 0, the
# case, which will take longer but be more precise. # image will be copied and tested for each case, which will take longer but be
# more precise.
#TEST_SERIALIZE = "1" #TEST_SERIALIZE = "1"
# #
@ -197,7 +198,7 @@ USER_CLASSES ?= "buildstats image-mklibs image-prelink"
# Examples of the occasions this may happen are when resolving patches which cannot # Examples of the occasions this may happen are when resolving patches which cannot
# be applied, to use the devshell or the kernel menuconfig # be applied, to use the devshell or the kernel menuconfig
# #
# Supported values are auto, gnome, xfce, rxvt, xcreen, konsole (3.x only), none # Supported values are auto, gnome, xfce, rxvt, screen, konsole (KDE 3.x only), none
# Note: currently, Konsole support only works for KDE 3.x due to the way # Note: currently, Konsole support only works for KDE 3.x due to the way
# newer Konsole versions behave # newer Konsole versions behave
#OE_TERMINAL = "auto" #OE_TERMINAL = "auto"