mirror of
https://git.codelinaro.org/clo/qsdk/oss/boot/u-boot-2016.git
synced 2025-12-10 07:44:53 +01:00
Fix problem with usage of "true" (undefined in current versions of bfd.h)
This commit is contained in:
parent
7aa7861471
commit
9c62cc58b8
2 changed files with 3 additions and 1 deletions
|
|
@ -2,6 +2,8 @@
|
|||
Changes since U-Boot 0.3.1:
|
||||
======================================================================
|
||||
|
||||
* Fix problem with usage of "true" (undefined in current versions of bfd.h)
|
||||
|
||||
* Add support for Promess ATC board
|
||||
|
||||
* Patch by Keith Outwater, 28 Apr 2003:
|
||||
|
|
|
|||
|
|
@ -81,7 +81,7 @@ main(int ac, char **av)
|
|||
close(ifd);
|
||||
Error("bfd_fdopenr of file '%s' failed", ifn);
|
||||
}
|
||||
bfdp->cacheable = true;
|
||||
bfdp->cacheable = 1;
|
||||
|
||||
if (!bfd_check_format(bfdp, bfd_object) ||
|
||||
(bfd_get_file_flags(bfdp) & EXEC_P) == 0) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue