Skip to content

Commit

Permalink
travis-ci: set load address for files
Browse files Browse the repository at this point in the history
Set the load address for files to the value of $kernel_addr_r for the
qemu_arm64_defconfig and qemu_arm_defconfig boards to avoid collisions with
the device tree.

Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Signed-off-by: Stephen Warren <swarren@nvidia.com>
  • Loading branch information
xypron authored and nvswarren committed Dec 6, 2019
1 parent b587ec7 commit 7cc0cbf
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions py/travis-ci/u_boot_boardenv_qemu_arm64_na.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
env__net_uses_pci = True
env__net_dhcp_server = True

env__net_tftp_readable_file = travis_tftp.file2env('u-boot.bin')
env__efi_loader_helloworld_file = travis_tftp.file2env('lib/efi_loader/helloworld.efi')
env__efi_loader_grub_file = travis_tftp.file2env('grub_arm64.efi')
env__net_tftp_readable_file = travis_tftp.file2env('u-boot.bin', 0x40400000)
env__efi_loader_helloworld_file = travis_tftp.file2env('lib/efi_loader/helloworld.efi', 0x40400000)
env__efi_loader_grub_file = travis_tftp.file2env('grub_arm64.efi', 0x40400000)
6 changes: 3 additions & 3 deletions py/travis-ci/u_boot_boardenv_qemu_arm_na.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
env__net_uses_pci = True
env__net_dhcp_server = True

env__net_tftp_readable_file = travis_tftp.file2env('u-boot.bin')
env__efi_loader_helloworld_file = travis_tftp.file2env('lib/efi_loader/helloworld.efi')
env__efi_loader_grub_file = travis_tftp.file2env('grub_arm.efi')
env__net_tftp_readable_file = travis_tftp.file2env('u-boot.bin', 0x40400000)
env__efi_loader_helloworld_file = travis_tftp.file2env('lib/efi_loader/helloworld.efi', 0x40400000)
env__efi_loader_grub_file = travis_tftp.file2env('grub_arm.efi', 0x40400000)

0 comments on commit 7cc0cbf

Please sign in to comment.