Changes between Version 22 and Version 23 of buildroot


Ignore:
Timestamp:
06/19/2020 02:58:16 PM (4 years ago)
Author:
Tim Harvey
Comment:

replace use of mkits.sh script and use 'mkimage -f auto' introduced in u-boot-tools 2016.05

Legend:

Unmodified
Added
Removed
Modified
  • buildroot

    v22 v23  
    215215mv ${TMP_MNT}/boot/Image vmlinux
    216216gzip -f vmlinux
    217 ${NEWPORT_BSP}/newport/mkits.sh -o kernel.its -k vmlinux.gz -C gzip -v "buldroot-newport"
    218 mkimage -f kernel.its tmp_mnt/boot/kernel.itb #adds header
     217mkimage -f auto -A arm64 -O linux -T kernel -C gzip -n "buildroot-newport" \                           
     218   -a 20080000 -e 20080000 -d vmlinux.gz tmp_mnt/boot/kernel.itb
    219219}}}
    220220* Create U-Boot bootscript using the existing Ubuntu one from the Newport BSP, use mkimage to add the u-boot header.