Changes between Version 2 and Version 3 of newport/boot


Ignore:
Timestamp:
02/12/2018 05:06:30 PM (6 years ago)
Author:
Tim Harvey
Comment:

added boot firmware version file details

Legend:

Unmodified
Added
Removed
Modified
  • newport/boot

    v2 v3  
    222222
    223223To install the kernel and root filesystem on a removable block storage device see [wiki:linux/blockdev].
     224
     225
     226[=#version]
     227== Firmware Version ==
     228The Boot Firmware is comprised of several components that each have their own revision control (bdk, atf, u-boot, dts) and as such there are multiple version details to keep track of.
     229
     230To aid this the Newport BSP Makefile which builds the boot firmware creates a file called {{{version}}} within the FAT12 filesystem. You can mount this filesystem within Linux and examine the contents. For example:
     231{{{#!bash
     232root@OpenWrt:/# mount /dev/mmcblk0p1 /mnt
     233root@OpenWrt:/# cat /mnt/version
     234BDK=e1a02ac-dirty Mon Feb 12 16:59:48 UTC 2018
     235ATF=v1.3(release):99860b5-dirty
     236UBOOT=2017.09-rc1-g5d286a6
     237DTS=f31a186
     238root@OpenWrt:/# umount /mnt
     239}}}