Changes between Version 23 and Version 24 of newport/firmware
- Timestamp:
- 06/10/2020 03:43:36 PM (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
newport/firmware
v23 v24 174 174 * Note that ARM64 Linux does not support self-extracting compressed kernels which is why we use a FIT image which allows U-Boot to do the decompression and data verification. 175 175 176 Updating just the kernel.itb (FIT Image) can be done with {{{tftpboot}}} and {{{ fatwrite}}}:176 Updating just the kernel.itb (FIT Image) can be done with {{{tftpboot}}} and {{{ext4write}}}: 177 177 {{{#!bash 178 178 # choose device (0 for boot device, 1 for alternate device) … … 183 183 tftpboot $loadaddr newport.scr && ext4write mmc $dev:2 $loadaddr /boot/newport.scr $filesize 184 184 }}} 185 - Note that your ext4 filesystem must not have checksums enabled (metadata_csum, a feature added to newer e2fsprogs) as U-Boot does not support this in ext4write. This is disabled in the ext4 filesystem creation script in the newport BSP (newport/mkfs) for convenience. 185 186 186 187 ==== Updating just the boot firmware ====