mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-12 16:58:53 +00:00
Blackfin arch: make sure people do not set the kernel load address too high
Signed-off-by: Mike Frysinger <vapier.adi@gmail.com> Signed-off-by: Bryan Wu <cooloney@kernel.org>
This commit is contained in:
parent
7acab7a9ca
commit
f7e989ab64
@ -62,3 +62,8 @@
|
||||
#if (CONFIG_BOOT_LOAD & 0x3)
|
||||
# error "The kernel load address must be 4 byte aligned"
|
||||
#endif
|
||||
|
||||
/* The entire kernel must be able to make a 24bit pcrel call to start of L1 */
|
||||
#if ((0xffffffff - L1_CODE_START + 1) + CONFIG_BOOT_LOAD) > 0x1000000
|
||||
# error "The kernel load address is too high; keep it below 10meg for safety"
|
||||
#endif
|
||||
|
Loading…
x
Reference in New Issue
Block a user