Changes between Version 1 and Version 2 of catalina/firmware


Ignore:
Timestamp:
06/30/2026 04:47:24 PM (15 hours ago)
Author:
Tim Harvey
Comment:

update for new boot firmware FIT image

Legend:

Unmodified
Added
Removed
Modified
  • catalina/firmware

    v1 v2  
    132132
    133133The latest pre-built boot-firmware image for Catalina are available for download here:
    134 [https://dev.gateworks.com/catalina/boot_firmware/flash.bin]
     134[https://dev.gateworks.com/catalina/images/firmware-catalina.bin]
     135
     136This is a FIT image containing multiple boot firmware images, one for each DRAM configuration.
    135137
    136138
     
    144146# set the path on the server (default is 'catalina/')
    145147setenv path catalina/
    146 # specify the file name (default is 'flash.bin')
    147 setenv firmware flash.bin
     148# specify the file name (default is 'firmware-catalina.bin')
     149setenv firmware firmware-catalina.bin
    148150# update
    149151run update_firmware
    150 # update
    151 run update_firmware
    152 }}}
    153  * Alternatively you can load the image from removable storage
     152}}}
     153 * Alternatively you can load the image from removable storage by replacing the commands in the 'update_firmware' script such that they load the firmware file from your source
    154154
    155155
    156156==== Boot firmware update via Linux
    157 Updating the boot firmware via Linux requires you to manually specify the correct device, hardware partition and offset.
     157Updating the boot firmware via Linux requires you to manually specify the correct file, device, hardware partition and offset.
     158
     159There are different boot firmware images for the various DRAM configurations supported on Catalina including:
     160 - flash-16GB_2Gbx8_2R.bin - for i.MX95 Catalina 16GB DRAM boards
     161 - flash-8GB_1Gbx16_2R.bin - for i.MX95 Catalina 8GB DRAM boards
     162 - flash-4GB_1Gbx16_1R.bin - for i.MX95 Catalina 4GB DRAM boards
    158163
    159164To update boot firmware on the default eMMC boot0 hardware partition:
     
    164169dd if=flash.bin of=/dev/mmcblk2boot0
    165170}}}
    166 
     171 - ensure you use the file matching the DRAM on your board
    167172
    168173[=#gsc-udpate]