Unterschiede

Hier werden die Unterschiede zwischen zwei Versionen angezeigt.

Link zu dieser Vergleichsansicht

Nächste Überarbeitung
Vorhergehende Überarbeitung
Letzte ÜberarbeitungBeide Seiten der Revision
software:linux:yocto:kernel [2020-05-27 10:57] – angelegt mlammerichsoftware:linux:yocto:kernel [2020-05-27 11:23] mlammerich
Zeile 58: Zeile 58:
 The kernel can now be set as ''PREFERRED_PROVIDER_virtual/kernel''. The kernel can now be set as ''PREFERRED_PROVIDER_virtual/kernel''.
  
-===== Working with the Kernel ====+===== Working with the Kernel =====
  
 Here are some common operations when dealing with the kernel: Here are some common operations when dealing with the kernel:
Zeile 64: Zeile 64:
 ^ command ^ description | ^ command ^ description |
 | bitbake virtual/kernel -c unpack | unpack kernel | | bitbake virtual/kernel -c unpack | unpack kernel |
-| bitbake virtual/kernel -c patch | patch kernel |+| bitbake virtual/kernel -c patch | apply patches (if any) |
 | bitbake virtual/kernel -c compile | build kernel | | bitbake virtual/kernel -c compile | build kernel |
 | bitbake virtual/kernel -c menuconfig | menuconfig, like ''make menuconfig'' | | bitbake virtual/kernel -c menuconfig | menuconfig, like ''make menuconfig'' |
 +| bitbake virtual/kernel -c clean | clean kernel package, like ''make clean'' |
 | bitbake virtual/kernel | build and install kernel package | | bitbake virtual/kernel | build and install kernel package |
  
 Note that bitbake will also run all commands that need to be run to execute the specified command. Note that bitbake will also run all commands that need to be run to execute the specified command.
 For example, ''compile'' will also cause ''unpack'' and ''patch'' to be run, since these need to happen before the build. For example, ''compile'' will also cause ''unpack'' and ''patch'' to be run, since these need to happen before the build.
-