File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -91,7 +91,7 @@ class ZynqPartitionHeader : public PartitionHeader
9191 void SetEncryptedPartitionLength (uint32_t len);
9292 void SetUnencryptedPartitionLength (uint32_t len);
9393 void SetTotalPartitionLength (uint32_t len);
94- void SetLoadAddress (uint64_t addr);
94+ void SetLoadAddress (uint64_t addr, bool = false );
9595 void SetExecAddress (uint64_t addr);
9696 void SetPartitionWordOffset (uint32_t addr);
9797 void SetPartitionAttributes (void );
Original file line number Diff line number Diff line change @@ -138,7 +138,7 @@ void ZynqPartitionHeader::SetTotalPartitionLength(uint32_t len)
138138}
139139
140140/* *****************************************************************************/
141- void ZynqPartitionHeader::SetLoadAddress (uint64_t addr)
141+ void ZynqPartitionHeader::SetLoadAddress (uint64_t addr, bool arch )
142142{
143143 pHTable->destinationLoadAddress = (uint32_t )addr;
144144}
Original file line number Diff line number Diff line change @@ -106,7 +106,7 @@ class ZynqMpPartitionHeader : public PartitionHeader
106106 void SetEncryptedPartitionLength (uint32_t len);
107107 void SetUnencryptedPartitionLength (uint32_t len);
108108 void SetTotalPartitionLength (uint32_t len);
109- void SetLoadAddress (uint64_t addr);
109+ void SetLoadAddress (uint64_t addr, bool arch = false );
110110 void SetExecAddress (uint64_t addr);
111111 void SetPartitionWordOffset (uint32_t addr);
112112 void SetPartitionAttributes (void );
Original file line number Diff line number Diff line change @@ -183,7 +183,7 @@ void ZynqMpPartitionHeader::SetExecAddress(uint64_t addr)
183183}
184184
185185/* *****************************************************************************/
186- void ZynqMpPartitionHeader::SetLoadAddress (uint64_t addr)
186+ void ZynqMpPartitionHeader::SetLoadAddress (uint64_t addr, bool arch )
187187{
188188 pHTable->destinationLoadAddress = addr;
189189}
You can’t perform that action at this time.
0 commit comments