Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bisonflex/bif.tab.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -812,7 +812,7 @@ namespace BIF {
case 83:
/* Line 670 of lalr1.cc */
#line 384 "parser/bif.y"
{ if(options.GetArchType() != Arch::ZYNQ || options.GetArchType() != Arch::ZYNQMP)
{ if(options.GetArchType() != Arch::ZYNQ && options.GetArchType() != Arch::ZYNQMP)
LOG_WARNING("BIF attribute error !!! [keysrc_encryption] not supported for the specified architecture.\n\t Refer 'bootgen -bif_help' for more details");
currentBifOptions->SetEncryptionKeySource((yysemantic_stack_[(4) - (4)].encrkeysrc_t)); options.SetEncryptedKeySource((yysemantic_stack_[(4) - (4)].encrkeysrc_t)); }
break;
Expand Down
2 changes: 1 addition & 1 deletion parser/bif.y
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@ partition_content : /* empty */
| partition_content new_file_spec
;

other_spec : OBRACKET KEYSRC_ENCRYPTION EBRACKET key_src { if(options.GetArchType() != Arch::ZYNQ || options.GetArchType() != Arch::ZYNQMP)
other_spec : OBRACKET KEYSRC_ENCRYPTION EBRACKET key_src { if(options.GetArchType() != Arch::ZYNQ && options.GetArchType() != Arch::ZYNQMP)
LOG_WARNING("BIF attribute error !!! [keysrc_encryption] not supported for the specified architecture.\n\t Refer 'bootgen -bif_help' for more details");
currentBifOptions->SetEncryptionKeySource($4); options.SetEncryptedKeySource($4); }
| OBRACKET FSBL_CONFIG { if(options.GetArchType() == Arch::ZYNQ)
Expand Down