bsp-guide: Updated the output examples for bsp tools.

The yocto-bsp and yocto-kernel tool output for the examples
were updated to be current.

(From yocto-docs rev: a05b1df35c7518027b1eb73f9ea2b6a3d00dca43)

Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Scott Rifenbark 2015-01-14 11:09:46 -08:00 committed by Richard Purdie
parent 7d480c304a
commit 2bf21c2235
1 changed files with 39 additions and 46 deletions

View File

@ -1252,12 +1252,12 @@
$ yocto-bsp list karch $ yocto-bsp list karch
Architectures available: Architectures available:
qemu qemu
mips64
powerpc
x86_64
arm arm
mips mips
x86_64
i386 i386
powerpc
mips64
</literallayout> </literallayout>
</para> </para>
@ -1291,7 +1291,6 @@
$ yocto-bsp create myarm qemu $ yocto-bsp create myarm qemu
Checking basic git connectivity... Checking basic git connectivity...
Done. Done.
Which qemu architecture would you like to use? [default: i386] Which qemu architecture would you like to use? [default: i386]
1) i386 (32-bit) 1) i386 (32-bit)
2) x86_64 (64-bit) 2) x86_64 (64-bit)
@ -1321,7 +1320,6 @@
Would you like SMP support? (y/n) [default: y] Would you like SMP support? (y/n) [default: y]
Does your BSP have a touchscreen? (y/n) [default: n] Does your BSP have a touchscreen? (y/n) [default: n]
Does your BSP have a keyboard? (y/n) [default: y] Does your BSP have a keyboard? (y/n) [default: y]
New qemu BSP created in meta-myarm New qemu BSP created in meta-myarm
</literallayout> </literallayout>
Take a closer look at the example now: Take a closer look at the example now:
@ -1409,13 +1407,10 @@
Recall that the easiest way to see exactly what sub-commands are available Recall that the easiest way to see exactly what sub-commands are available
is to use the <filename>yocto-kernel</filename> built-in help as follows: is to use the <filename>yocto-kernel</filename> built-in help as follows:
<literallayout class='monospaced'> <literallayout class='monospaced'>
$ yocto-kernel $ yocto-kernel --help
Usage: Usage:
Modify and list Yocto BSP kernel config items and patches. Modify and list Yocto BSP kernel config items and patches.
usage: yocto-kernel [--version] [--help] COMMAND [ARGS] usage: yocto-kernel [--version] [--help] COMMAND [ARGS]
Current 'yocto-kernel' commands are: Current 'yocto-kernel' commands are:
config list List the modifiable set of bare kernel config options for a BSP config list List the modifiable set of bare kernel config options for a BSP
config add Add or modify bare kernel config options for a BSP config add Add or modify bare kernel config options for a BSP
@ -1430,11 +1425,7 @@
feature describe Describe a particular feature feature describe Describe a particular feature
feature create Create a new BSP-local feature feature create Create a new BSP-local feature
feature destroy Remove a BSP-local feature feature destroy Remove a BSP-local feature
See 'yocto-kernel help COMMAND' for more information on a specific command. See 'yocto-kernel help COMMAND' for more information on a specific command.
Options: Options:
--version show program's version number and exit --version show program's version number and exit
-h, --help show this help message and exit -h, --help show this help message and exit
@ -1503,15 +1494,17 @@
<filename>myarm</filename> BSP: <filename>myarm</filename> BSP:
<literallayout class='monospaced'> <literallayout class='monospaced'>
$ yocto-kernel config add myarm CONFIG_MISC_DEVICES=y $ yocto-kernel config add myarm CONFIG_MISC_DEVICES=y
Added items: Added item:
CONFIG_MISC_DEVICES=y CONFIG_MISC_DEVICES=y
$ yocto-kernel config add myarm CONFIG_YOCTO_TESTMOD=y $ yocto-kernel config add myarm CONFIG_YOCTO_TESTMOD=y
Added items: Added item:
CONFIG_YOCTO_TESTMOD=y CONFIG_YOCTO_TESTMOD=y
</literallayout> </literallayout>
<note>Although the previous example adds config items one at a time, it is possible <note>
to add multiple config items at the same time.</note> Although the previous example adds config items one at a time, it is possible
to add multiple config items at the same time.
</note>
</para> </para>
<para> <para>