diff options
Diffstat (limited to 'arch/blackfin')
-rw-r--r-- | arch/blackfin/kernel/vmlinux.lds.S | 1 | ||||
-rw-r--r-- | arch/blackfin/mach-common/arch_checks.c | 9 |
2 files changed, 10 insertions, 0 deletions
diff --git a/arch/blackfin/kernel/vmlinux.lds.S b/arch/blackfin/kernel/vmlinux.lds.S index 0896e38d6108..d062597e6217 100644 --- a/arch/blackfin/kernel/vmlinux.lds.S +++ b/arch/blackfin/kernel/vmlinux.lds.S | |||
@@ -83,6 +83,7 @@ SECTIONS | |||
83 | #if !L1_DATA_B_LENGTH | 83 | #if !L1_DATA_B_LENGTH |
84 | *(.l1.bss.B) | 84 | *(.l1.bss.B) |
85 | #endif | 85 | #endif |
86 | . = ALIGN(4); | ||
86 | ___bss_stop = .; | 87 | ___bss_stop = .; |
87 | } | 88 | } |
88 | 89 | ||
diff --git a/arch/blackfin/mach-common/arch_checks.c b/arch/blackfin/mach-common/arch_checks.c index f9160d83b91f..5986758b2752 100644 --- a/arch/blackfin/mach-common/arch_checks.c +++ b/arch/blackfin/mach-common/arch_checks.c | |||
@@ -27,6 +27,7 @@ | |||
27 | * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | 27 | * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
28 | */ | 28 | */ |
29 | 29 | ||
30 | #include <asm/fixed_code.h> | ||
30 | #include <asm/mach/anomaly.h> | 31 | #include <asm/mach/anomaly.h> |
31 | #include <asm/mach-common/clocks.h> | 32 | #include <asm/mach-common/clocks.h> |
32 | 33 | ||
@@ -53,3 +54,11 @@ | |||
53 | # endif | 54 | # endif |
54 | 55 | ||
55 | #endif /* CONFIG_BFIN_KERNEL_CLOCK */ | 56 | #endif /* CONFIG_BFIN_KERNEL_CLOCK */ |
57 | |||
58 | #if CONFIG_BOOT_LOAD < FIXED_CODE_END | ||
59 | # error "The kernel load address must be after the fixed code section" | ||
60 | #endif | ||
61 | |||
62 | #if (CONFIG_BOOT_LOAD & 0x3) | ||
63 | # error "The kernel load address must be 4 byte aligned" | ||
64 | #endif | ||