wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1 | # |
| 2 | # (C) Copyright 2000, 2001, 2002 |
| 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 | HOSTARCH := $(shell uname -m | \ |
| 25 | sed -e s/i.86/i386/ \ |
| 26 | -e s/sun4u/sparc64/ \ |
| 27 | -e s/arm.*/arm/ \ |
| 28 | -e s/sa110/arm/ \ |
| 29 | -e s/powerpc/ppc/ \ |
| 30 | -e s/macppc/ppc/) |
| 31 | |
| 32 | HOSTOS := $(shell uname -s | tr A-Z a-z | \ |
| 33 | sed -e 's/\(cygwin\).*/cygwin/') |
| 34 | |
| 35 | export HOSTARCH |
| 36 | |
| 37 | # Deal with colliding definitions from tcsh etc. |
| 38 | VENDOR= |
| 39 | |
| 40 | ######################################################################### |
| 41 | |
| 42 | TOPDIR := $(shell if [ "$$PWD" != "" ]; then echo $$PWD; else pwd; fi) |
| 43 | export TOPDIR |
| 44 | |
| 45 | ifeq (include/config.mk,$(wildcard include/config.mk)) |
| 46 | # load ARCH, BOARD, and CPU configuration |
| 47 | include include/config.mk |
| 48 | export ARCH CPU BOARD VENDOR |
| 49 | # load other configuration |
| 50 | include $(TOPDIR)/config.mk |
| 51 | |
| 52 | ifndef CROSS_COMPILE |
| 53 | ifeq ($(HOSTARCH),ppc) |
| 54 | CROSS_COMPILE = |
| 55 | else |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 56 | ifeq ($(ARCH),ppc) |
| 57 | CROSS_COMPILE = ppc_8xx- |
| 58 | endif |
| 59 | ifeq ($(ARCH),arm) |
wdenk | dc7c9a1 | 2003-03-26 06:55:25 +0000 | [diff] [blame] | 60 | CROSS_COMPILE = arm-linux- |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 61 | endif |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 62 | ifeq ($(ARCH),i386) |
wdenk | 7a8e9bed | 2003-05-31 18:35:21 +0000 | [diff] [blame] | 63 | ifeq ($(HOSTARCH),i386) |
| 64 | CROSS_COMPILE = |
| 65 | else |
| 66 | CROSS_COMPILE = i386-linux- |
| 67 | endif |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 68 | endif |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 69 | ifeq ($(ARCH),mips) |
| 70 | CROSS_COMPILE = mips_4KC- |
| 71 | endif |
wdenk | 4a55170 | 2003-10-08 23:26:14 +0000 | [diff] [blame] | 72 | ifeq ($(ARCH),nios) |
| 73 | CROSS_COMPILE = nios-elf- |
| 74 | endif |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 75 | endif |
| 76 | endif |
| 77 | |
| 78 | export CROSS_COMPILE |
| 79 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 80 | ######################################################################### |
| 81 | # U-Boot objects....order is important (i.e. start must be first) |
| 82 | |
| 83 | OBJS = cpu/$(CPU)/start.o |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 84 | ifeq ($(CPU),i386) |
| 85 | OBJS += cpu/$(CPU)/start16.o |
| 86 | OBJS += cpu/$(CPU)/reset.o |
| 87 | endif |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 88 | ifeq ($(CPU),ppc4xx) |
| 89 | OBJS += cpu/$(CPU)/resetvec.o |
| 90 | endif |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 91 | ifeq ($(CPU),mpc85xx) |
| 92 | OBJS += cpu/$(CPU)/resetvec.o |
| 93 | endif |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 94 | |
| 95 | LIBS = board/$(BOARDDIR)/lib$(BOARD).a |
| 96 | LIBS += cpu/$(CPU)/lib$(CPU).a |
| 97 | LIBS += lib_$(ARCH)/lib$(ARCH).a |
wdenk | 71f9511 | 2003-06-15 22:40:42 +0000 | [diff] [blame] | 98 | LIBS += fs/jffs2/libjffs2.a fs/fdos/libfdos.a fs/fat/libfat.a |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 99 | LIBS += net/libnet.a |
| 100 | LIBS += disk/libdisk.a |
| 101 | LIBS += rtc/librtc.a |
| 102 | LIBS += dtt/libdtt.a |
| 103 | LIBS += drivers/libdrivers.a |
wdenk | 7152b1d | 2003-09-05 23:19:14 +0000 | [diff] [blame] | 104 | LIBS += drivers/sk98lin/libsk98lin.a |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 105 | LIBS += post/libpost.a post/cpu/libcpu.a |
| 106 | LIBS += common/libcommon.a |
| 107 | LIBS += lib_generic/libgeneric.a |
wdenk | a8c7c70 | 2003-12-06 19:49:23 +0000 | [diff] [blame] | 108 | |
wdenk | 4f7cb08 | 2003-09-11 23:06:34 +0000 | [diff] [blame] | 109 | # Add GCC lib |
wdenk | fc3e216 | 2003-10-08 22:33:00 +0000 | [diff] [blame] | 110 | PLATFORM_LIBS += -L $(shell dirname `$(CC) $(CFLAGS) -print-libgcc-file-name`) -lgcc |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 111 | |
wdenk | a8c7c70 | 2003-12-06 19:49:23 +0000 | [diff] [blame] | 112 | # The "tools" are needed early, so put this first |
| 113 | # Don't include stuff already done in $(LIBS) |
| 114 | SUBDIRS = tools \ |
| 115 | examples \ |
| 116 | post \ |
| 117 | post/cpu |
wdenk | b028f71 | 2003-12-07 21:39:28 +0000 | [diff] [blame] | 118 | .PHONY : $(SUBDIRS) |
wdenk | a8c7c70 | 2003-12-06 19:49:23 +0000 | [diff] [blame] | 119 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 120 | ######################################################################### |
wdenk | bdccc4f | 2003-08-05 17:43:17 +0000 | [diff] [blame] | 121 | ######################################################################### |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 122 | |
wdenk | bdccc4f | 2003-08-05 17:43:17 +0000 | [diff] [blame] | 123 | ALL = u-boot.srec u-boot.bin System.map |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 124 | |
wdenk | bdccc4f | 2003-08-05 17:43:17 +0000 | [diff] [blame] | 125 | all: $(ALL) |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 126 | |
| 127 | u-boot.srec: u-boot |
| 128 | $(OBJCOPY) ${OBJCFLAGS} -O srec $< $@ |
| 129 | |
| 130 | u-boot.bin: u-boot |
| 131 | $(OBJCOPY) ${OBJCFLAGS} -O binary $< $@ |
| 132 | |
wdenk | bdccc4f | 2003-08-05 17:43:17 +0000 | [diff] [blame] | 133 | u-boot.img: u-boot.bin |
| 134 | ./tools/mkimage -A $(ARCH) -T firmware -C none \ |
| 135 | -a $(TEXT_BASE) -e 0 \ |
| 136 | -n $(shell sed -n -e 's/.*U_BOOT_VERSION//p' include/version.h | \ |
| 137 | sed -e 's/"[ ]*$$/ for $(BOARD) board"/') \ |
| 138 | -d $< $@ |
| 139 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 140 | u-boot.dis: u-boot |
| 141 | $(OBJDUMP) -d $< > $@ |
| 142 | |
wdenk | a8c7c70 | 2003-12-06 19:49:23 +0000 | [diff] [blame] | 143 | u-boot: depend $(SUBDIRS) $(OBJS) $(LIBS) $(LDSCRIPT) |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 144 | UNDEF_SYM=`$(OBJDUMP) -x $(LIBS) |sed -n -e 's/.*\(__u_boot_cmd_.*\)/-u\1/p'|sort|uniq`;\ |
| 145 | $(LD) $(LDFLAGS) $$UNDEF_SYM $(OBJS) \ |
wdenk | 7152b1d | 2003-09-05 23:19:14 +0000 | [diff] [blame] | 146 | --start-group $(LIBS) $(PLATFORM_LIBS) --end-group \ |
wdenk | b2184c3 | 2002-11-19 23:01:07 +0000 | [diff] [blame] | 147 | -Map u-boot.map -o u-boot |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 148 | |
wdenk | a8c7c70 | 2003-12-06 19:49:23 +0000 | [diff] [blame] | 149 | $(LIBS): |
| 150 | $(MAKE) -C `dirname $@` |
| 151 | |
| 152 | $(SUBDIRS): |
| 153 | @echo "#### MAKE $@ ####" |
wdenk | b028f71 | 2003-12-07 21:39:28 +0000 | [diff] [blame] | 154 | $(MAKE) -C $@ all |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 155 | |
dzu | 8f713fd | 2003-08-07 14:20:31 +0000 | [diff] [blame] | 156 | gdbtools: |
| 157 | $(MAKE) -C tools/gdb || exit 1 |
| 158 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 159 | depend dep: |
| 160 | @for dir in $(SUBDIRS) ; do $(MAKE) -C $$dir .depend ; done |
| 161 | |
| 162 | tags: |
| 163 | ctags -w `find $(SUBDIRS) include \ |
| 164 | \( -name CVS -prune \) -o \( -name '*.[ch]' -print \)` |
| 165 | |
| 166 | etags: |
| 167 | etags -a `find $(SUBDIRS) include \ |
| 168 | \( -name CVS -prune \) -o \( -name '*.[ch]' -print \)` |
| 169 | |
| 170 | System.map: u-boot |
| 171 | @$(NM) $< | \ |
| 172 | grep -v '\(compiled\)\|\(\.o$$\)\|\( [aUw] \)\|\(\.\.ng$$\)\|\(LASH[RL]DI\)' | \ |
| 173 | sort > System.map |
| 174 | |
| 175 | ######################################################################### |
| 176 | else |
| 177 | all install u-boot u-boot.srec depend dep: |
| 178 | @echo "System not configured - see README" >&2 |
| 179 | @ exit 1 |
| 180 | endif |
| 181 | |
| 182 | ######################################################################### |
| 183 | |
| 184 | unconfig: |
| 185 | rm -f include/config.h include/config.mk |
| 186 | |
| 187 | #======================================================================== |
| 188 | # PowerPC |
| 189 | #======================================================================== |
wdenk | 0db5bca | 2003-03-31 17:27:09 +0000 | [diff] [blame] | 190 | |
| 191 | ######################################################################### |
| 192 | ## MPC5xx Systems |
| 193 | ######################################################################### |
| 194 | |
| 195 | cmi_mpc5xx_config: unconfig |
| 196 | @./mkconfig $(@:_config=) ppc mpc5xx cmi |
| 197 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 198 | ######################################################################### |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 199 | ## MPC5xxx Systems |
| 200 | ######################################################################### |
wdenk | 5cf9da4 | 2003-11-07 13:42:26 +0000 | [diff] [blame] | 201 | MPC5200LITE_config \ |
| 202 | MPC5200LITE_LOWBOOT_config \ |
| 203 | MPC5200LITE_LOWBOOT08_config \ |
| 204 | icecube_5200_config \ |
| 205 | IceCube_5200_config \ |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 206 | IceCube_5100_config: unconfig |
| 207 | @ >include/config.h |
wdenk | 5cf9da4 | 2003-11-07 13:42:26 +0000 | [diff] [blame] | 208 | @[ -z "$(findstring LOWBOOT,$@)" ] || \ |
| 209 | { echo "TEXT_BASE = 0xFF000000" >board/icecube/config.tmp ; \ |
| 210 | echo "... with LOWBOOT configuration" ; \ |
| 211 | } |
| 212 | @[ -z "$(findstring LOWBOOT08,$@)" ] || \ |
| 213 | { echo "TEXT_BASE = 0xFF800000" >board/icecube/config.tmp ; \ |
| 214 | echo "... with 8 MB flash only" ; \ |
| 215 | } |
wdenk | a0f2fe5 | 2003-10-28 09:14:21 +0000 | [diff] [blame] | 216 | @[ -z "$(findstring 5200,$@)" ] || \ |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 217 | { echo "#define CONFIG_MPC5200" >>include/config.h ; \ |
| 218 | echo "... with MPC5200 processor" ; \ |
| 219 | } |
wdenk | a0f2fe5 | 2003-10-28 09:14:21 +0000 | [diff] [blame] | 220 | @[ -z "$(findstring 5100,$@)" ] || \ |
wdenk | 945af8d | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 221 | { echo "#define CONFIG_MGT5100" >>include/config.h ; \ |
| 222 | echo "... with MGT5100 processor" ; \ |
| 223 | } |
| 224 | @./mkconfig -a IceCube ppc mpc5xxx icecube |
| 225 | |
| 226 | ######################################################################### |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 227 | ## MPC8xx Systems |
| 228 | ######################################################################### |
| 229 | |
wdenk | 0cb61d7 | 2003-08-30 00:05:50 +0000 | [diff] [blame] | 230 | AdderII_config: unconfig |
| 231 | @./mkconfig $(@:_config=) ppc mpc8xx adderII |
| 232 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 233 | ADS860_config: unconfig |
| 234 | @./mkconfig $(@:_config=) ppc mpc8xx fads |
| 235 | |
| 236 | AMX860_config : unconfig |
| 237 | @./mkconfig $(@:_config=) ppc mpc8xx amx860 westel |
| 238 | |
wdenk | fd3103b | 2003-11-25 16:55:19 +0000 | [diff] [blame] | 239 | bms2003_config : unconfig |
| 240 | @echo "#define CONFIG_BMS2003" >include/config.h |
| 241 | @echo "#define CONFIG_LCD" >>include/config.h |
| 242 | @echo "#define CONFIG_NEC_NL6448BC33_54" >>include/config.h |
| 243 | @./mkconfig -a TQM823L ppc mpc8xx tqm8xx |
| 244 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 245 | c2mon_config: unconfig |
| 246 | @./mkconfig $(@:_config=) ppc mpc8xx c2mon |
| 247 | |
| 248 | CCM_config: unconfig |
| 249 | @./mkconfig $(@:_config=) ppc mpc8xx CCM siemens |
| 250 | |
| 251 | cogent_mpc8xx_config: unconfig |
| 252 | @./mkconfig $(@:_config=) ppc mpc8xx cogent |
| 253 | |
wdenk | 3bac351 | 2003-03-12 10:41:04 +0000 | [diff] [blame] | 254 | ELPT860_config: unconfig |
| 255 | @./mkconfig $(@:_config=) ppc mpc8xx elpt860 LEOX |
| 256 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 257 | ESTEEM192E_config: unconfig |
| 258 | @./mkconfig $(@:_config=) ppc mpc8xx esteem192e |
| 259 | |
| 260 | ETX094_config : unconfig |
| 261 | @./mkconfig $(@:_config=) ppc mpc8xx etx094 |
| 262 | |
| 263 | FADS823_config \ |
| 264 | FADS850SAR_config \ |
wdenk | 2535d60 | 2003-07-17 23:16:40 +0000 | [diff] [blame] | 265 | MPC86xADS_config \ |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 266 | FADS860T_config: unconfig |
| 267 | @./mkconfig $(@:_config=) ppc mpc8xx fads |
| 268 | |
| 269 | FLAGADM_config: unconfig |
| 270 | @./mkconfig $(@:_config=) ppc mpc8xx flagadm |
| 271 | |
wdenk | 7aa7861 | 2003-05-03 15:50:43 +0000 | [diff] [blame] | 272 | xtract_GEN860T = $(subst _SC,,$(subst _config,,$1)) |
| 273 | |
| 274 | GEN860T_SC_config \ |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 275 | GEN860T_config: unconfig |
wdenk | 7aa7861 | 2003-05-03 15:50:43 +0000 | [diff] [blame] | 276 | @ >include/config.h |
| 277 | @[ -z "$(findstring _SC,$@)" ] || \ |
| 278 | { echo "#define CONFIG_SC" >>include/config.h ; \ |
| 279 | echo "With reduced H/W feature set (SC)..." ; \ |
| 280 | } |
| 281 | @./mkconfig -a $(call xtract_GEN860T,$@) ppc mpc8xx gen860t |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 282 | |
| 283 | GENIETV_config: unconfig |
| 284 | @./mkconfig $(@:_config=) ppc mpc8xx genietv |
| 285 | |
| 286 | GTH_config: unconfig |
| 287 | @./mkconfig $(@:_config=) ppc mpc8xx gth |
| 288 | |
| 289 | hermes_config : unconfig |
| 290 | @./mkconfig $(@:_config=) ppc mpc8xx hermes |
| 291 | |
| 292 | IAD210_config: unconfig |
| 293 | @./mkconfig $(@:_config=) ppc mpc8xx IAD210 siemens |
| 294 | |
| 295 | xtract_ICU862 = $(subst _100MHz,,$(subst _config,,$1)) |
| 296 | |
| 297 | ICU862_100MHz_config \ |
| 298 | ICU862_config: unconfig |
| 299 | @ >include/config.h |
| 300 | @[ -z "$(findstring _100MHz,$@)" ] || \ |
| 301 | { echo "#define CONFIG_100MHz" >>include/config.h ; \ |
| 302 | echo "... with 100MHz system clock" ; \ |
| 303 | } |
| 304 | @./mkconfig -a $(call xtract_ICU862,$@) ppc mpc8xx icu862 |
| 305 | |
| 306 | IP860_config : unconfig |
| 307 | @./mkconfig $(@:_config=) ppc mpc8xx ip860 |
| 308 | |
| 309 | IVML24_256_config \ |
| 310 | IVML24_128_config \ |
| 311 | IVML24_config: unconfig |
| 312 | @ >include/config.h |
| 313 | @[ -z "$(findstring IVML24_config,$@)" ] || \ |
| 314 | { echo "#define CONFIG_IVML24_16M" >>include/config.h ; \ |
| 315 | } |
| 316 | @[ -z "$(findstring IVML24_128_config,$@)" ] || \ |
| 317 | { echo "#define CONFIG_IVML24_32M" >>include/config.h ; \ |
| 318 | } |
| 319 | @[ -z "$(findstring IVML24_256_config,$@)" ] || \ |
| 320 | { echo "#define CONFIG_IVML24_64M" >>include/config.h ; \ |
| 321 | } |
| 322 | @./mkconfig -a IVML24 ppc mpc8xx ivm |
| 323 | |
| 324 | IVMS8_256_config \ |
| 325 | IVMS8_128_config \ |
| 326 | IVMS8_config: unconfig |
| 327 | @ >include/config.h |
| 328 | @[ -z "$(findstring IVMS8_config,$@)" ] || \ |
| 329 | { echo "#define CONFIG_IVMS8_16M" >>include/config.h ; \ |
| 330 | } |
| 331 | @[ -z "$(findstring IVMS8_128_config,$@)" ] || \ |
| 332 | { echo "#define CONFIG_IVMS8_32M" >>include/config.h ; \ |
| 333 | } |
| 334 | @[ -z "$(findstring IVMS8_256_config,$@)" ] || \ |
| 335 | { echo "#define CONFIG_IVMS8_64M" >>include/config.h ; \ |
| 336 | } |
| 337 | @./mkconfig -a IVMS8 ppc mpc8xx ivm |
| 338 | |
wdenk | 56f94be | 2002-11-05 16:35:14 +0000 | [diff] [blame] | 339 | KUP4K_config : unconfig |
| 340 | @./mkconfig $(@:_config=) ppc mpc8xx kup4k |
| 341 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 342 | LANTEC_config : unconfig |
| 343 | @./mkconfig $(@:_config=) ppc mpc8xx lantec |
| 344 | |
| 345 | lwmon_config: unconfig |
| 346 | @./mkconfig $(@:_config=) ppc mpc8xx lwmon |
| 347 | |
| 348 | MBX_config \ |
| 349 | MBX860T_config: unconfig |
| 350 | @./mkconfig $(@:_config=) ppc mpc8xx mbx8xx |
| 351 | |
| 352 | MHPC_config: unconfig |
| 353 | @./mkconfig $(@:_config=) ppc mpc8xx mhpc eltec |
| 354 | |
| 355 | MVS1_config : unconfig |
| 356 | @./mkconfig $(@:_config=) ppc mpc8xx mvs1 |
| 357 | |
wdenk | 993cad9 | 2003-06-26 22:04:09 +0000 | [diff] [blame] | 358 | xtract_NETVIA = $(subst _V2,,$(subst _config,,$1)) |
| 359 | |
| 360 | NETVIA_V2_config \ |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 361 | NETVIA_config: unconfig |
wdenk | 993cad9 | 2003-06-26 22:04:09 +0000 | [diff] [blame] | 362 | @ >include/config.h |
| 363 | @[ -z "$(findstring NETVIA_config,$@)" ] || \ |
| 364 | { echo "#define CONFIG_NETVIA_VERSION 1" >>include/config.h ; \ |
| 365 | echo "... Version 1" ; \ |
| 366 | } |
| 367 | @[ -z "$(findstring NETVIA_V2_config,$@)" ] || \ |
| 368 | { echo "#define CONFIG_NETVIA_VERSION 2" >>include/config.h ; \ |
| 369 | echo "... Version 2" ; \ |
| 370 | } |
| 371 | @./mkconfig -a $(call xtract_NETVIA,$@) ppc mpc8xx netvia |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 372 | |
| 373 | NX823_config: unconfig |
| 374 | @./mkconfig $(@:_config=) ppc mpc8xx nx823 |
| 375 | |
| 376 | pcu_e_config: unconfig |
| 377 | @./mkconfig $(@:_config=) ppc mpc8xx pcu_e siemens |
| 378 | |
wdenk | 3bbc899 | 2003-12-07 22:27:15 +0000 | [diff] [blame^] | 379 | QS850_config: unconfig |
| 380 | @./mkconfig $(@:_config=) ppc mpc8xx qs850 snmc |
| 381 | |
| 382 | QS823_config: unconfig |
| 383 | @./mkconfig $(@:_config=) ppc mpc8xx qs850 snmc |
| 384 | |
| 385 | QS860T_config: unconfig |
| 386 | @./mkconfig $(@:_config=) ppc mpc8xx qs860t snmc |
| 387 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 388 | R360MPI_config: unconfig |
| 389 | @./mkconfig $(@:_config=) ppc mpc8xx r360mpi |
| 390 | |
wdenk | 682011f | 2003-06-03 23:54:09 +0000 | [diff] [blame] | 391 | RBC823_config: unconfig |
| 392 | @./mkconfig $(@:_config=) ppc mpc8xx rbc823 |
| 393 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 394 | RPXClassic_config: unconfig |
| 395 | @./mkconfig $(@:_config=) ppc mpc8xx RPXClassic |
| 396 | |
| 397 | RPXlite_config: unconfig |
| 398 | @./mkconfig $(@:_config=) ppc mpc8xx RPXlite |
| 399 | |
wdenk | 73a8b27 | 2003-06-05 19:27:42 +0000 | [diff] [blame] | 400 | rmu_config: unconfig |
| 401 | @./mkconfig $(@:_config=) ppc mpc8xx rmu |
| 402 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 403 | RRvision_config: unconfig |
| 404 | @./mkconfig $(@:_config=) ppc mpc8xx RRvision |
| 405 | |
| 406 | RRvision_LCD_config: unconfig |
| 407 | @echo "#define CONFIG_LCD" >include/config.h |
| 408 | @echo "#define CONFIG_SHARP_LQ104V7DS01" >>include/config.h |
| 409 | @./mkconfig -a RRvision ppc mpc8xx RRvision |
| 410 | |
| 411 | SM850_config : unconfig |
| 412 | @./mkconfig $(@:_config=) ppc mpc8xx tqm8xx |
| 413 | |
| 414 | SPD823TS_config: unconfig |
| 415 | @./mkconfig $(@:_config=) ppc mpc8xx spd8xx |
| 416 | |
wdenk | dc7c9a1 | 2003-03-26 06:55:25 +0000 | [diff] [blame] | 417 | svm_sc8xx_config: unconfig |
| 418 | @ >include/config.h |
| 419 | @./mkconfig $(@:_config=) ppc mpc8xx svm_sc8xx |
| 420 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 421 | SXNI855T_config: unconfig |
| 422 | @./mkconfig $(@:_config=) ppc mpc8xx sixnet |
| 423 | |
wdenk | db2f721f | 2003-03-06 00:58:30 +0000 | [diff] [blame] | 424 | # EMK MPC8xx based modules |
| 425 | TOP860_config: unconfig |
| 426 | @./mkconfig $(@:_config=) ppc mpc8xx top860 emk |
| 427 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 428 | # Play some tricks for configuration selection |
wdenk | 73a8b27 | 2003-06-05 19:27:42 +0000 | [diff] [blame] | 429 | # All boards can come with 50 MHz (default), 66MHz, 80MHz or 100 MHz clock, |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 430 | # but only 855 and 860 boards may come with FEC |
| 431 | # and 823 boards may have LCD support |
wdenk | 73a8b27 | 2003-06-05 19:27:42 +0000 | [diff] [blame] | 432 | xtract_8xx = $(subst _66MHz,,$(subst _80MHz,,$(subst _100MHz,,$(subst _LCD,,$(subst _config,,$1))))) |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 433 | |
| 434 | FPS850L_config \ |
wdenk | 384ae02 | 2002-11-05 00:17:55 +0000 | [diff] [blame] | 435 | FPS860L_config \ |
wdenk | f12e568 | 2003-07-07 20:07:54 +0000 | [diff] [blame] | 436 | NSCU_config \ |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 437 | TQM823L_config \ |
| 438 | TQM823L_66MHz_config \ |
| 439 | TQM823L_80MHz_config \ |
| 440 | TQM823L_LCD_config \ |
| 441 | TQM823L_LCD_66MHz_config \ |
| 442 | TQM823L_LCD_80MHz_config \ |
| 443 | TQM850L_config \ |
| 444 | TQM850L_66MHz_config \ |
| 445 | TQM850L_80MHz_config \ |
| 446 | TQM855L_config \ |
| 447 | TQM855L_66MHz_config \ |
| 448 | TQM855L_80MHz_config \ |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 449 | TQM860L_config \ |
| 450 | TQM860L_66MHz_config \ |
| 451 | TQM860L_80MHz_config \ |
wdenk | d126bfb | 2003-04-10 11:18:18 +0000 | [diff] [blame] | 452 | TQM862L_config \ |
| 453 | TQM862L_66MHz_config \ |
wdenk | 73a8b27 | 2003-06-05 19:27:42 +0000 | [diff] [blame] | 454 | TQM862L_80MHz_config \ |
wdenk | ae3af05 | 2003-08-07 22:18:11 +0000 | [diff] [blame] | 455 | TQM823M_config \ |
| 456 | TQM823M_66MHz_config \ |
| 457 | TQM823M_80MHz_config \ |
| 458 | TQM850M_config \ |
| 459 | TQM850M_66MHz_config \ |
| 460 | TQM850M_80MHz_config \ |
wdenk | f12e568 | 2003-07-07 20:07:54 +0000 | [diff] [blame] | 461 | TQM855M_config \ |
| 462 | TQM855M_66MHz_config \ |
| 463 | TQM855M_80MHz_config \ |
| 464 | TQM860M_config \ |
| 465 | TQM860M_66MHz_config \ |
| 466 | TQM860M_80MHz_config \ |
| 467 | TQM862M_config \ |
| 468 | TQM862M_66MHz_config \ |
| 469 | TQM862M_80MHz_config \ |
wdenk | 71f9511 | 2003-06-15 22:40:42 +0000 | [diff] [blame] | 470 | TQM862M_100MHz_config: unconfig |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 471 | @ >include/config.h |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 472 | @[ -z "$(findstring _66MHz,$@)" ] || \ |
| 473 | { echo "#define CONFIG_66MHz" >>include/config.h ; \ |
| 474 | echo "... with 66MHz system clock" ; \ |
| 475 | } |
| 476 | @[ -z "$(findstring _80MHz,$@)" ] || \ |
| 477 | { echo "#define CONFIG_80MHz" >>include/config.h ; \ |
| 478 | echo "... with 80MHz system clock" ; \ |
| 479 | } |
wdenk | 73a8b27 | 2003-06-05 19:27:42 +0000 | [diff] [blame] | 480 | @[ -z "$(findstring _100MHz,$@)" ] || \ |
| 481 | { echo "#define CONFIG_100MHz" >>include/config.h ; \ |
| 482 | echo "... with 100MHz system clock" ; \ |
| 483 | } |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 484 | @[ -z "$(findstring _LCD,$@)" ] || \ |
| 485 | { echo "#define CONFIG_LCD" >>include/config.h ; \ |
wdenk | fd3103b | 2003-11-25 16:55:19 +0000 | [diff] [blame] | 486 | echo "#define CONFIG_NEC_NL6448BC20" >>include/config.h ; \ |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 487 | echo "... with LCD display" ; \ |
| 488 | } |
| 489 | @./mkconfig -a $(call xtract_8xx,$@) ppc mpc8xx tqm8xx |
| 490 | |
| 491 | TTTech_config: unconfig |
| 492 | @echo "#define CONFIG_LCD" >include/config.h |
| 493 | @echo "#define CONFIG_SHARP_LQ104V7DS01" >>include/config.h |
| 494 | @./mkconfig -a TQM823L ppc mpc8xx tqm8xx |
| 495 | |
wdenk | 608c914 | 2003-01-13 23:54:46 +0000 | [diff] [blame] | 496 | v37_config: unconfig |
| 497 | @echo "#define CONFIG_LCD" >include/config.h |
| 498 | @echo "#define CONFIG_SHARP_LQ084V1DG21" >>include/config.h |
| 499 | @./mkconfig $(@:_config=) ppc mpc8xx v37 |
| 500 | |
dzu | 91e940d | 2003-09-25 22:32:40 +0000 | [diff] [blame] | 501 | wtk_config: unconfig |
| 502 | @echo "#define CONFIG_LCD" >include/config.h |
| 503 | @echo "#define CONFIG_SHARP_LQ065T9DR51U" >>include/config.h |
| 504 | @./mkconfig -a TQM823L ppc mpc8xx tqm8xx |
| 505 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 506 | ######################################################################### |
| 507 | ## PPC4xx Systems |
| 508 | ######################################################################### |
wdenk | fbe4b5c | 2003-10-06 21:55:32 +0000 | [diff] [blame] | 509 | xtract_4xx = $(subst _MODEL_BA,,$(subst _MODEL_ME,,$(subst _MODEL_HI,,$(subst _config,,$1)))) |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 510 | |
| 511 | ADCIOP_config: unconfig |
| 512 | @./mkconfig $(@:_config=) ppc ppc4xx adciop esd |
| 513 | |
| 514 | AR405_config: unconfig |
| 515 | @./mkconfig $(@:_config=) ppc ppc4xx ar405 esd |
| 516 | |
stroese | 549826e | 2003-05-23 11:41:44 +0000 | [diff] [blame] | 517 | ASH405_config: unconfig |
| 518 | @./mkconfig $(@:_config=) ppc ppc4xx ash405 esd |
| 519 | |
| 520 | BUBINGA405EP_config:unconfig |
| 521 | @./mkconfig $(@:_config=) ppc ppc4xx bubinga405ep |
| 522 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 523 | CANBT_config: unconfig |
| 524 | @./mkconfig $(@:_config=) ppc ppc4xx canbt esd |
| 525 | |
stroese | 549826e | 2003-05-23 11:41:44 +0000 | [diff] [blame] | 526 | CPCI405_config \ |
| 527 | CPCI4052_config \ |
| 528 | CPCI405AB_config: unconfig |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 529 | @./mkconfig $(@:_config=) ppc ppc4xx cpci405 esd |
| 530 | @echo "BOARD_REVISION = $(@:_config=)" >>include/config.mk |
| 531 | |
| 532 | CPCI440_config: unconfig |
| 533 | @./mkconfig $(@:_config=) ppc ppc4xx cpci440 esd |
| 534 | |
| 535 | CPCIISER4_config: unconfig |
| 536 | @./mkconfig $(@:_config=) ppc ppc4xx cpciiser4 esd |
| 537 | |
| 538 | CRAYL1_config:unconfig |
| 539 | @./mkconfig $(@:_config=) ppc ppc4xx L1 cray |
| 540 | |
| 541 | DASA_SIM_config: unconfig |
| 542 | @./mkconfig $(@:_config=) ppc ppc4xx dasa_sim esd |
| 543 | |
stroese | 72cd5aa | 2003-09-12 08:57:15 +0000 | [diff] [blame] | 544 | DP405_config: unconfig |
| 545 | @./mkconfig $(@:_config=) ppc ppc4xx dp405 esd |
| 546 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 547 | DU405_config: unconfig |
| 548 | @./mkconfig $(@:_config=) ppc ppc4xx du405 esd |
| 549 | |
| 550 | EBONY_config:unconfig |
| 551 | @./mkconfig $(@:_config=) ppc ppc4xx ebony |
| 552 | |
| 553 | ERIC_config:unconfig |
| 554 | @./mkconfig $(@:_config=) ppc ppc4xx eric |
| 555 | |
wdenk | d1cbe85 | 2003-06-28 17:24:46 +0000 | [diff] [blame] | 556 | EXBITGEN_config:unconfig |
| 557 | @./mkconfig $(@:_config=) ppc ppc4xx exbitgen |
| 558 | |
stroese | 72cd5aa | 2003-09-12 08:57:15 +0000 | [diff] [blame] | 559 | HUB405_config: unconfig |
| 560 | @./mkconfig $(@:_config=) ppc ppc4xx hub405 esd |
| 561 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 562 | MIP405_config:unconfig |
| 563 | @./mkconfig $(@:_config=) ppc ppc4xx mip405 mpl |
| 564 | |
wdenk | f3e0de6 | 2003-06-04 15:05:30 +0000 | [diff] [blame] | 565 | MIP405T_config:unconfig |
| 566 | @echo "#define CONFIG_MIP405T" >include/config.h |
| 567 | @echo "Enable subset config for MIP405T" |
| 568 | @./mkconfig -a MIP405 ppc ppc4xx mip405 mpl |
| 569 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 570 | ML2_config:unconfig |
| 571 | @./mkconfig $(@:_config=) ppc ppc4xx ml2 |
| 572 | |
| 573 | OCRTC_config \ |
| 574 | ORSG_config: unconfig |
| 575 | @./mkconfig $(@:_config=) ppc ppc4xx ocrtc esd |
| 576 | |
| 577 | PCI405_config: unconfig |
| 578 | @./mkconfig $(@:_config=) ppc ppc4xx pci405 esd |
| 579 | |
| 580 | PIP405_config:unconfig |
| 581 | @./mkconfig $(@:_config=) ppc ppc4xx pip405 mpl |
| 582 | |
stroese | 72cd5aa | 2003-09-12 08:57:15 +0000 | [diff] [blame] | 583 | PLU405_config: unconfig |
| 584 | @./mkconfig $(@:_config=) ppc ppc4xx plu405 esd |
| 585 | |
stroese | 549826e | 2003-05-23 11:41:44 +0000 | [diff] [blame] | 586 | PMC405_config: unconfig |
| 587 | @./mkconfig $(@:_config=) ppc ppc4xx pmc405 esd |
| 588 | |
wdenk | fbe4b5c | 2003-10-06 21:55:32 +0000 | [diff] [blame] | 589 | PPChameleonEVB_MODEL_BA_config \ |
| 590 | PPChameleonEVB_MODEL_ME_config \ |
| 591 | PPChameleonEVB_MODEL_HI_config \ |
wdenk | 12f3424 | 2003-09-02 22:48:03 +0000 | [diff] [blame] | 592 | PPChameleonEVB_config: unconfig |
wdenk | fbe4b5c | 2003-10-06 21:55:32 +0000 | [diff] [blame] | 593 | @ >include/config.h |
| 594 | @[ -z "$(findstring _MODEL_BA,$@)" ] || \ |
| 595 | { echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 0" >>include/config.h ; \ |
| 596 | echo "... BASIC model" ; \ |
| 597 | } |
| 598 | @[ -z "$(findstring _MODEL_ME,$@)" ] || \ |
| 599 | { echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 1" >>include/config.h ; \ |
| 600 | echo "... MEDIUM model" ; \ |
| 601 | } |
| 602 | @[ -z "$(findstring _MODEL_HI,$@)" ] || \ |
| 603 | { echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 2" >>include/config.h ; \ |
| 604 | echo "... HIGH-END model" ; \ |
| 605 | } |
| 606 | @./mkconfig -a $(call xtract_4xx,$@) ppc ppc4xx PPChameleonEVB dave |
wdenk | 12f3424 | 2003-09-02 22:48:03 +0000 | [diff] [blame] | 607 | |
stroese | 72cd5aa | 2003-09-12 08:57:15 +0000 | [diff] [blame] | 608 | VOH405_config: unconfig |
| 609 | @./mkconfig $(@:_config=) ppc ppc4xx voh405 esd |
| 610 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 611 | W7OLMC_config \ |
| 612 | W7OLMG_config: unconfig |
| 613 | @./mkconfig $(@:_config=) ppc ppc4xx w7o |
| 614 | |
| 615 | WALNUT405_config:unconfig |
| 616 | @./mkconfig $(@:_config=) ppc ppc4xx walnut405 |
| 617 | |
| 618 | ######################################################################### |
| 619 | ## MPC824x Systems |
| 620 | ######################################################################### |
wdenk | 3bac351 | 2003-03-12 10:41:04 +0000 | [diff] [blame] | 621 | xtract_82xx = $(subst _ROMBOOT,,$(subst _L2,,$(subst _266MHz,,$(subst _300MHz,,$(subst _config,,$1))))) |
| 622 | |
wdenk | 0332990 | 2003-06-20 22:36:30 +0000 | [diff] [blame] | 623 | A3000_config: unconfig |
| 624 | @./mkconfig $(@:_config=) ppc mpc824x a3000 |
| 625 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 626 | BMW_config: unconfig |
| 627 | @./mkconfig $(@:_config=) ppc mpc824x bmw |
| 628 | |
wdenk | 3bac351 | 2003-03-12 10:41:04 +0000 | [diff] [blame] | 629 | CPC45_config \ |
| 630 | CPC45_ROMBOOT_config: unconfig |
| 631 | @./mkconfig $(call xtract_82xx,$@) ppc mpc824x cpc45 |
| 632 | @cd ./include ; \ |
| 633 | if [ "$(findstring _ROMBOOT_,$@)" ] ; then \ |
| 634 | echo "CONFIG_BOOT_ROM = y" >> config.mk ; \ |
| 635 | echo "... booting from 8-bit flash" ; \ |
| 636 | else \ |
| 637 | echo "CONFIG_BOOT_ROM = n" >> config.mk ; \ |
| 638 | echo "... booting from 64-bit flash" ; \ |
| 639 | fi; \ |
| 640 | echo "export CONFIG_BOOT_ROM" >> config.mk; |
| 641 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 642 | CU824_config: unconfig |
| 643 | @./mkconfig $(@:_config=) ppc mpc824x cu824 |
| 644 | |
| 645 | MOUSSE_config: unconfig |
| 646 | @./mkconfig $(@:_config=) ppc mpc824x mousse |
| 647 | |
| 648 | MUSENKI_config: unconfig |
| 649 | @./mkconfig $(@:_config=) ppc mpc824x musenki |
| 650 | |
wdenk | b4676a2 | 2003-12-07 19:24:00 +0000 | [diff] [blame] | 651 | MVBLUE_config: unconfig |
| 652 | @./mkconfig $(@:_config=) ppc mpc824x mvblue |
| 653 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 654 | OXC_config: unconfig |
| 655 | @./mkconfig $(@:_config=) ppc mpc824x oxc |
| 656 | |
| 657 | PN62_config: unconfig |
| 658 | @./mkconfig $(@:_config=) ppc mpc824x pn62 |
| 659 | |
| 660 | Sandpoint8240_config: unconfig |
| 661 | @./mkconfig $(@:_config=) ppc mpc824x sandpoint |
| 662 | |
| 663 | Sandpoint8245_config: unconfig |
| 664 | @./mkconfig $(@:_config=) ppc mpc824x sandpoint |
| 665 | |
wdenk | d1cbe85 | 2003-06-28 17:24:46 +0000 | [diff] [blame] | 666 | SL8245_config: unconfig |
| 667 | @./mkconfig $(@:_config=) ppc mpc824x sl8245 |
| 668 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 669 | utx8245_config: unconfig |
| 670 | @./mkconfig $(@:_config=) ppc mpc824x utx8245 |
| 671 | |
| 672 | ######################################################################### |
| 673 | ## MPC8260 Systems |
| 674 | ######################################################################### |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 675 | |
wdenk | 54387ac | 2003-10-08 22:45:44 +0000 | [diff] [blame] | 676 | atc_config: unconfig |
| 677 | @./mkconfig $(@:_config=) ppc mpc8260 atc |
| 678 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 679 | cogent_mpc8260_config: unconfig |
| 680 | @./mkconfig $(@:_config=) ppc mpc8260 cogent |
| 681 | |
| 682 | CPU86_config \ |
| 683 | CPU86_ROMBOOT_config: unconfig |
| 684 | @./mkconfig $(call xtract_82xx,$@) ppc mpc8260 cpu86 |
| 685 | @cd ./include ; \ |
| 686 | if [ "$(findstring _ROMBOOT_,$@)" ] ; then \ |
| 687 | echo "CONFIG_BOOT_ROM = y" >> config.mk ; \ |
| 688 | echo "... booting from 8-bit flash" ; \ |
| 689 | else \ |
| 690 | echo "CONFIG_BOOT_ROM = n" >> config.mk ; \ |
| 691 | echo "... booting from 64-bit flash" ; \ |
| 692 | fi; \ |
| 693 | echo "export CONFIG_BOOT_ROM" >> config.mk; |
| 694 | |
| 695 | ep8260_config: unconfig |
| 696 | @./mkconfig $(@:_config=) ppc mpc8260 ep8260 |
| 697 | |
| 698 | gw8260_config: unconfig |
| 699 | @./mkconfig $(@:_config=) ppc mpc8260 gw8260 |
| 700 | |
| 701 | hymod_config: unconfig |
| 702 | @./mkconfig $(@:_config=) ppc mpc8260 hymod |
| 703 | |
| 704 | IPHASE4539_config: unconfig |
| 705 | @./mkconfig $(@:_config=) ppc mpc8260 iphase4539 |
| 706 | |
| 707 | MPC8260ADS_config: unconfig |
| 708 | @./mkconfig $(@:_config=) ppc mpc8260 mpc8260ads |
| 709 | |
wdenk | db2f721f | 2003-03-06 00:58:30 +0000 | [diff] [blame] | 710 | MPC8266ADS_config: unconfig |
| 711 | @./mkconfig $(@:_config=) ppc mpc8260 mpc8266ads |
| 712 | |
wdenk | 10f6701 | 2003-03-25 18:06:06 +0000 | [diff] [blame] | 713 | PM825_config \ |
| 714 | PM825_ROMBOOT_config: unconfig |
| 715 | @echo "#define CONFIG_PCI" >include/config.h |
| 716 | @./mkconfig -a PM826 ppc mpc8260 pm826 |
| 717 | @cd ./include ; \ |
| 718 | if [ "$(findstring _ROMBOOT_,$@)" ] ; then \ |
| 719 | echo "CONFIG_BOOT_ROM = y" >> config.mk ; \ |
| 720 | echo "... booting from 8-bit flash" ; \ |
| 721 | else \ |
| 722 | echo "CONFIG_BOOT_ROM = n" >> config.mk ; \ |
| 723 | echo "... booting from 64-bit flash" ; \ |
| 724 | fi; \ |
| 725 | echo "export CONFIG_BOOT_ROM" >> config.mk; \ |
| 726 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 727 | PM826_config \ |
| 728 | PM826_ROMBOOT_config: unconfig |
| 729 | @./mkconfig $(call xtract_82xx,$@) ppc mpc8260 pm826 |
| 730 | @cd ./include ; \ |
| 731 | if [ "$(findstring _ROMBOOT_,$@)" ] ; then \ |
| 732 | echo "CONFIG_BOOT_ROM = y" >> config.mk ; \ |
| 733 | echo "... booting from 8-bit flash" ; \ |
| 734 | else \ |
| 735 | echo "CONFIG_BOOT_ROM = n" >> config.mk ; \ |
| 736 | echo "... booting from 64-bit flash" ; \ |
| 737 | fi; \ |
| 738 | echo "export CONFIG_BOOT_ROM" >> config.mk; \ |
| 739 | |
| 740 | ppmc8260_config: unconfig |
| 741 | @./mkconfig $(@:_config=) ppc mpc8260 ppmc8260 |
| 742 | |
| 743 | RPXsuper_config: unconfig |
| 744 | @./mkconfig $(@:_config=) ppc mpc8260 rpxsuper |
| 745 | |
| 746 | rsdproto_config: unconfig |
| 747 | @./mkconfig $(@:_config=) ppc mpc8260 rsdproto |
| 748 | |
| 749 | sacsng_config: unconfig |
| 750 | @./mkconfig $(@:_config=) ppc mpc8260 sacsng |
| 751 | |
| 752 | sbc8260_config: unconfig |
| 753 | @./mkconfig $(@:_config=) ppc mpc8260 sbc8260 |
| 754 | |
| 755 | SCM_config: unconfig |
| 756 | @./mkconfig $(@:_config=) ppc mpc8260 SCM siemens |
| 757 | |
wdenk | 27b207f | 2003-07-24 23:38:38 +0000 | [diff] [blame] | 758 | TQM8255_AA_config \ |
| 759 | TQM8260_AA_config \ |
| 760 | TQM8260_AB_config \ |
| 761 | TQM8260_AC_config \ |
| 762 | TQM8260_AD_config \ |
| 763 | TQM8260_AE_config \ |
| 764 | TQM8260_AF_config \ |
| 765 | TQM8260_AG_config \ |
| 766 | TQM8260_AH_config \ |
| 767 | TQM8265_AA_config: unconfig |
| 768 | @case "$@" in \ |
| 769 | TQM8255_AA_config) CTYPE=MPC8255; CFREQ=300; CACHE=no; BMODE=8260;; \ |
| 770 | TQM8260_AA_config) CTYPE=MPC8260; CFREQ=200; CACHE=no; BMODE=8260;; \ |
| 771 | TQM8260_AB_config) CTYPE=MPC8260; CFREQ=200; CACHE=yes; BMODE=60x;; \ |
| 772 | TQM8260_AC_config) CTYPE=MPC8260; CFREQ=200; CACHE=yes; BMODE=60x;; \ |
| 773 | TQM8260_AD_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=60x;; \ |
| 774 | TQM8260_AE_config) CTYPE=MPC8260; CFREQ=266; CACHE=no; BMODE=8260;; \ |
| 775 | TQM8260_AF_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=60x;; \ |
| 776 | TQM8260_AG_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=8260;; \ |
| 777 | TQM8260_AH_config) CTYPE=MPC8260; CFREQ=300; CACHE=yes; BMODE=60x;; \ |
| 778 | TQM8265_AA_config) CTYPE=MPC8265; CFREQ=300; CACHE=no; BMODE=60x;; \ |
| 779 | esac; \ |
| 780 | >include/config.h ; \ |
| 781 | if [ "$${CTYPE}" != "MPC8260" ] ; then \ |
| 782 | echo "#define CONFIG_$${CTYPE}" >>include/config.h ; \ |
| 783 | fi; \ |
| 784 | echo "#define CONFIG_$${CFREQ}MHz" >>include/config.h ; \ |
| 785 | echo "... with $${CFREQ}MHz system clock" ; \ |
| 786 | if [ "$${CACHE}" == "yes" ] ; then \ |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 787 | echo "#define CONFIG_L2_CACHE" >>include/config.h ; \ |
wdenk | 27b207f | 2003-07-24 23:38:38 +0000 | [diff] [blame] | 788 | echo "... with L2 Cache support" ; \ |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 789 | else \ |
| 790 | echo "#undef CONFIG_L2_CACHE" >>include/config.h ; \ |
| 791 | echo "... without L2 Cache support" ; \ |
wdenk | 27b207f | 2003-07-24 23:38:38 +0000 | [diff] [blame] | 792 | fi; \ |
| 793 | if [ "$${BMODE}" == "60x" ] ; then \ |
| 794 | echo "#define CONFIG_BUSMODE_60x" >>include/config.h ; \ |
| 795 | echo "... with 60x Bus Mode" ; \ |
| 796 | else \ |
| 797 | echo "#undef CONFIG_BUSMODE_60x" >>include/config.h ; \ |
| 798 | echo "... without 60x Bus Mode" ; \ |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 799 | fi |
wdenk | 4532cb6 | 2003-04-27 22:52:51 +0000 | [diff] [blame] | 800 | @./mkconfig -a TQM8260 ppc mpc8260 tqm8260 |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 801 | |
wdenk | 54387ac | 2003-10-08 22:45:44 +0000 | [diff] [blame] | 802 | ZPC1900_config: unconfig |
| 803 | @./mkconfig $(@:_config=) ppc mpc8260 zpc1900 |
wdenk | 7aa7861 | 2003-05-03 15:50:43 +0000 | [diff] [blame] | 804 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 805 | ######################################################################### |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 806 | ## MPC85xx Systems |
| 807 | ######################################################################### |
| 808 | |
| 809 | MPC8540ADS_config: unconfig |
| 810 | @./mkconfig $(@:_config=) ppc mpc85xx mpc8540ads |
| 811 | |
| 812 | MPC8560ADS_config: unconfig |
| 813 | @./mkconfig $(@:_config=) ppc mpc85xx mpc8560ads |
| 814 | |
| 815 | ######################################################################### |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 816 | ## 74xx/7xx Systems |
| 817 | ######################################################################### |
| 818 | |
wdenk | c7de829 | 2002-11-19 11:04:11 +0000 | [diff] [blame] | 819 | AmigaOneG3SE_config: unconfig |
| 820 | @./mkconfig $(@:_config=) ppc 74xx_7xx AmigaOneG3SE MAI |
| 821 | |
wdenk | 15647dc | 2003-10-09 19:00:25 +0000 | [diff] [blame] | 822 | BAB7xx_config: unconfig |
| 823 | @./mkconfig $(@:_config=) ppc 74xx_7xx bab7xx eltec |
| 824 | |
| 825 | debris_config: unconfig |
| 826 | @./mkconfig $(@:_config=) ppc mpc824x debris etin |
| 827 | |
| 828 | ELPPC_config: unconfig |
| 829 | @./mkconfig $(@:_config=) ppc 74xx_7xx elppc eltec |
| 830 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 831 | EVB64260_config \ |
| 832 | EVB64260_750CX_config: unconfig |
| 833 | @./mkconfig EVB64260 ppc 74xx_7xx evb64260 |
| 834 | |
wdenk | 15647dc | 2003-10-09 19:00:25 +0000 | [diff] [blame] | 835 | P3G4_config: unconfig |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 836 | @./mkconfig $(@:_config=) ppc 74xx_7xx evb64260 |
| 837 | |
| 838 | PCIPPC2_config \ |
| 839 | PCIPPC6_config: unconfig |
| 840 | @./mkconfig $(@:_config=) ppc 74xx_7xx pcippc2 |
| 841 | |
wdenk | 15647dc | 2003-10-09 19:00:25 +0000 | [diff] [blame] | 842 | ZUMA_config: unconfig |
wdenk | 12f3424 | 2003-09-02 22:48:03 +0000 | [diff] [blame] | 843 | @./mkconfig $(@:_config=) ppc 74xx_7xx evb64260 |
| 844 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 845 | #======================================================================== |
| 846 | # ARM |
| 847 | #======================================================================== |
| 848 | ######################################################################### |
| 849 | ## StrongARM Systems |
| 850 | ######################################################################### |
| 851 | |
wdenk | dc7c9a1 | 2003-03-26 06:55:25 +0000 | [diff] [blame] | 852 | at91rm9200dk_config : unconfig |
| 853 | @./mkconfig $(@:_config=) arm at91rm9200 at91rm9200dk |
| 854 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 855 | lart_config : unconfig |
| 856 | @./mkconfig $(@:_config=) arm sa1100 lart |
| 857 | |
| 858 | dnp1110_config : unconfig |
| 859 | @./mkconfig $(@:_config=) arm sa1100 dnp1110 |
| 860 | |
| 861 | shannon_config : unconfig |
| 862 | @./mkconfig $(@:_config=) arm sa1100 shannon |
| 863 | |
| 864 | ######################################################################### |
wdenk | 2e5983d | 2003-07-15 20:04:06 +0000 | [diff] [blame] | 865 | ## ARM92xT Systems |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 866 | ######################################################################### |
| 867 | |
wdenk | b0639ca | 2003-09-17 22:48:07 +0000 | [diff] [blame] | 868 | xtract_trab = $(subst _bigram,,$(subst _bigflash,,$(subst _old,,$(subst _config,,$1)))) |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 869 | |
wdenk | 2e5983d | 2003-07-15 20:04:06 +0000 | [diff] [blame] | 870 | omap1510inn_config : unconfig |
| 871 | @./mkconfig $(@:_config=) arm arm925t omap1510inn |
| 872 | |
wdenk | 6f21347 | 2003-08-29 22:00:43 +0000 | [diff] [blame] | 873 | omap1610inn_config : unconfig |
| 874 | @./mkconfig $(@:_config=) arm arm926ejs omap1610inn |
| 875 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 876 | smdk2400_config : unconfig |
| 877 | @./mkconfig $(@:_config=) arm arm920t smdk2400 |
| 878 | |
| 879 | smdk2410_config : unconfig |
| 880 | @./mkconfig $(@:_config=) arm arm920t smdk2410 |
| 881 | |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 882 | trab_config \ |
wdenk | b0639ca | 2003-09-17 22:48:07 +0000 | [diff] [blame] | 883 | trab_bigram_config \ |
| 884 | trab_bigflash_config \ |
wdenk | f54ebdf | 2003-09-17 15:10:32 +0000 | [diff] [blame] | 885 | trab_old_config: unconfig |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 886 | @ >include/config.h |
wdenk | b0639ca | 2003-09-17 22:48:07 +0000 | [diff] [blame] | 887 | @[ -z "$(findstring _bigram,$@)" ] || \ |
| 888 | { echo "#define CONFIG_FLASH_8MB" >>include/config.h ; \ |
| 889 | echo "... with 8 MB Flash, 32 MB RAM" ; \ |
| 890 | } |
| 891 | @[ -z "$(findstring _bigflash,$@)" ] || \ |
| 892 | { echo "#define CONFIG_RAM_16MB" >>include/config.h ; \ |
| 893 | echo "... with 16 MB Flash, 16 MB RAM" ; \ |
wdenk | a8c7c70 | 2003-12-06 19:49:23 +0000 | [diff] [blame] | 894 | echo "TEXT_BASE = 0x0CF40000" >board/trab/config.tmp ; \ |
wdenk | b0639ca | 2003-09-17 22:48:07 +0000 | [diff] [blame] | 895 | } |
wdenk | f54ebdf | 2003-09-17 15:10:32 +0000 | [diff] [blame] | 896 | @[ -z "$(findstring _old,$@)" ] || \ |
| 897 | { echo "#define CONFIG_OLD_VERSION" >>include/config.h ; \ |
| 898 | echo "... with small memory configuration" ; \ |
wdenk | a8c7c70 | 2003-12-06 19:49:23 +0000 | [diff] [blame] | 899 | echo "TEXT_BASE = 0x0CF40000" >board/trab/config.tmp ; \ |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 900 | } |
| 901 | @./mkconfig -a $(call xtract_trab,$@) arm arm920t trab |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 902 | |
wdenk | 1cb8e98 | 2003-03-06 21:55:29 +0000 | [diff] [blame] | 903 | VCMA9_config : unconfig |
| 904 | @./mkconfig $(@:_config=) arm arm920t vcma9 mpl |
| 905 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 906 | ######################################################################### |
| 907 | ## ARM720T Systems |
| 908 | ######################################################################### |
| 909 | |
| 910 | impa7_config : unconfig |
| 911 | @./mkconfig $(@:_config=) arm arm720t impa7 |
| 912 | |
| 913 | ep7312_config : unconfig |
| 914 | @./mkconfig $(@:_config=) arm arm720t ep7312 |
| 915 | |
| 916 | ######################################################################### |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 917 | ## XScale Systems |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 918 | ######################################################################### |
| 919 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 920 | cradle_config : unconfig |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 921 | @./mkconfig $(@:_config=) arm pxa cradle |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 922 | |
| 923 | csb226_config : unconfig |
wdenk | 4c3b21a | 2003-05-23 12:36:20 +0000 | [diff] [blame] | 924 | @./mkconfig $(@:_config=) arm pxa csb226 |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 925 | |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 926 | innokom_config : unconfig |
wdenk | 4c3b21a | 2003-05-23 12:36:20 +0000 | [diff] [blame] | 927 | @./mkconfig $(@:_config=) arm pxa innokom |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 928 | |
wdenk | 2d5b561 | 2003-10-14 19:43:55 +0000 | [diff] [blame] | 929 | ixdp425_config : unconfig |
| 930 | @./mkconfig $(@:_config=) arm ixp ixdp425 |
| 931 | |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 932 | lubbock_config : unconfig |
wdenk | 4c3b21a | 2003-05-23 12:36:20 +0000 | [diff] [blame] | 933 | @./mkconfig $(@:_config=) arm pxa lubbock |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 934 | |
wdenk | 52f52c1 | 2003-06-19 23:04:19 +0000 | [diff] [blame] | 935 | logodl_config : unconfig |
| 936 | @./mkconfig $(@:_config=) arm pxa logodl |
| 937 | |
wdenk | 3e38691 | 2003-04-05 00:53:31 +0000 | [diff] [blame] | 938 | wepep250_config : unconfig |
wdenk | 4c3b21a | 2003-05-23 12:36:20 +0000 | [diff] [blame] | 939 | @./mkconfig $(@:_config=) arm pxa wepep250 |
wdenk | 3e38691 | 2003-04-05 00:53:31 +0000 | [diff] [blame] | 940 | |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 941 | #======================================================================== |
| 942 | # i386 |
| 943 | #======================================================================== |
| 944 | ######################################################################### |
wdenk | 1cb8e98 | 2003-03-06 21:55:29 +0000 | [diff] [blame] | 945 | ## AMD SC520 CDP |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 946 | ######################################################################### |
| 947 | sc520_cdp_config : unconfig |
| 948 | @./mkconfig $(@:_config=) i386 i386 sc520_cdp |
| 949 | |
wdenk | 7a8e9bed | 2003-05-31 18:35:21 +0000 | [diff] [blame] | 950 | sc520_spunk_config : unconfig |
| 951 | @./mkconfig $(@:_config=) i386 i386 sc520_spunk |
| 952 | |
| 953 | sc520_spunk_rel_config : unconfig |
| 954 | @./mkconfig $(@:_config=) i386 i386 sc520_spunk |
| 955 | |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 956 | #======================================================================== |
| 957 | # MIPS |
| 958 | #======================================================================== |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 959 | ######################################################################### |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 960 | ## MIPS32 4Kc |
| 961 | ######################################################################### |
| 962 | |
wdenk | e0ac62d | 2003-08-17 18:55:18 +0000 | [diff] [blame] | 963 | xtract_incaip = $(subst _100MHz,,$(subst _133MHz,,$(subst _150MHz,,$(subst _config,,$1)))) |
| 964 | |
| 965 | incaip_100MHz_config \ |
| 966 | incaip_133MHz_config \ |
| 967 | incaip_150MHz_config \ |
| 968 | incaip_config: unconfig |
| 969 | @ >include/config.h |
| 970 | @[ -z "$(findstring _100MHz,$@)" ] || \ |
| 971 | { echo "#define CPU_CLOCK_RATE 100000000" >>include/config.h ; \ |
| 972 | echo "... with 100MHz system clock" ; \ |
| 973 | } |
| 974 | @[ -z "$(findstring _133MHz,$@)" ] || \ |
| 975 | { echo "#define CPU_CLOCK_RATE 133000000" >>include/config.h ; \ |
| 976 | echo "... with 133MHz system clock" ; \ |
| 977 | } |
| 978 | @[ -z "$(findstring _150MHz,$@)" ] || \ |
| 979 | { echo "#define CPU_CLOCK_RATE 150000000" >>include/config.h ; \ |
| 980 | echo "... with 150MHz system clock" ; \ |
| 981 | } |
| 982 | @./mkconfig -a $(call xtract_incaip,$@) mips mips incaip |
| 983 | |
| 984 | ######################################################################### |
| 985 | ## MIPS64 5Kc |
| 986 | ######################################################################### |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 987 | |
wdenk | 3e38691 | 2003-04-05 00:53:31 +0000 | [diff] [blame] | 988 | purple_config : unconfig |
| 989 | @./mkconfig $(@:_config=) mips mips purple |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 990 | |
wdenk | 4a55170 | 2003-10-08 23:26:14 +0000 | [diff] [blame] | 991 | #======================================================================== |
| 992 | # Nios |
| 993 | #======================================================================== |
| 994 | ######################################################################### |
| 995 | ## Nios32 |
| 996 | ######################################################################### |
| 997 | |
| 998 | DK1C20_config: unconfig |
| 999 | @./mkconfig $(@:_config=) nios nios dk1c20 |
| 1000 | |
| 1001 | |
wdenk | 3e38691 | 2003-04-05 00:53:31 +0000 | [diff] [blame] | 1002 | ######################################################################### |
wdenk | a2663ea | 2003-12-07 18:32:37 +0000 | [diff] [blame] | 1003 | ## MIPS32 AU1X00 |
wdenk | 5da627a | 2003-10-09 20:09:04 +0000 | [diff] [blame] | 1004 | ######################################################################### |
wdenk | a2663ea | 2003-12-07 18:32:37 +0000 | [diff] [blame] | 1005 | dbau1000_config : unconfig |
| 1006 | @ >include/config.h |
| 1007 | @echo "#define CONFIG_DBAU1000 1" >>include/config.h |
| 1008 | @./mkconfig -a dbau1x00 mips mips dbau1x00 |
| 1009 | |
| 1010 | dbau1100_config : unconfig |
| 1011 | @ >include/config.h |
| 1012 | @echo "#define CONFIG_DBAU1100 1" >>include/config.h |
| 1013 | @./mkconfig -a dbau1x00 mips mips dbau1x00 |
| 1014 | |
| 1015 | dbau1500_config : unconfig |
| 1016 | @ >include/config.h |
| 1017 | @echo "#define CONFIG_DBAU1500 1" >>include/config.h |
| 1018 | @./mkconfig -a dbau1x00 mips mips dbau1x00 |
wdenk | 5da627a | 2003-10-09 20:09:04 +0000 | [diff] [blame] | 1019 | |
| 1020 | ######################################################################### |
wdenk | 3e38691 | 2003-04-05 00:53:31 +0000 | [diff] [blame] | 1021 | ######################################################################### |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1022 | |
| 1023 | clean: |
| 1024 | find . -type f \ |
| 1025 | \( -name 'core' -o -name '*.bak' -o -name '*~' \ |
| 1026 | -o -name '*.o' -o -name '*.a' \) -print \ |
| 1027 | | xargs rm -f |
wdenk | 85ec0bc | 2003-03-31 16:34:49 +0000 | [diff] [blame] | 1028 | rm -f examples/hello_world examples/timer \ |
wdenk | 3e38691 | 2003-04-05 00:53:31 +0000 | [diff] [blame] | 1029 | examples/eepro100_eeprom examples/sched \ |
wdenk | 7a8e9bed | 2003-05-31 18:35:21 +0000 | [diff] [blame] | 1030 | examples/mem_to_mem_idma2intr examples/82559_eeprom |
| 1031 | |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1032 | rm -f tools/img2srec tools/mkimage tools/envcrc tools/gen_eth_addr |
| 1033 | rm -f tools/easylogo/easylogo tools/bmp_logo |
| 1034 | rm -f tools/gdb/astest tools/gdb/gdbcont tools/gdb/gdbsend |
wdenk | 228f29a | 2002-12-08 09:53:23 +0000 | [diff] [blame] | 1035 | rm -f tools/env/fw_printenv tools/env/fw_setenv |
wdenk | 7f70e85 | 2003-05-20 14:25:27 +0000 | [diff] [blame] | 1036 | rm -f board/cray/L1/bootscript.c board/cray/L1/bootscript.image |
wdenk | 5cf9da4 | 2003-11-07 13:42:26 +0000 | [diff] [blame] | 1037 | rm -f board/trab/trab_fkt board/*/config.tmp |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1038 | |
| 1039 | clobber: clean |
| 1040 | find . -type f \ |
| 1041 | \( -name .depend -o -name '*.srec' -o -name '*.bin' \) \ |
| 1042 | -print \ |
| 1043 | | xargs rm -f |
| 1044 | rm -f $(OBJS) *.bak tags TAGS |
| 1045 | rm -fr *.*~ |
wdenk | bdccc4f | 2003-08-05 17:43:17 +0000 | [diff] [blame] | 1046 | rm -f u-boot u-boot.map $(ALL) |
wdenk | 228f29a | 2002-12-08 09:53:23 +0000 | [diff] [blame] | 1047 | rm -f tools/crc32.c tools/environment.c tools/env/crc32.c |
wdenk | 3e38691 | 2003-04-05 00:53:31 +0000 | [diff] [blame] | 1048 | rm -f tools/inca-swap-bytes cpu/mpc824x/bedbug_603e.c |
wdenk | b783eda | 2003-06-25 22:26:29 +0000 | [diff] [blame] | 1049 | rm -f include/asm/proc include/asm/arch include/asm |
wdenk | 7ebf744 | 2002-11-02 23:17:16 +0000 | [diff] [blame] | 1050 | |
| 1051 | mrproper \ |
| 1052 | distclean: clobber unconfig |
| 1053 | |
| 1054 | backup: |
| 1055 | F=`basename $(TOPDIR)` ; cd .. ; \ |
| 1056 | gtar --force-local -zcvf `date "+$$F-%Y-%m-%d-%T.tar.gz"` $$F |
| 1057 | |
| 1058 | ######################################################################### |