Unterschiede

Hier werden die Unterschiede zwischen zwei Versionen angezeigt.

Link zu dieser Vergleichsansicht

Beide Seiten der vorigen RevisionVorhergehende Überarbeitung
software:linux:images:downloads [2023-05-04 17:13] Urs Grafsoftware:linux:images:downloads [2023-05-10 15:24] (aktuell) – gelöscht Urs Graf
Zeile 1: Zeile 1:
-====== Image Download ====== 
- 
-==== x86 & Beaglebone Blue ==== 
- 
-The images that are currently available for the [[ ..:yocto:bblue ]] and [[ ..:yocto:x86-rt ]] can be downloaded from the {{https://gitlab.ost.ch/tech/inf/public/yocto/meta-ost/-/packages | meta-ost Gitlab package registry}}. 
-Please note, that these images are built for development, see [[software:linux:yocto:meta-ost#ost-distro_vs_ost-devel_-_Development_vs_Production_Images|Development vs Production]]. For production images you have to built it with a full yocto installation or use the eSDK. 
- 
-==== Toradex ==== 
- 
-^ Hardware ^ Overview ^ Image ^ Cross Development SDK ^ Yocto Extensible SDK ^  
-| cb20 | Development Version for cb20 Board | {{ntb-dev-image-cb20-1.0.tar.xz | ntb-dev-image-cb20-1.0.tar.xz}} | {{ntb-dev-image-cb20-1.0_sdk.tar.xz | ntb-dev-image-cb20-1.0_sdk.tar.xz}} |  
-| cb20 | Development Version for cb20 Board | {{ntb-dev-image-cb20-1.1.tar.xz | ntb-dev-image-cb20-1.1.tar.xz}} | {{ntb-dev-image-cb20-1.0_sdk.tar.xz | ntb-dev-image-cb20-1.0_sdk.tar.xz}} |  
-| cb20 | Development Version for cb20 Board | {{ost-dev-image-cb20-2021.05.05.tar.xz}} | {{ost-dev-image-cb20-2021.05.05-sdk.tar.xz}} | {{ost-dev-image-cb20-2021.05.05-esdk.tar.xz}} |  
- 
- 
-Images can also be fetched directly over Toradex Easy Installer. Add the following feed: 
-<code> 
-https://wiki.bu.ost.ch/infoportal/_media/software/linux/images/image_list.json 
-</code> 
- 
- 
-=== Flashing a .wic image === 
-Linux script example for ''.wic'' image flashing onto an external storage device, e.g. an external SD card (<color #ed1c24>Beware: ''sdb'' has to be replaced with the correct device (use ''lsblk'' command to discover the correct device)!</color>): \\ 
-<code> 
-#!/bin/sh 
-umount /dev/sdb* 
-wipefs -a /dev/sdb 
-dd if=ost-ros-image-melodic-bblue.wic of=/dev/sdb bs=1M status=progress 
-eject /dev/sdb 
-</code> 
-