Makefile 33 KB

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