Skip to content
Snippets Groups Projects
Commit 9b46432f authored by TsiChung Liew's avatar TsiChung Liew Committed by John Rigby
Browse files

ColdFire: Fix alignment issue after CONFIG_IDENT_STRING in start.S


When the version_string function in start.S is not 4-byte align,
it will cause the compiler generates "unaligned opcodes detected
in executable segment". This issue affects all ColdFire CPUs.
By adding .align 4 after CONFIG_IDENT_STRING, it will pad 0's if
it is not aligned.

Signed-off-by: default avatarTsiChung Liew <Tsi-Chung.Liew@freescale.com>
Acked-by: default avatarJohn Rigby <jrigby@freescale.com>
parent bae61eef
No related branches found
No related tags found
No related merge requests found
...@@ -354,3 +354,4 @@ version_string: ...@@ -354,3 +354,4 @@ version_string:
.ascii U_BOOT_VERSION .ascii U_BOOT_VERSION
.ascii " (", __DATE__, " - ", __TIME__, ")" .ascii " (", __DATE__, " - ", __TIME__, ")"
.ascii CONFIG_IDENT_STRING, "\0" .ascii CONFIG_IDENT_STRING, "\0"
.align 4
...@@ -338,3 +338,4 @@ version_string: ...@@ -338,3 +338,4 @@ version_string:
.ascii U_BOOT_VERSION .ascii U_BOOT_VERSION
.ascii " (", __DATE__, " - ", __TIME__, ")" .ascii " (", __DATE__, " - ", __TIME__, ")"
.ascii CONFIG_IDENT_STRING, "\0" .ascii CONFIG_IDENT_STRING, "\0"
.align 4
...@@ -476,3 +476,4 @@ version_string: ...@@ -476,3 +476,4 @@ version_string:
.ascii U_BOOT_VERSION .ascii U_BOOT_VERSION
.ascii " (", __DATE__, " - ", __TIME__, ")" .ascii " (", __DATE__, " - ", __TIME__, ")"
.ascii CONFIG_IDENT_STRING, "\0" .ascii CONFIG_IDENT_STRING, "\0"
.align 4
...@@ -333,3 +333,4 @@ version_string: ...@@ -333,3 +333,4 @@ version_string:
.ascii U_BOOT_VERSION .ascii U_BOOT_VERSION
.ascii " (", __DATE__, " - ", __TIME__, ")" .ascii " (", __DATE__, " - ", __TIME__, ")"
.ascii CONFIG_IDENT_STRING, "\0" .ascii CONFIG_IDENT_STRING, "\0"
.align 4
...@@ -379,3 +379,4 @@ version_string: ...@@ -379,3 +379,4 @@ version_string:
.ascii U_BOOT_VERSION .ascii U_BOOT_VERSION
.ascii " (", __DATE__, " - ", __TIME__, ")" .ascii " (", __DATE__, " - ", __TIME__, ")"
.ascii CONFIG_IDENT_STRING, "\0" .ascii CONFIG_IDENT_STRING, "\0"
.align 4
...@@ -359,3 +359,4 @@ version_string: ...@@ -359,3 +359,4 @@ version_string:
.ascii U_BOOT_VERSION .ascii U_BOOT_VERSION
.ascii " (", __DATE__, " - ", __TIME__, ")" .ascii " (", __DATE__, " - ", __TIME__, ")"
.ascii CONFIG_IDENT_STRING, "\0" .ascii CONFIG_IDENT_STRING, "\0"
.align 4
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment