Skip to content

Commit

Permalink
[ARM] 5535/1: U300 Makefile.boot
Browse files Browse the repository at this point in the history
The Makefile.boot file for the U300 port. This will compile the
kernel for different ZRELADDR depending on the location of
physical RAM in the chosen configuration.

Signed-off-by: Linus Walleij <linus.walleij@stericsson.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
  • Loading branch information
Linus Walleij authored and Russell King committed Jun 4, 2009
1 parent eb366d4 commit 7666c17
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions arch/arm/mach-u300/Makefile.boot
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# 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

ifdef CONFIG_MACH_U300_SINGLE_RAM
zreladdr-y := 0x28E08000
params_phys-y := 0x28E00100
else
zreladdr-y := 0x48008000
params_phys-y := 0x48000100
endif

# This isn't used.
#initrd_phys-y := 0x29800000

0 comments on commit 7666c17

Please sign in to comment.