Enable more commands and writable environment support on almost all supported devices...
[oweals/u-boot_mod.git] / u-boot / config.mk
1 #
2 # (C) Copyright 2000
3 # Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 #
5 # See file CREDITS for list of people who contributed to this
6 # project.
7 #
8 # This program is free software; you can redistribute it and/or
9 # modify it under the terms of the GNU General Public License as
10 # published by the Free Software Foundation; either version 2 of
11 # the License, or (at your option) any later version.
12 #
13 # This program is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 # GNU General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License
19 # along with this program; if not, write to the Free Software
20 # Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21 # MA 02111-1307 USA
22 #
23
24 #########################################################################
25
26 # clean the slate ...
27 PLATFORM_RELFLAGS =
28 PLATFORM_CPPFLAGS =
29 PLATFORM_LDFLAGS =
30
31 #
32 # When cross-compiling on NetBSD, we have to define __PPC__ or else we
33 # will pick up a va_list declaration that is incompatible with the
34 # actual argument lists emitted by the compiler.
35 #
36 # [Tested on NetBSD/i386 1.5 + cross-powerpc-netbsd-1.3]
37
38 ifeq ($(ARCH),ppc)
39 ifeq ($(CROSS_COMPILE),powerpc-netbsd-)
40 PLATFORM_CPPFLAGS+= -D__PPC__
41 endif
42 ifeq ($(CROSS_COMPILE),powerpc-openbsd-)
43 PLATFORM_CPPFLAGS+= -D__PPC__
44 endif
45 endif
46
47 ifeq ($(ARCH),arm)
48 ifeq ($(CROSS_COMPILE),powerpc-netbsd-)
49 PLATFORM_CPPFLAGS+= -D__ARM__
50 endif
51 ifeq ($(CROSS_COMPILE),powerpc-openbsd-)
52 PLATFORM_CPPFLAGS+= -D__ARM__
53 endif
54 endif
55
56 ifeq ($(ARCH),blackfin)
57 PLATFORM_CPPFLAGS+= -D__BLACKFIN__ -mno-underscore
58 endif
59
60 ifdef   ARCH
61 sinclude $(TOPDIR)/$(ARCH)_config.mk    # include architecture dependend rules
62 endif
63 ifdef   CPU
64 sinclude $(TOPDIR)/cpu/$(CPU)/config.mk # include  CPU  specific rules
65 endif
66 ifdef   SOC
67 sinclude $(TOPDIR)/cpu/$(CPU)/$(SOC)/config.mk  # include  SoC  specific rules
68 endif
69 ifdef   VENDOR
70 BOARDDIR = $(VENDOR)/$(BOARD)
71 else
72 BOARDDIR = $(BOARD)
73 endif
74 ifdef   BOARD
75 sinclude $(TOPDIR)/board/$(BOARDDIR)/config.mk  # include board specific rules
76 endif
77
78 #########################################################################
79
80 CONFIG_SHELL    := $(shell if [ -x "$$BASH" ]; then echo $$BASH; \
81                     else if [ -x /bin/bash ]; then echo /bin/bash; \
82                     else echo sh; fi ; fi)
83
84 ifeq ($(HOSTOS)-$(HOSTARCH),darwin-ppc)
85 HOSTCC          = cc
86 else
87 HOSTCC          = gcc
88 endif
89 HOSTCFLAGS      = -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer
90 HOSTSTRIP       = strip
91
92 COMPRESS    = lzma
93 #########################################################################
94 #
95 # Option checker (courtesy linux kernel) to ensure
96 # only supported compiler options are used
97 #
98 cc-option = $(shell if $(CC) $(CFLAGS) $(1) -S -o /dev/null -xc /dev/null \
99                 > /dev/null 2>&1; then echo "$(1)"; else echo "$(2)"; fi ;)
100
101 #
102 # Include the make variables (CC, etc...)
103 #
104 AS      = $(CROSS_COMPILE)as
105 LD      = $(CROSS_COMPILE)ld
106 CC      = $(CROSS_COMPILE)gcc
107 CPP     = $(CC) -E
108 AR      = $(CROSS_COMPILE)ar
109 NM      = $(CROSS_COMPILE)nm
110 STRIP   = $(CROSS_COMPILE)strip
111 OBJCOPY = $(CROSS_COMPILE)objcopy
112 OBJDUMP = $(CROSS_COMPILE)objdump
113 RANLIB  = $(CROSS_COMPILE)RANLIB
114
115 .depend : CC = @$(CROSS_COMPILE)gcc
116
117 RELFLAGS= $(PLATFORM_RELFLAGS)
118 OPTFLAGS= -O
119 ifndef LDSCRIPT
120 LDSCRIPT := $(TOPDIR)/board/$(BOARDDIR)/u-boot.lds
121 endif
122 OBJCFLAGS += --gap-fill=0xff
123
124 LDSCRIPT_BOOTSTRAP := $(TOPDIR)/board/$(BOARDDIR)/u-boot-bootstrap.lds
125
126 gccincdir := $(shell $(CC) -print-file-name=include)
127
128 CPPFLAGS := $(DBGFLAGS) $(OPTFLAGS) $(RELFLAGS)         \
129         -D__KERNEL__ -DTEXT_BASE=$(TEXT_BASE)           \
130         -I$(TOPDIR)/include                             \
131         -fno-builtin -ffreestanding -nostdinc -isystem  \
132         $(gccincdir) -pipe $(PLATFORM_CPPFLAGS)
133
134 ifdef BUILD_TAG
135 CFLAGS := $(CPPFLAGS) -Wall -Wstrict-prototypes \
136         -DBUILD_TAG='"$(BUILD_TAG)"'
137 else
138 CFLAGS := $(CPPFLAGS) -Wall -Wstrict-prototypes
139 ifeq ($(COMPRESSED_UBOOT),1)
140 CFLAGS += -DCOMPRESSED_UBOOT=1
141 else
142 CFLAGS += -DCOMPRESSED_UBOOT=0
143 endif
144
145 ifeq ($(BUILD_OPTIMIZED),y)
146 CFLAGS += -Os -funit-at-a-time -mips32r2 -mtune=mips32r2
147 endif
148 endif
149
150 ifeq ($(BUILD_TYPE),jffs2)
151 CFLAGS += -DROOTFS=1
152 else
153 ifeq ($(BUILD_TYPE),squashfs)
154 CFLAGS += -DROOTFS=2
155 endif
156 endif
157
158 # avoid trigraph warnings while parsing pci.h (produced by NIOS gcc-2.9)
159 # this option have to be placed behind -Wall -- that's why it is here
160 ifeq ($(ARCH),nios)
161 ifeq ($(findstring 2.9,$(shell $(CC) --version)),2.9)
162 CFLAGS := $(CPPFLAGS) -Wall -Wno-trigraphs
163 endif
164 endif
165
166 ifeq ($(BUILD_TYPE),jffs2)
167 CFLAGS += -DROOTFS=1
168 else
169 ifeq ($(BUILD_TYPE),squashfs)
170 CFLAGS += -DROOTFS=2
171 endif
172 endif
173
174 AFLAGS_DEBUG := -Wa,-gstabs
175
176 AFLAGS := $(AFLAGS_DEBUG) -D__ASSEMBLY__ $(CPPFLAGS)
177 ifeq ($(COMPRESSED_UBOOT),1)
178 AFLAGS += -DCOMPRESSED_UBOOT=1
179 else
180 AFLAGS += -DCOMPRESSED_UBOOT=0
181 endif
182
183 LDFLAGS += -Bstatic -T $(LDSCRIPT) -Ttext $(TEXT_BASE) $(PLATFORM_LDFLAGS)
184
185 ifeq ($(COMPRESSED_UBOOT), 1)
186 LDFLAGS_BOOTSTRAP += -Bstatic -T $(LDSCRIPT_BOOTSTRAP) -Ttext $(BOOTSTRAP_TEXT_BASE) $(PLATFORM_LDFLAGS)
187 endif
188
189 # Location of a usable BFD library, where we define "usable" as
190 # "built for ${HOST}, supports ${TARGET}".  Sensible values are
191 # - When cross-compiling: the root of the cross-environment
192 # - Linux/ppc (native): /usr
193 # - NetBSD/ppc (native): you lose ... (must extract these from the
194 #   binutils build directory, plus the native and U-Boot include
195 #   files don't like each other)
196 #
197 # So far, this is used only by tools/gdb/Makefile.
198
199 ifeq ($(HOSTOS)-$(HOSTARCH),darwin-ppc)
200 BFD_ROOT_DIR =          /usr/local/tools
201 else
202 ifeq ($(HOSTARCH),$(ARCH))
203 # native
204 BFD_ROOT_DIR =          /usr
205 else
206 #BFD_ROOT_DIR =         /LinuxPPC/CDK           # Linux/i386
207 #BFD_ROOT_DIR =         /usr/pkg/cross          # NetBSD/i386
208 BFD_ROOT_DIR =          /opt/powerpc
209 endif
210 endif
211
212 ifeq ($(PCI_CLOCK),PCI_66M)
213 CFLAGS := $(CFLAGS) -DPCI_66M
214 endif
215
216 #CFLAGS += $(UBOOT_GCC_4_3_3_EXTRA_CFLAGS) -g
217 CFLAGS += $(UBOOT_GCC_4_3_3_EXTRA_CFLAGS)
218
219 #########################################################################
220
221 export  CONFIG_SHELL HPATH HOSTCC HOSTCFLAGS CROSS_COMPILE \
222         AS LD CC CPP AR NM STRIP OBJCOPY OBJDUMP \
223         MAKE
224 export  TEXT_BASE PLATFORM_CPPFLAGS PLATFORM_RELFLAGS CPPFLAGS CFLAGS AFLAGS
225
226 ifeq ($(V),1)
227   Q =
228 else
229   Q = @
230 endif
231
232 export quiet Q V
233
234 #########################################################################
235
236 %.s:    %.S
237 ifneq ($(V),1)
238         @echo [CPP] $(CURDIR)/$<
239 endif
240         $(Q)$(CPP) $(AFLAGS) -o $@ $(CURDIR)/$<
241
242 %.o:    %.S
243 ifneq ($(V),1)
244         @echo [CC] $(CURDIR)/$<
245 endif
246         $(Q)$(CC) $(AFLAGS) -c -o $@ $(CURDIR)/$<
247
248 %.o:    %.c
249 ifneq ($(V),1)
250         @echo [CC] $(CURDIR)/$<
251 endif
252         $(Q)$(CC) $(CFLAGS) -c -o $@ $<
253
254 #########################################################################