* Apply changes to Espressobin from Issue#2861 * Additional config changes * Add cryptopp to marvell tools * Remove local DDR topology changes * Disable ebin MACs in armbianEnv.txt * Change kernel options for ebin, remove mtdparts * Add CZ.NICs ebin firmware * Increase ATF compiler version" * fixup external toolchains * add gcc-aarch64-linux-gnu package (#3585) * correct compiler names for ATF, external toolchain Co-authored-by: Derek LaHousse <dlahouss@mtu.edu> Co-authored-by: Derek <ManoftheSea@users.noreply.github.com>
25 lines
928 B
Batchfile
25 lines
928 B
Batchfile
# DO NOT EDIT THIS FILE
|
|
#
|
|
# Please edit /boot/armbianEnv.txt to set supported parameters
|
|
#
|
|
|
|
# default values
|
|
setenv rootdev "/dev/mmcblk0p1"
|
|
setenv verbosity "7"
|
|
setenv rootfstype "ext4"
|
|
setenv fdt_name_a dtb/marvell/armada-3720-community.dtb
|
|
setenv fdt_name_b dtb/marvell/armada-3720-espressobin.dtb
|
|
|
|
load ${boot_interface} ${devnum}:1 ${scriptaddr} ${prefix}armbianEnv.txt
|
|
env import -t ${scriptaddr} ${filesize}
|
|
|
|
setenv bootargs "$console root=${rootdev} rootfstype=${rootfstype} rootwait loglevel=${verbosity} usb-storage.quirks=${usbstoragequirks} ${extraargs}"
|
|
|
|
ext4load $boot_interface 0:1 $kernel_addr ${prefix}$image_name
|
|
ext4load $boot_interface 0:1 $initrd_addr ${prefix}$initrd_image
|
|
ext4load $boot_interface 0:1 $fdt_addr ${prefix}$fdt_name_a
|
|
ext4load $boot_interface 0:1 $fdt_addr ${prefix}$fdt_name_b
|
|
|
|
booti $kernel_addr $initrd_addr $fdt_addr
|
|
# mkimage -C none -A arm -T script -d /boot/boot.cmd /boot/boot.scr
|