2006-01-09 18:05:41 +01:00
|
|
|
# Note: the following conditions must always be true:
|
|
|
|
# ZRELADDR == virt_to_phys(TEXTADDR)
|
|
|
|
# PARAMS_PHYS must be within 4MB of ZRELADDR
|
|
|
|
# INITRD_PHYS must be in RAM
|
|
|
|
|
2008-01-24 15:10:39 +01:00
|
|
|
ifeq ($(CONFIG_ARCH_AT91CAP9),y)
|
|
|
|
zreladdr-y := 0x70008000
|
|
|
|
params_phys-y := 0x70000100
|
|
|
|
initrd_phys-y := 0x70410000
|
|
|
|
else
|
2006-01-09 18:05:41 +01:00
|
|
|
zreladdr-y := 0x20008000
|
|
|
|
params_phys-y := 0x20000100
|
|
|
|
initrd_phys-y := 0x20410000
|
2008-01-24 15:10:39 +01:00
|
|
|
endif
|