2006-01-09 20:05:41 +03: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
|
|
|
|
|
2012-01-26 17:07:09 +04:00
|
|
|
ifeq ($(CONFIG_ARCH_AT91SAM9G45),y)
|
2011-08-17 17:24:52 +04:00
|
|
|
zreladdr-y += 0x70008000
|
2009-06-26 18:36:58 +04:00
|
|
|
params_phys-y := 0x70000100
|
|
|
|
initrd_phys-y := 0x70410000
|
2008-01-24 17:10:39 +03:00
|
|
|
else
|
2011-08-17 17:24:52 +04:00
|
|
|
zreladdr-y += 0x20008000
|
2006-01-09 20:05:41 +03:00
|
|
|
params_phys-y := 0x20000100
|
|
|
|
initrd_phys-y := 0x20410000
|
2008-01-24 17:10:39 +03:00
|
|
|
endif
|