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