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:yocto-toradex [2021-03-03 11:43] – angelegt Moritz Lammerichsoftware:linux:yocto:yocto-toradex [2022-05-24 16:38] Moritz Lammerich
Zeile 31: Zeile 31:
 mkdir ${HOME}/oe-core mkdir ${HOME}/oe-core
 cd ${HOME}/oe-core cd ${HOME}/oe-core
-repo init -u https://git.toradex.com/toradex-manifest.git -b refs/tags/5.1.0 -m tdxref/default.xml+repo init -u https://git.toradex.com/toradex-manifest.git -b refs/tags/5.4.0 -m tdxref/default.xml
 repo sync repo sync
 </code> </code>
Zeile 41: Zeile 41:
 </code> </code>
  
-==== Adding the NTB layers ====+==== Adding the OST layers ====
  
-The NTB specific recipes are maintained in the [[ software:linux:yocto:meta-ntb | meta-ntb]] layer.+The OST specific recipes are maintained in the [[ software:linux:yocto:meta-ost | meta-ost]] layer.
  
 change into the ''layers'' directory: change into the ''layers'' directory:
Zeile 51: Zeile 51:
 </code> </code>
  
-clone the [[ https://github.com/zechenturm/meta-ntb | meta-ntb ]] repository:+clone the [[ https://gitlab.ost.ch/tech/inf/public/meta-ost | meta-ost repository ]]:
  
 <code> <code>
-git clone https://github.com/zechenturm/meta-ntb+git clone https://gitlab.ost.ch/tech/inf/public/meta-ost
 </code> </code>
  
Zeile 67: Zeile 67:
 BBLAYERS ?= " \ BBLAYERS ?= " \
 ... ...
-${TOPDIR}/../layers/meta-ntb/meta-ntb +${TOPDIR}/../layers/meta-ost/meta-ost 
-${TOPDIR}/../layers/meta-ntb/meta-ntb-toradex \+${TOPDIR}/../layers/meta-ost/meta-ost-toradex \
 " "
 </code> </code>
Zeile 78: Zeile 78:
 <code> <code>
 MACHINE = "cb20" MACHINE = "cb20"
 +DISTRO = "ost-devel"
 </code> </code>
  
 ==== build ==== ==== build ====
- 
-Production Image: 
- 
-<code> 
-bitbake ntb-image 
-</code> 
- 
-Development Image: 
- 
-To create a development image, add the following to ''local.conf''. 
- 
-<code> 
-NTB_DEVBUILD = "1" 
-</code> 
  
 Then build the image: Then build the image:
  
 <code> <code>
-bitbake ntb-image+bitbake ost-image
 </code> </code>