Difference between revisions of "CM-T43: Yocto Linux: Package contents"

From Compulab Mediawiki
Jump to: navigation, search
(See also)
 
Line 86: Line 86:
  
 
== See also ==
 
== See also ==
* [[CM-T43: Yocto Linux: Getting started]]
+
* [[CM-T43: Evaluation Kit: Getting Started]]
 +
* [[CM-T43: Yocto Linux: Automatic Installation]]
 +
* [[CM-T43: Yocto Linux: Manual Installation]]
 
* [[CM-T43: Yocto_Linux: Building]]
 
* [[CM-T43: Yocto_Linux: Building]]
  

Latest revision as of 18:23, 11 October 2017

Package contents

Layout

cm-t43-yocto-linux/
├── development
│   ├── readme.html
│   └── yocto-cm-t43-2.0.patch
├── install
│   ├── am437x-sb-som-t43.dtb
│   ├── bootscr.img
│   ├── install.ext2
│   ├── install.sh
│   ├── kernel.img
│   ├── ramdisk.dtb
│   ├── ramdisk.img
│   ├── rootfs.tar.bz2
│   └── zImage-cm-t43
├── kernel
│   ├── dtb
│   │   ├── am437x-cm-t43.dtb
│   │   └── am437x-sb-som-t43.dtb
│   ├── dts
│   │   ├── am437x-cm-t43.dts
│   │   ├── am437x-sb-som-t43.dts
│   │   └── compulab-sb-som.dtsi                                                                                                                                                                                                             
│   ├── modules-cm-t43-yocto-2.0.tgz                                                                                                                                                                                                         
│   └── zImage-cm-t43-yocto-2.0                                                                                                                                                                                                              
├── readme.txt                                                                                                                                                                                                                               
├── u-boot                                                                                                                                                                                                                                   
│   ├── MLO-yocto-2.0                                                                                                                                                                                                                        
│   └── u-boot-yocto-2.0.img                                                                                                                                                                                                                 
├── utilities                                                                                                                                                                                                                                
│   ├── bootscr.src                                                                                                                                                                                                                          
│   ├── eeprom-util                                                                                                                                                                                                                          
│   │   ├── eeprom-util                                                                                                                                                                                                                      
│   │   ├── eeprom-util-static                                                                                                                                                                                                               
│   │   └── eeprom-util-v2.1-sources.tar.gz                                                                                                                                                                                                  
│   └── tftpd32.zip                                                                                                                                                                                                                          
└── version.txt                                                       

version.txt

The contents of the version.txt identifies the versions of the various package contents.

readme.txt

A file describing the package.

development

  • readme.html - development links
  • yocto-cm-t43-2.0.patch - CM-T43 Yocto Linux patch

install

  • ramdisk.dtb - SB-SOM-T43 Device Tree binary for installation kernel
  • kernel.img - Kernel image required for installation onto the eMMC/NAND/SD-Card
  • ramdisk.img - Ramdisk image required for installation onto the eMMC/NAND/SD-Card
  • bootscr.img - U-Boot script used for starting the installation environment
  • am437x-sb-som-t43.dtb - SB-SOM-T43 Device Tree binary for Yocto Linux kernel
  • zImage-cm-t43 - Yocto Linux kernel image
  • rootfs.tar.bz2 - Yocto Linux rootfs
  • install.sh - An installation script for automatic installation environment
  • install.ext2 - A filesystem for automatic installation environment

kernel

  • zImage-cm-t43-yocto-2.0 - ready to run Linux kernel image binary for CM-T43
  • modules-cm-t43-yocto-2.0.tgz - archive of pre-compiled modules for Linux kernel used with Yocto Linux for CM-T43

dtb

  • am437x-cm-t43.dtb - CM-T43 Device Tree binary
  • am437x-sb-som-t43.dtb - SBC-T43 Device Tree binary

dts

  • am437x-cm-t43.dts - CM-T43 Device Tree source
  • am437x-sb-som-t43.dts - SBC-T43 Device Tree source
  • compulab-sb-som.dtsi - SB-SOM Device Tree source

u-boot

  • MLO-yocto-2.0 - SPL binary
  • u-boot-yocto-2.0.img - U-Boot binary

utilities

The utilities directory contains miscellaneous utilities useful for development

  • eeprom-util - CompuLab EEPROM utility for reading information found inside the EEPROM on CompuLab boards
  • bootscr.src - U-Boot script source used for loading kernel and ramdisk images from MMC/SD card or USB storage device
  • tftpd32.zip - A utility for serial communication

See also