mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-27 15:12:21 +00:00
07a8e6d6ee
Since commit 3ff46cc42b
("arm: relocate the exception vectors")
pxa does not boot anymore.
Add a specific relocate_vectors macro that skips the vector relocation,
as the pxa SoC does not provide RAM at the high vectors address
(0xFFFF0000), and (0x00000000) maps to ROM.
This allows pxa to boot again.
Cc: Marek Vasut <marex@denx.de>
Signed-off-by: Andrew Ruder <andrew.ruder@elecsyscorp.com>
16 lines
290 B
Makefile
16 lines
290 B
Makefile
#
|
|
# (C) Copyright 2000-2006
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
extra-y = start.o
|
|
|
|
obj-$(CONFIG_CPU_PXA25X) += pxa2xx.o
|
|
obj-$(CONFIG_CPU_PXA27X) += pxa2xx.o
|
|
|
|
obj-y += cpuinfo.o
|
|
obj-y += timer.o
|
|
obj-y += usb.o
|
|
obj-y += relocate.o
|