forked from swarren/uboot-test-hooks
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
travis-ci: provide env__efi_fit_tftp_file
Provide dictionary env__efi_fit_tftp_file describing the file used for the UEFI FIT image test. Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de> Signed-off-by: Stephen Warren <swarren@nvidia.com>
- Loading branch information
Showing
6 changed files
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,11 @@ | ||
import os | ||
import travis_tftp | ||
|
||
env__net_dhcp_server = True | ||
|
||
env__net_tftp_readable_file = travis_tftp.file2env('u-boot') | ||
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__efi_fit_tftp_file = { | ||
"dn" : os.environ['UBOOT_TRAVIS_BUILD_DIR'], | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,11 @@ | ||
import os | ||
import travis_tftp | ||
|
||
env__net_dhcp_server = True | ||
|
||
env__net_tftp_readable_file = travis_tftp.file2env('u-boot') | ||
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__efi_fit_tftp_file = { | ||
"dn" : os.environ['UBOOT_TRAVIS_BUILD_DIR'], | ||
} |