Makefile (9a64e8e0ace51b309fdcff4b4754b3649250382a) Makefile (360a0cab50414ee30924917159066e69ee4b38d3)
1#
2# arch/arm/boot/Makefile
3#
4# This file is included by the global makefile so that you can add your own
5# architecture-specific flags and dependencies.
6#
7# This file is subject to the terms and conditions of the GNU General Public
8# License. See the file "COPYING" in the main directory of this archive
9# for more details.
10#
11# Copyright (C) 1995-2002 Russell King
12#
13
14ifneq ($(MACHINE),)
15include $(srctree)/$(MACHINE)/Makefile.boot
16endif
17
1#
2# arch/arm/boot/Makefile
3#
4# This file is included by the global makefile so that you can add your own
5# architecture-specific flags and dependencies.
6#
7# This file is subject to the terms and conditions of the GNU General Public
8# License. See the file "COPYING" in the main directory of this archive
9# for more details.
10#
11# Copyright (C) 1995-2002 Russell King
12#
13
14ifneq ($(MACHINE),)
15include $(srctree)/$(MACHINE)/Makefile.boot
16endif
17
18include $(srctree)/arch/arm/boot/dts/Makefile
19
18# Note: the following conditions must always be true:
19# ZRELADDR == virt_to_phys(PAGE_OFFSET + TEXT_OFFSET)
20# PARAMS_PHYS must be within 4MB of ZRELADDR
21# INITRD_PHYS must be in RAM
22ZRELADDR := $(zreladdr-y)
23PARAMS_PHYS := $(params_phys-y)
24INITRD_PHYS := $(initrd_phys-y)
25

--- 103 unchanged lines hidden ---
20# Note: the following conditions must always be true:
21# ZRELADDR == virt_to_phys(PAGE_OFFSET + TEXT_OFFSET)
22# PARAMS_PHYS must be within 4MB of ZRELADDR
23# INITRD_PHYS must be in RAM
24ZRELADDR := $(zreladdr-y)
25PARAMS_PHYS := $(params_phys-y)
26INITRD_PHYS := $(initrd_phys-y)
27

--- 103 unchanged lines hidden ---