summaryrefslogtreecommitdiffstats
path: root/documentation
diff options
context:
space:
mode:
authorScott Rifenbark <srifenbark@gmail.com>2019-06-25 15:04:30 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-07-18 12:17:05 +0100
commitebfe32a4740d67d7a39224e631086032c0ea0fcd (patch)
tree583ba923ee2f3e8d0d1626863c9f301f2dc7c39a /documentation
parent90d98a4c9de381f6258b0b2198faf30d3dceb7f0 (diff)
downloadpoky-ebfe32a4740d67d7a39224e631086032c0ea0fcd.tar.gz
bsp.xml: Updated some output examples and the BSP structure
I ran fresh commands for several output examples where repositories are cloned. I also dumped the really detailed listing of the Raspberry Pi BSP. Rather, I provided a link to the layer itself and sent the reader there to do their own exploring. (From yocto-docs rev: d6976296f237420cae7c9f157a4e3a868b0ac588) Signed-off-by: Scott Rifenbark <srifenbark@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation')
-rw-r--r--documentation/bsp-guide/bsp.xml188
1 files changed, 19 insertions, 169 deletions
diff --git a/documentation/bsp-guide/bsp.xml b/documentation/bsp-guide/bsp.xml
index 0bb0b68ab2..c3a6fac9ea 100644
--- a/documentation/bsp-guide/bsp.xml
+++ b/documentation/bsp-guide/bsp.xml
@@ -243,11 +243,11 @@
243 <literallayout class='monospaced'> 243 <literallayout class='monospaced'>
244 $ git clone git://git.yoctoproject.org/meta-intel.git 244 $ git clone git://git.yoctoproject.org/meta-intel.git
245 Cloning into 'meta-intel'... 245 Cloning into 'meta-intel'...
246 remote: Counting objects: 15585, done. 246 remote: Counting objects: 17179, done.
247 remote: Compressing objects: 100% (5056/5056), done. 247 remote: Compressing objects: 100% (5307/5307), done.
248 remote: Total 15585 (delta 9123), reused 15329 (delta 8867) 248 remote: Total 17179 (delta 10209), reused 17139 (delta 10169)
249 Receiving objects: 100% (15585/15585), 4.51 MiB | 3.19 MiB/s, done. 249 Receiving objects: 100% (17179/17179), 4.76 MiB | 4.39 MiB/s, done.
250 Resolving deltas: 100% (9123/9123), done. 250 Resolving deltas: 100% (10209/10209), done.
251 Checking connectivity... done. 251 Checking connectivity... done.
252 </literallayout> 252 </literallayout>
253 </para></listitem> 253 </para></listitem>
@@ -289,13 +289,12 @@
289 <literallayout class='monospaced'> 289 <literallayout class='monospaced'>
290 $ git clone git://git.yoctoproject.org/meta-raspberrypi 290 $ git clone git://git.yoctoproject.org/meta-raspberrypi
291 Cloning into 'meta-raspberrypi'... 291 Cloning into 'meta-raspberrypi'...
292 remote: Counting objects: 4743, done. 292 remote: Counting objects: 6205, done.
293 remote: Compressing objects: 100% (2185/2185), done. 293 remote: Compressing objects: 100% (2700/2700), done.
294 remote: Total 4743 (delta 2447), reused 4496 (delta 2258) 294 remote: Total 6205 (delta 3342), reused 5916 (delta 3146)
295 Receiving objects: 100% (4743/4743), 1.18 MiB | 0 bytes/s, done. 295 Receiving objects: 100% (6205/6205), 1.43 MiB | 0 bytes/s, done.
296 Resolving deltas: 100% (2447/2447), done. 296 Resolving deltas: 100% (3342/3342), done.
297 Checking connectivity... done. 297 Checking connectivity... done. </literallayout>
298 </literallayout>
299 </para></listitem> 298 </para></listitem>
300 <listitem><para> 299 <listitem><para>
301 <emphasis>Initialize the Build Environment:</emphasis> 300 <emphasis>Initialize the Build Environment:</emphasis>
@@ -392,164 +391,15 @@
392 </para> 391 </para>
393 392
394 <para> 393 <para>
395 Below is an example of the Raspberry Pi BSP 394 You can examine the Raspberry Pi BSP
396 layer that is available from the 395 layer that is available from the
397 <ulink url='&YOCTO_GIT_URL;'>Source Respositories</ulink>: 396 <ulink url='&YOCTO_GIT_URL;'>Source Repositories</ulink> by
398 <literallayout class='monospaced'> 397 following this link:
399 meta-raspberrypi/COPYING.MIT 398 <ulink url='https://git.yoctoproject.org/cgit/cgit.cgi/meta-raspberrypi/tree/?h=&DISTRO_NAME_NO_CAP;'></ulink>.
400 meta-raspberrypi/README.md 399 Following the link puts you in the Source Repositories and the
401 meta-raspberrypi/classes 400 Raspberry Pi BSP layer for the "&DISTRO_NAME_NO_CAP;" release.
402 meta-raspberrypi/classes/sdcard_image-rpi.bbclass 401 You can use the interface to explore the configuration, docs, and
403 meta-raspberrypi/conf/ 402 recipe files.
404 meta-raspberrypi/conf/layer.conf
405 meta-raspberrypi/conf/machine/
406 meta-raspberrypi/conf/machine/raspberrypi-cm.conf
407 meta-raspberrypi/conf/machine/raspberrypi-cm3.conf
408 meta-raspberrypi/conf/machine/raspberrypi.conf
409 meta-raspberrypi/conf/machine/raspberrypi0-wifi.conf
410 meta-raspberrypi/conf/machine/raspberrypi0.conf
411 meta-raspberrypi/conf/machine/raspberrypi2.conf
412 meta-raspberrypi/conf/machine/raspberrypi3-64.conf
413 meta-raspberrypi/conf/machine/raspberrypi3.conf
414 meta-raspberrypi/conf/machine/include
415 meta-raspberrypi/conf/machine/include/rpi-base.inc
416 meta-raspberrypi/conf/machine/include/rpi-default-providers.inc
417 meta-raspberrypi/conf/machine/include/rpi-default-settings.inc
418 meta-raspberrypi/conf/machine/include/rpi-default-versions.inc
419 meta-raspberrypi/conf/machine/include/tune-arm1176jzf-s.inc
420 meta-raspberrypi/docs
421 meta-raspberrypi/docs/Makefile
422 meta-raspberrypi/docs/conf.py
423 meta-raspberrypi/docs/contributing.md
424 meta-raspberrypi/docs/extra-apps.md
425 meta-raspberrypi/docs/extra-build-config.md
426 meta-raspberrypi/docs/index.rst
427 meta-raspberrypi/docs/layer-contents.md
428 meta-raspberrypi/docs/readme.md
429 meta-raspberrypi/files
430 meta-raspberrypi/files/custom-licenses
431 meta-raspberrypi/files/custom-licenses/Broadcom
432 meta-raspberrypi/recipes-bsp
433 meta-raspberrypi/recipes-bsp/bootfiles
434 meta-raspberrypi/recipes-bsp/bootfiles/bcm2835-bootfiles.bb
435 meta-raspberrypi/recipes-bsp/bootfiles/rpi-config_git.bb
436 meta-raspberrypi/recipes-bsp/common
437 meta-raspberrypi/recipes-bsp/common/firmware.inc
438 meta-raspberrypi/recipes-bsp/formfactor
439 meta-raspberrypi/recipes-bsp/formfactor/formfactor
440 meta-raspberrypi/recipes-bsp/formfactor/formfactor/raspberrypi
441 meta-raspberrypi/recipes-bsp/formfactor/formfactor/raspberrypi/machconfig
442 meta-raspberrypi/recipes-bsp/formfactor/formfactor_0.0.bbappend
443 meta-raspberrypi/recipes-bsp/rpi-u-boot-src
444 meta-raspberrypi/recipes-bsp/rpi-u-boot-src/files
445 meta-raspberrypi/recipes-bsp/rpi-u-boot-src/files/boot.cmd.in
446 meta-raspberrypi/recipes-bsp/rpi-u-boot-src/rpi-u-boot-scr.bb
447 meta-raspberrypi/recipes-bsp/u-boot
448 meta-raspberrypi/recipes-bsp/u-boot/u-boot
449 meta-raspberrypi/recipes-bsp/u-boot/u-boot/*.patch
450 meta-raspberrypi/recipes-bsp/u-boot/u-boot_%.bbappend
451 meta-raspberrypi/recipes-connectivity
452 meta-raspberrypi/recipes-connectivity/bluez5
453 meta-raspberrypi/recipes-connectivity/bluez5/bluez5
454 meta-raspberrypi/recipes-connectivity/bluez5/bluez5/*.patch
455 meta-raspberrypi/recipes-connectivity/bluez5/bluez5/BCM43430A1.hcd
456 meta-raspberrypi/recipes-connectivity/bluez5/bluez5brcm43438.service
457 meta-raspberrypi/recipes-connectivity/bluez5/bluez5_%.bbappend
458 meta-raspberrypi/recipes-core
459 meta-raspberrypi/recipes-core/images
460 meta-raspberrypi/recipes-core/images/rpi-basic-image.bb
461 meta-raspberrypi/recipes-core/images/rpi-hwup-image.bb
462 meta-raspberrypi/recipes-core/images/rpi-test-image.bb
463 meta-raspberrypi/recipes-core/packagegroups
464 meta-raspberrypi/recipes-core/packagegroups/packagegroup-rpi-test.bb
465 meta-raspberrypi/recipes-core/psplash
466 meta-raspberrypi/recipes-core/psplash/files
467 meta-raspberrypi/recipes-core/psplash/files/psplash-raspberrypi-img.h
468 meta-raspberrypi/recipes-core/psplash/psplash_git.bbappend
469 meta-raspberrypi/recipes-core/udev
470 meta-raspberrypi/recipes-core/udev/udev-rules-rpi
471 meta-raspberrypi/recipes-core/udev/udev-rules-rpi/99-com.rules
472 meta-raspberrypi/recipes-core/udev/udev-rules-rpi.bb
473 meta-raspberrypi/recipes-devtools
474 meta-raspberrypi/recipes-devtools/bcm2835
475 meta-raspberrypi/recipes-devtools/bcm2835/bcm2835_1.52.bb
476 meta-raspberrypi/recipes-devtools/pi-blaster
477 meta-raspberrypi/recipes-devtools/pi-blaster/files
478 meta-raspberrypi/recipes-devtools/pi-blaster/files/*.patch
479 meta-raspberrypi/recipes-devtools/pi-blaster/pi-blaster_git.bb
480 meta-raspberrypi/recipes-devtools/python
481 meta-raspberrypi/recipes-devtools/python/python-rtimu
482 meta-raspberrypi/recipes-devtools/python/python-rtimu/*.patch
483 meta-raspberrypi/recipes-devtools/python/python-rtimu_git.bb
484 meta-raspberrypi/recipes-devtools/python/python-sense-hat_2.2.0.bb
485 meta-raspberrypi/recipes-devtools/python/rpi-gpio
486 meta-raspberrypi/recipes-devtools/python/rpi-gpio/*.patch
487 meta-raspberrypi/recipes-devtools/python/rpi-gpio_0.6.3.bb
488 meta-raspberrypi/recipes-devtools/python/rpio
489 meta-raspberrypi/recipes-devtools/python/rpio/*.patch
490 meta-raspberrypi/recipes-devtools/python/rpio_0.10.0.bb
491 meta-raspberrypi/recipes-devtools/wiringPi
492 meta-raspberrypi/recipes-devtools/wiringPi/files
493 meta-raspberrypi/recipes-devtools/wiringPi/files/*.patch
494 meta-raspberrypi/recipes-devtools/wiringPi/wiringpi_git.bb
495 meta-raspberrypi/recipes-graphics
496 meta-raspberrypi/recipes-graphics/eglinfo
497 meta-raspberrypi/recipes-graphics/eglinfo/eglinfo-fb_%.bbappend
498 meta-raspberrypi/recipes-graphics/eglinfo/eglinfo-x11_%.bbappend
499 meta-raspberrypi/recipes-graphics/mesa
500 meta-raspberrypi/recipes-graphics/mesa/mesa-gl_%.bbappend
501 meta-raspberrypi/recipes-graphics/mesa/mesa_%.bbappend
502 meta-raspberrypi/recipes-graphics/userland
503 meta-raspberrypi/recipes-graphics/userland/userland
504 meta-raspberrypi/recipes-graphics/userland/userland/*.patch
505 meta-raspberrypi/recipes-graphics/userland/userland_git.bb
506 meta-raspberrypi/recipes-graphics/vc-graphics
507 meta-raspberrypi/recipes-graphics/vc-graphics/files
508 meta-raspberrypi/recipes-graphics/vc-graphics/files/egl.pc
509 meta-raspberrypi/recipes-graphics/vc-graphics/files/vchiq.sh
510 meta-raspberrypi/recipes-graphics/vc-graphics/vc-graphics-hardfp.bb
511 meta-raspberrypi/recipes-graphics/vc-graphics/vc-graphics.bb
512 meta-raspberrypi/recipes-graphics/vc-graphics/vc-graphics.inc
513 meta-raspberrypi/recipes-graphics/wayland
514 meta-raspberrypi/recipes-graphics/wayland/weston_%.bbappend
515 meta-raspberrypi/recipes-graphics/xorg-xserver
516 meta-raspberrypi/recipes-graphics/xorg-xserver/xserver-xf86-config
517 meta-raspberrypi/recipes-graphics/xorg-xserver/xserver-xf86-config/rpi
518 meta-raspberrypi/recipes-graphics/xorg-xserver/xserver-xf86-config/rpi/xorg.conf
519 meta-raspberrypi/recipes-graphics/xorg-xserver/xserver-xf86-config/rpi/xorg.conf.d
520 meta-raspberrypi/recipes-graphics/xorg-xserver/xserver-xf86-config/rpi/xorg.conf.d/10-evdev.conf
521 meta-raspberrypi/recipes-graphics/xorg-xserver/xserver-xf86-config/rpi/xorg.conf.d/98-pitft.conf
522 meta-raspberrypi/recipes-graphics/xorg-xserver/xserver-xf86-config/rpi/xorg.conf.d/99-calibration.conf
523 meta-raspberrypi/recipes-graphics/xorg-xserver/xserver-xf86-config_0.1.bbappend
524 meta-raspberrypi/recipes-graphics/xorg-xserver/xserver-xorg_%.bbappend
525 meta-raspberrypi/recipes-kernel
526 meta-raspberrypi/recipes-kernel/linux-firmware
527 meta-raspberrypi/recipes-kernel/linux-firmware/files
528 meta-raspberrypi/recipes-kernel/linux-firmware/files/brcmfmac43430-sdio.bin
529 meta-raspberrypi/recipes-kernel/linux-firmware/files/brcfmac43430-sdio.txt
530 meta-raspberrypi/recipes-kernel/linux-firmware/linux-firmware_%.bbappend
531 meta-raspberrypi/recipes-kernel/linux
532 meta-raspberrypi/recipes-kernel/linux/linux-raspberrypi-dev.bb
533 meta-raspberrypi/recipes-kernel/linux/linux-raspberrypi.inc
534 meta-raspberrypi/recipes-kernel/linux/linux-raspberrypi_4.14.bb
535 meta-raspberrypi/recipes-kernel/linux/linux-raspberrypi_4.9.bb
536 meta-raspberrypi/recipes-multimedia
537 meta-raspberrypi/recipes-multimedia/gstreamer
538 meta-raspberrypi/recipes-multimedia/gstreamer/gstreamer1.0-omx
539 meta-raspberrypi/recipes-multimedia/gstreamer/gstreamer1.0-omx/*.patch
540 meta-raspberrypi/recipes-multimedia/gstreamer/gstreamer1.0-omx_%.bbappend
541 meta-raspberrypi/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad_%.bbappend
542 meta-raspberrypi/recipes-multimedia/gstreamer/gstreamer1.0-omx-1.12
543 meta-raspberrypi/recipes-multimedia/gstreamer/gstreamer1.0-omx-1.12/*.patch
544 meta-raspberrypi/recipes-multimedia/omxplayer
545 meta-raspberrypi/recipes-multimedia/omxplayer/omxplayer
546 meta-raspberrypi/recipes-multimedia/omxplayer/omxplayer/*.patch
547 meta-raspberrypi/recipes-multimedia/omxplayer/omxplayer_git.bb
548 meta-raspberrypi/recipes-multimedia/x264
549 meta-raspberrypi/recipes-multimedia/x264/x264_git.bbappend
550 meta-raspberrypi/wic
551 meta-raspberrypi/wic/sdimage-raspberrypi.wks
552 </literallayout>
553 </para> 403 </para>
554 404
555 <para> 405 <para>