Makefile 61 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073
  1. #
  2. # (C) Copyright 2000-2006
  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 Foundatio; 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. VERSION = 1
  24. PATCHLEVEL = 1
  25. SUBLEVEL = 4
  26. EXTRAVERSION =
  27. U_BOOT_VERSION = $(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION)
  28. VERSION_FILE = include/version_autogenerated.h
  29. HOSTARCH := $(shell uname -m | \
  30. sed -e s/i.86/i386/ \
  31. -e s/sun4u/sparc64/ \
  32. -e s/arm.*/arm/ \
  33. -e s/sa110/arm/ \
  34. -e s/powerpc/ppc/ \
  35. -e s/macppc/ppc/)
  36. HOSTOS := $(shell uname -s | tr '[:upper:]' '[:lower:]' | \
  37. sed -e 's/\(cygwin\).*/cygwin/')
  38. export HOSTARCH HOSTOS
  39. # Deal with colliding definitions from tcsh etc.
  40. VENDOR=
  41. #########################################################################
  42. TOPDIR := $(shell if [ "$$PWD" != "" ]; then echo $$PWD; else pwd; fi)
  43. export TOPDIR
  44. ifeq (include/config.mk,$(wildcard include/config.mk))
  45. # load ARCH, BOARD, and CPU configuration
  46. include include/config.mk
  47. export ARCH CPU BOARD VENDOR SOC
  48. ifndef CROSS_COMPILE
  49. ifeq ($(HOSTARCH),ppc)
  50. CROSS_COMPILE =
  51. else
  52. ifeq ($(ARCH),ppc)
  53. CROSS_COMPILE = powerpc-linux-
  54. endif
  55. ifeq ($(ARCH),arm)
  56. CROSS_COMPILE = arm-linux-
  57. endif
  58. ifeq ($(ARCH),i386)
  59. ifeq ($(HOSTARCH),i386)
  60. CROSS_COMPILE =
  61. else
  62. CROSS_COMPILE = i386-linux-
  63. endif
  64. endif
  65. ifeq ($(ARCH),mips)
  66. CROSS_COMPILE = mips_4KC-
  67. endif
  68. ifeq ($(ARCH),nios)
  69. CROSS_COMPILE = nios-elf-
  70. endif
  71. ifeq ($(ARCH),nios2)
  72. CROSS_COMPILE = nios2-elf-
  73. endif
  74. ifeq ($(ARCH),m68k)
  75. CROSS_COMPILE = m68k-elf-
  76. endif
  77. ifeq ($(ARCH),microblaze)
  78. CROSS_COMPILE = mb-
  79. endif
  80. ifeq ($(ARCH),blackfin)
  81. CROSS_COMPILE = bfin-elf-
  82. endif
  83. endif
  84. endif
  85. export CROSS_COMPILE
  86. # load other configuration
  87. include $(TOPDIR)/config.mk
  88. #########################################################################
  89. # U-Boot objects....order is important (i.e. start must be first)
  90. OBJS = cpu/$(CPU)/start.o
  91. ifeq ($(CPU),i386)
  92. OBJS += cpu/$(CPU)/start16.o
  93. OBJS += cpu/$(CPU)/reset.o
  94. endif
  95. ifeq ($(CPU),ppc4xx)
  96. OBJS += cpu/$(CPU)/resetvec.o
  97. endif
  98. ifeq ($(CPU),mpc83xx)
  99. OBJS += cpu/$(CPU)/resetvec.o
  100. endif
  101. ifeq ($(CPU),mpc85xx)
  102. OBJS += cpu/$(CPU)/resetvec.o
  103. endif
  104. ifeq ($(CPU),bf533)
  105. OBJS += cpu/$(CPU)/start1.o cpu/$(CPU)/interrupt.o cpu/$(CPU)/cache.o
  106. OBJS += cpu/$(CPU)/cplbhdlr.o cpu/$(CPU)/cplbmgr.o cpu/$(CPU)/flush.o
  107. endif
  108. LIBS = lib_generic/libgeneric.a
  109. LIBS += board/$(BOARDDIR)/lib$(BOARD).a
  110. LIBS += cpu/$(CPU)/lib$(CPU).a
  111. ifdef SOC
  112. LIBS += cpu/$(CPU)/$(SOC)/lib$(SOC).a
  113. endif
  114. LIBS += lib_$(ARCH)/lib$(ARCH).a
  115. LIBS += fs/cramfs/libcramfs.a fs/fat/libfat.a fs/fdos/libfdos.a fs/jffs2/libjffs2.a \
  116. fs/reiserfs/libreiserfs.a fs/ext2/libext2fs.a
  117. LIBS += net/libnet.a
  118. LIBS += disk/libdisk.a
  119. LIBS += rtc/librtc.a
  120. LIBS += dtt/libdtt.a
  121. LIBS += drivers/libdrivers.a
  122. LIBS += drivers/nand/libnand.a
  123. LIBS += drivers/nand_legacy/libnand_legacy.a
  124. LIBS += drivers/sk98lin/libsk98lin.a
  125. LIBS += post/libpost.a post/cpu/libcpu.a
  126. LIBS += common/libcommon.a
  127. LIBS += $(BOARDLIBS)
  128. .PHONY : $(LIBS)
  129. # Add GCC lib
  130. PLATFORM_LIBS += -L $(shell dirname `$(CC) $(CFLAGS) -print-libgcc-file-name`) -lgcc
  131. # The "tools" are needed early, so put this first
  132. # Don't include stuff already done in $(LIBS)
  133. SUBDIRS = tools \
  134. examples \
  135. post \
  136. post/cpu
  137. .PHONY : $(SUBDIRS)
  138. #########################################################################
  139. #########################################################################
  140. ALL = u-boot.srec u-boot.bin System.map
  141. all: $(ALL)
  142. u-boot.hex: u-boot
  143. $(OBJCOPY) ${OBJCFLAGS} -O ihex $< $@
  144. u-boot.srec: u-boot
  145. $(OBJCOPY) ${OBJCFLAGS} -O srec $< $@
  146. u-boot.bin: u-boot
  147. $(OBJCOPY) ${OBJCFLAGS} -O binary $< $@
  148. u-boot.img: u-boot.bin
  149. ./tools/mkimage -A $(ARCH) -T firmware -C none \
  150. -a $(TEXT_BASE) -e 0 \
  151. -n $(shell sed -n -e 's/.*U_BOOT_VERSION//p' $(VERSION_FILE) | \
  152. sed -e 's/"[ ]*$$/ for $(BOARD) board"/') \
  153. -d $< $@
  154. u-boot.dis: u-boot
  155. $(OBJDUMP) -d $< > $@
  156. u-boot: depend version $(SUBDIRS) $(OBJS) $(LIBS) $(LDSCRIPT)
  157. UNDEF_SYM=`$(OBJDUMP) -x $(LIBS) |sed -n -e 's/.*\(__u_boot_cmd_.*\)/-u\1/p'|sort|uniq`;\
  158. $(LD) $(LDFLAGS) $$UNDEF_SYM $(OBJS) \
  159. --start-group $(LIBS) --end-group $(PLATFORM_LIBS) \
  160. -Map u-boot.map -o u-boot
  161. $(LIBS):
  162. $(MAKE) -C `dirname $@`
  163. $(SUBDIRS):
  164. $(MAKE) -C $@ all
  165. version:
  166. @echo -n "#define U_BOOT_VERSION \"U-Boot " > $(VERSION_FILE); \
  167. echo -n "$(U_BOOT_VERSION)" >> $(VERSION_FILE); \
  168. echo -n $(shell $(CONFIG_SHELL) $(TOPDIR)/tools/setlocalversion \
  169. $(TOPDIR)) >> $(VERSION_FILE); \
  170. echo "\"" >> $(VERSION_FILE)
  171. gdbtools:
  172. $(MAKE) -C tools/gdb || exit 1
  173. depend dep:
  174. @for dir in $(SUBDIRS) ; do $(MAKE) -C $$dir .depend ; done
  175. tags:
  176. ctags -w `find $(SUBDIRS) include \
  177. lib_generic board/$(BOARDDIR) cpu/$(CPU) lib_$(ARCH) \
  178. fs/cramfs fs/fat fs/fdos fs/jffs2 \
  179. net disk rtc dtt drivers drivers/sk98lin common \
  180. \( -name CVS -prune \) -o \( -name '*.[ch]' -print \)`
  181. etags:
  182. etags -a `find $(SUBDIRS) include \
  183. lib_generic board/$(BOARDDIR) cpu/$(CPU) lib_$(ARCH) \
  184. fs/cramfs fs/fat fs/fdos fs/jffs2 \
  185. net disk rtc dtt drivers drivers/sk98lin common \
  186. \( -name CVS -prune \) -o \( -name '*.[ch]' -print \)`
  187. System.map: u-boot
  188. @$(NM) $< | \
  189. grep -v '\(compiled\)\|\(\.o$$\)\|\( [aUw] \)\|\(\.\.ng$$\)\|\(LASH[RL]DI\)' | \
  190. sort > System.map
  191. #########################################################################
  192. else
  193. all install u-boot u-boot.srec depend dep:
  194. @echo "System not configured - see README" >&2
  195. @ exit 1
  196. endif
  197. #########################################################################
  198. unconfig:
  199. @rm -f include/config.h include/config.mk board/*/config.tmp
  200. #========================================================================
  201. # PowerPC
  202. #========================================================================
  203. #########################################################################
  204. ## MPC5xx Systems
  205. #########################################################################
  206. canmb_config: unconfig
  207. @./mkconfig -a canmb ppc mpc5xxx canmb
  208. cmi_mpc5xx_config: unconfig
  209. @./mkconfig $(@:_config=) ppc mpc5xx cmi
  210. PATI_config: unconfig
  211. @./mkconfig $(@:_config=) ppc mpc5xx pati mpl
  212. #########################################################################
  213. ## MPC5xxx Systems
  214. #########################################################################
  215. aev_config: unconfig
  216. @./mkconfig -a aev ppc mpc5xxx tqm5200
  217. BC3450_config: unconfig
  218. @./mkconfig -a BC3450 ppc mpc5xxx bc3450
  219. cpci5200_config: unconfig
  220. @./mkconfig -a cpci5200 ppc mpc5xxx cpci5200 esd
  221. hmi1001_config: unconfig
  222. @./mkconfig hmi1001 ppc mpc5xxx hmi1001
  223. Lite5200_config \
  224. Lite5200_LOWBOOT_config \
  225. Lite5200_LOWBOOT08_config \
  226. icecube_5200_config \
  227. icecube_5200_LOWBOOT_config \
  228. icecube_5200_LOWBOOT08_config \
  229. icecube_5200_DDR_config \
  230. icecube_5200_DDR_LOWBOOT_config \
  231. icecube_5200_DDR_LOWBOOT08_config \
  232. icecube_5100_config: unconfig
  233. @ >include/config.h
  234. @[ -z "$(findstring LOWBOOT_,$@)" ] || \
  235. { if [ "$(findstring DDR,$@)" ] ; \
  236. then echo "TEXT_BASE = 0xFF800000" >board/icecube/config.tmp ; \
  237. else echo "TEXT_BASE = 0xFF000000" >board/icecube/config.tmp ; \
  238. fi ; \
  239. echo "... with LOWBOOT configuration" ; \
  240. }
  241. @[ -z "$(findstring LOWBOOT08,$@)" ] || \
  242. { echo "TEXT_BASE = 0xFF800000" >board/icecube/config.tmp ; \
  243. echo "... with 8 MB flash only" ; \
  244. echo "... with LOWBOOT configuration" ; \
  245. }
  246. @[ -z "$(findstring DDR,$@)" ] || \
  247. { echo "#define CONFIG_MPC5200_DDR" >>include/config.h ; \
  248. echo "... DDR memory revision" ; \
  249. }
  250. @[ -z "$(findstring 5200,$@)" ] || \
  251. { echo "#define CONFIG_MPC5200" >>include/config.h ; \
  252. echo "... with MPC5200 processor" ; \
  253. }
  254. @[ -z "$(findstring 5100,$@)" ] || \
  255. { echo "#define CONFIG_MGT5100" >>include/config.h ; \
  256. echo "... with MGT5100 processor" ; \
  257. }
  258. @./mkconfig -a IceCube ppc mpc5xxx icecube
  259. inka4x0_config: unconfig
  260. @./mkconfig inka4x0 ppc mpc5xxx inka4x0
  261. lite5200b_config \
  262. lite5200b_LOWBOOT_config: unconfig
  263. @ >include/config.h
  264. @ echo "#define CONFIG_MPC5200_DDR" >>include/config.h
  265. @ echo "... DDR memory revision"
  266. @ echo "#define CONFIG_MPC5200" >>include/config.h
  267. @ echo "#define CONFIG_LITE5200B" >>include/config.h
  268. @[ -z "$(findstring LOWBOOT_,$@)" ] || \
  269. { echo "TEXT_BASE = 0xFF000000" >board/icecube/config.tmp ; \
  270. echo "... with LOWBOOT configuration" ; \
  271. }
  272. @ echo "... with MPC5200B processor"
  273. @./mkconfig -a IceCube ppc mpc5xxx icecube
  274. mcc200_config \
  275. mcc200_SDRAM_config \
  276. mcc200_highboot_config \
  277. mcc200_COM12_config \
  278. mcc200_COM12_SDRAM_config \
  279. mcc200_COM12_highboot_config \
  280. mcc200_COM12_highboot_SDRAM_config \
  281. mcc200_highboot_SDRAM_config \
  282. prs200_config \
  283. prs200_DDR_config \
  284. prs200_highboot_config \
  285. prs200_highboot_DDR_config: unconfig
  286. @ >include/config.h
  287. @[ -n "$(findstring highboot,$@)" ] || \
  288. { echo "... with lowboot configuration" ; \
  289. }
  290. @[ -z "$(findstring highboot,$@)" ] || \
  291. { echo "TEXT_BASE = 0xFFF00000" >board/mcc200/config.tmp ; \
  292. echo "... with highboot configuration" ; \
  293. }
  294. @[ -n "$(findstring _SDRAM,$@)" ] || \
  295. { if [ -n "$(findstring mcc200,$@)" ]; \
  296. then \
  297. echo "... with DDR" ; \
  298. else \
  299. if [ -n "$(findstring _DDR,$@)" ];\
  300. then \
  301. echo "... with DDR" ; \
  302. else \
  303. echo "#define CONFIG_MCC200_SDRAM" >>include/config.h ;\
  304. echo "... with SDRAM" ; \
  305. fi; \
  306. fi; \
  307. }
  308. @[ -z "$(findstring _SDRAM,$@)" ] || \
  309. { echo "#define CONFIG_MCC200_SDRAM" >>include/config.h ; \
  310. echo "... with SDRAM" ; \
  311. }
  312. @[ -z "$(findstring COM12,$@)" ] || \
  313. { echo "#define CONFIG_CONSOLE_COM12" >>include/config.h ; \
  314. echo "... with console on COM12" ; \
  315. }
  316. @[ -z "$(findstring prs200,$@)" ] || \
  317. { echo "#define CONFIG_PRS200" >>include/config.h ;\
  318. }
  319. @./mkconfig -n $@ -a mcc200 ppc mpc5xxx mcc200
  320. o2dnt_config:
  321. @./mkconfig o2dnt ppc mpc5xxx o2dnt
  322. pf5200_config: unconfig
  323. @./mkconfig pf5200 ppc mpc5xxx pf5200 esd
  324. PM520_config \
  325. PM520_DDR_config \
  326. PM520_ROMBOOT_config \
  327. PM520_ROMBOOT_DDR_config: unconfig
  328. @ >include/config.h
  329. @[ -z "$(findstring DDR,$@)" ] || \
  330. { echo "#define CONFIG_MPC5200_DDR" >>include/config.h ; \
  331. echo "... DDR memory revision" ; \
  332. }
  333. @[ -z "$(findstring ROMBOOT,$@)" ] || \
  334. { echo "#define CONFIG_BOOT_ROM" >>include/config.h ; \
  335. echo "... booting from 8-bit flash" ; \
  336. }
  337. @./mkconfig -a PM520 ppc mpc5xxx pm520
  338. smmaco4_config: unconfig
  339. @./mkconfig -a smmaco4 ppc mpc5xxx tqm5200
  340. spieval_config: unconfig
  341. @./mkconfig -a spieval ppc mpc5xxx tqm5200
  342. TB5200_B_config \
  343. TB5200_config: unconfig
  344. @[ -z "$(findstring _B,$@)" ] || \
  345. { echo "#define CONFIG_TQM5200_B" >>include/config.h ; \
  346. echo "... with MPC5200B processor" ; \
  347. }
  348. @./mkconfig -n $@ -a TB5200 ppc mpc5xxx tqm5200
  349. MINI5200_config \
  350. EVAL5200_config \
  351. TOP5200_config: unconfig
  352. @ echo "#define CONFIG_$(@:_config=) 1" >include/config.h
  353. @./mkconfig -n $@ -a TOP5200 ppc mpc5xxx top5200 emk
  354. Total5100_config \
  355. Total5200_config \
  356. Total5200_lowboot_config \
  357. Total5200_Rev2_config \
  358. Total5200_Rev2_lowboot_config: unconfig
  359. @ >include/config.h
  360. @[ -z "$(findstring 5100,$@)" ] || \
  361. { echo "#define CONFIG_MGT5100" >>include/config.h ; \
  362. echo "... with MGT5100 processor" ; \
  363. }
  364. @[ -z "$(findstring 5200,$@)" ] || \
  365. { echo "#define CONFIG_MPC5200" >>include/config.h ; \
  366. echo "... with MPC5200 processor" ; \
  367. }
  368. @[ -n "$(findstring Rev,$@)" ] || \
  369. { echo "#define CONFIG_TOTAL5200_REV 1" >>include/config.h ; \
  370. echo "... revision 1 board" ; \
  371. }
  372. @[ -z "$(findstring Rev2_,$@)" ] || \
  373. { echo "#define CONFIG_TOTAL5200_REV 2" >>include/config.h ; \
  374. echo "... revision 2 board" ; \
  375. }
  376. @[ -z "$(findstring lowboot_,$@)" ] || \
  377. { echo "TEXT_BASE = 0xFE000000" >board/total5200/config.tmp ; \
  378. echo "... with lowboot configuration" ; \
  379. }
  380. @./mkconfig -a Total5200 ppc mpc5xxx total5200
  381. cam5200_config \
  382. fo300_config \
  383. MiniFAP_config \
  384. TQM5200S_config \
  385. TQM5200S_HIGHBOOT_config \
  386. TQM5200_B_config \
  387. TQM5200_B_HIGHBOOT_config \
  388. TQM5200_config \
  389. TQM5200_STK100_config: unconfig
  390. @ >include/config.h
  391. @[ -z "$(findstring cam5200,$@)" ] || \
  392. { echo "#define CONFIG_CAM5200" >>include/config.h ; \
  393. echo "#define CONFIG_TQM5200S" >>include/config.h ; \
  394. echo "#define CONFIG_TQM5200_B" >>include/config.h ; \
  395. echo "... TQM5200S on Cam5200" ; \
  396. }
  397. @[ -z "$(findstring fo300,$@)" ] || \
  398. { echo "#define CONFIG_FO300" >>include/config.h ; \
  399. echo "... TQM5200 on FO300" ; \
  400. }
  401. @[ -z "$(findstring MiniFAP,$@)" ] || \
  402. { echo "#define CONFIG_MINIFAP" >>include/config.h ; \
  403. echo "... TQM5200_AC on MiniFAP" ; \
  404. }
  405. @[ -z "$(findstring STK100,$@)" ] || \
  406. { echo "#define CONFIG_STK52XX_REV100" >>include/config.h ; \
  407. echo "... on a STK52XX.100 base board" ; \
  408. }
  409. @[ -z "$(findstring TQM5200_B,$@)" ] || \
  410. { echo "#define CONFIG_TQM5200_B" >>include/config.h ; \
  411. }
  412. @[ -z "$(findstring TQM5200S,$@)" ] || \
  413. { echo "#define CONFIG_TQM5200S" >>include/config.h ; \
  414. echo "#define CONFIG_TQM5200_B" >>include/config.h ; \
  415. }
  416. @[ -z "$(findstring HIGHBOOT,$@)" ] || \
  417. { echo "TEXT_BASE = 0xFFF00000" >board/tqm5200/config.tmp ; \
  418. }
  419. @./mkconfig -n $@ -a TQM5200 ppc mpc5xxx tqm5200
  420. #########################################################################
  421. ## MPC8xx Systems
  422. #########################################################################
  423. Adder_config \
  424. Adder87x_config \
  425. AdderII_config \
  426. : unconfig
  427. $(if $(findstring AdderII,$@), \
  428. @echo "#define CONFIG_MPC852T" > include/config.h)
  429. @./mkconfig -a Adder ppc mpc8xx adder
  430. ADS860_config \
  431. FADS823_config \
  432. FADS850SAR_config \
  433. MPC86xADS_config \
  434. MPC885ADS_config \
  435. FADS860T_config: unconfig
  436. @./mkconfig $(@:_config=) ppc mpc8xx fads
  437. AMX860_config : unconfig
  438. @./mkconfig $(@:_config=) ppc mpc8xx amx860 westel
  439. c2mon_config: unconfig
  440. @./mkconfig $(@:_config=) ppc mpc8xx c2mon
  441. CCM_config: unconfig
  442. @./mkconfig $(@:_config=) ppc mpc8xx CCM siemens
  443. cogent_mpc8xx_config: unconfig
  444. @./mkconfig $(@:_config=) ppc mpc8xx cogent
  445. ELPT860_config: unconfig
  446. @./mkconfig $(@:_config=) ppc mpc8xx elpt860 LEOX
  447. EP88x_config: unconfig
  448. @./mkconfig $(@:_config=) ppc mpc8xx ep88x
  449. ESTEEM192E_config: unconfig
  450. @./mkconfig $(@:_config=) ppc mpc8xx esteem192e
  451. ETX094_config : unconfig
  452. @./mkconfig $(@:_config=) ppc mpc8xx etx094
  453. FLAGADM_config: unconfig
  454. @./mkconfig $(@:_config=) ppc mpc8xx flagadm
  455. xtract_GEN860T = $(subst _SC,,$(subst _config,,$1))
  456. GEN860T_SC_config \
  457. GEN860T_config: unconfig
  458. @ >include/config.h
  459. @[ -z "$(findstring _SC,$@)" ] || \
  460. { echo "#define CONFIG_SC" >>include/config.h ; \
  461. echo "With reduced H/W feature set (SC)..." ; \
  462. }
  463. @./mkconfig -a $(call xtract_GEN860T,$@) ppc mpc8xx gen860t
  464. GENIETV_config: unconfig
  465. @./mkconfig $(@:_config=) ppc mpc8xx genietv
  466. GTH_config: unconfig
  467. @./mkconfig $(@:_config=) ppc mpc8xx gth
  468. hermes_config : unconfig
  469. @./mkconfig $(@:_config=) ppc mpc8xx hermes
  470. HMI10_config : unconfig
  471. @./mkconfig $(@:_config=) ppc mpc8xx tqm8xx
  472. IAD210_config: unconfig
  473. @./mkconfig $(@:_config=) ppc mpc8xx IAD210 siemens
  474. xtract_ICU862 = $(subst _100MHz,,$(subst _config,,$1))
  475. ICU862_100MHz_config \
  476. ICU862_config: unconfig
  477. @ >include/config.h
  478. @[ -z "$(findstring _100MHz,$@)" ] || \
  479. { echo "#define CONFIG_100MHz" >>include/config.h ; \
  480. echo "... with 100MHz system clock" ; \
  481. }
  482. @./mkconfig -a $(call xtract_ICU862,$@) ppc mpc8xx icu862
  483. IP860_config : unconfig
  484. @./mkconfig $(@:_config=) ppc mpc8xx ip860
  485. IVML24_256_config \
  486. IVML24_128_config \
  487. IVML24_config: unconfig
  488. @ >include/config.h
  489. @[ -z "$(findstring IVML24_config,$@)" ] || \
  490. { echo "#define CONFIG_IVML24_16M" >>include/config.h ; \
  491. }
  492. @[ -z "$(findstring IVML24_128_config,$@)" ] || \
  493. { echo "#define CONFIG_IVML24_32M" >>include/config.h ; \
  494. }
  495. @[ -z "$(findstring IVML24_256_config,$@)" ] || \
  496. { echo "#define CONFIG_IVML24_64M" >>include/config.h ; \
  497. }
  498. @./mkconfig -a IVML24 ppc mpc8xx ivm
  499. IVMS8_256_config \
  500. IVMS8_128_config \
  501. IVMS8_config: unconfig
  502. @ >include/config.h
  503. @[ -z "$(findstring IVMS8_config,$@)" ] || \
  504. { echo "#define CONFIG_IVMS8_16M" >>include/config.h ; \
  505. }
  506. @[ -z "$(findstring IVMS8_128_config,$@)" ] || \
  507. { echo "#define CONFIG_IVMS8_32M" >>include/config.h ; \
  508. }
  509. @[ -z "$(findstring IVMS8_256_config,$@)" ] || \
  510. { echo "#define CONFIG_IVMS8_64M" >>include/config.h ; \
  511. }
  512. @./mkconfig -a IVMS8 ppc mpc8xx ivm
  513. KUP4K_config : unconfig
  514. @./mkconfig $(@:_config=) ppc mpc8xx kup4k kup
  515. KUP4X_config : unconfig
  516. @./mkconfig $(@:_config=) ppc mpc8xx kup4x kup
  517. LANTEC_config : unconfig
  518. @./mkconfig $(@:_config=) ppc mpc8xx lantec
  519. lwmon_config: unconfig
  520. @./mkconfig $(@:_config=) ppc mpc8xx lwmon
  521. MBX_config \
  522. MBX860T_config: unconfig
  523. @./mkconfig $(@:_config=) ppc mpc8xx mbx8xx
  524. MHPC_config: unconfig
  525. @./mkconfig $(@:_config=) ppc mpc8xx mhpc eltec
  526. MVS1_config : unconfig
  527. @./mkconfig $(@:_config=) ppc mpc8xx mvs1
  528. xtract_NETVIA = $(subst _V2,,$(subst _config,,$1))
  529. NETVIA_V2_config \
  530. NETVIA_config: unconfig
  531. @ >include/config.h
  532. @[ -z "$(findstring NETVIA_config,$@)" ] || \
  533. { echo "#define CONFIG_NETVIA_VERSION 1" >>include/config.h ; \
  534. echo "... Version 1" ; \
  535. }
  536. @[ -z "$(findstring NETVIA_V2_config,$@)" ] || \
  537. { echo "#define CONFIG_NETVIA_VERSION 2" >>include/config.h ; \
  538. echo "... Version 2" ; \
  539. }
  540. @./mkconfig -a $(call xtract_NETVIA,$@) ppc mpc8xx netvia
  541. xtract_NETPHONE = $(subst _V2,,$(subst _config,,$1))
  542. NETPHONE_V2_config \
  543. NETPHONE_config: unconfig
  544. @ >include/config.h
  545. @[ -z "$(findstring NETPHONE_config,$@)" ] || \
  546. { echo "#define CONFIG_NETPHONE_VERSION 1" >>include/config.h ; \
  547. }
  548. @[ -z "$(findstring NETPHONE_V2_config,$@)" ] || \
  549. { echo "#define CONFIG_NETPHONE_VERSION 2" >>include/config.h ; \
  550. }
  551. @./mkconfig -a $(call xtract_NETPHONE,$@) ppc mpc8xx netphone
  552. xtract_NETTA = $(subst _SWAPHOOK,,$(subst _6412,,$(subst _ISDN,,$(subst _config,,$1))))
  553. NETTA_ISDN_6412_SWAPHOOK_config \
  554. NETTA_ISDN_SWAPHOOK_config \
  555. NETTA_6412_SWAPHOOK_config \
  556. NETTA_SWAPHOOK_config \
  557. NETTA_ISDN_6412_config \
  558. NETTA_ISDN_config \
  559. NETTA_6412_config \
  560. NETTA_config: unconfig
  561. @ >include/config.h
  562. @[ -z "$(findstring ISDN_,$@)" ] || \
  563. { echo "#define CONFIG_NETTA_ISDN 1" >>include/config.h ; \
  564. }
  565. @[ -n "$(findstring ISDN_,$@)" ] || \
  566. { echo "#undef CONFIG_NETTA_ISDN" >>include/config.h ; \
  567. }
  568. @[ -z "$(findstring 6412_,$@)" ] || \
  569. { echo "#define CONFIG_NETTA_6412 1" >>include/config.h ; \
  570. }
  571. @[ -n "$(findstring 6412_,$@)" ] || \
  572. { echo "#undef CONFIG_NETTA_6412" >>include/config.h ; \
  573. }
  574. @[ -z "$(findstring SWAPHOOK_,$@)" ] || \
  575. { echo "#define CONFIG_NETTA_SWAPHOOK 1" >>include/config.h ; \
  576. }
  577. @[ -n "$(findstring SWAPHOOK_,$@)" ] || \
  578. { echo "#undef CONFIG_NETTA_SWAPHOOK" >>include/config.h ; \
  579. }
  580. @./mkconfig -a $(call xtract_NETTA,$@) ppc mpc8xx netta
  581. xtract_NETTA2 = $(subst _V2,,$(subst _config,,$1))
  582. NETTA2_V2_config \
  583. NETTA2_config: unconfig
  584. @ >include/config.h
  585. @[ -z "$(findstring NETTA2_config,$@)" ] || \
  586. { echo "#define CONFIG_NETTA2_VERSION 1" >>include/config.h ; \
  587. }
  588. @[ -z "$(findstring NETTA2_V2_config,$@)" ] || \
  589. { echo "#define CONFIG_NETTA2_VERSION 2" >>include/config.h ; \
  590. }
  591. @./mkconfig -a $(call xtract_NETTA2,$@) ppc mpc8xx netta2
  592. NC650_Rev1_config \
  593. NC650_Rev2_config \
  594. CP850_config: unconfig
  595. @ >include/config.h
  596. @[ -z "$(findstring CP850,$@)" ] || \
  597. { echo "#define CONFIG_CP850 1" >>include/config.h ; \
  598. echo "#define CONFIG_IDS852_REV2 1" >>include/config.h ; \
  599. }
  600. @[ -z "$(findstring Rev1,$@)" ] || \
  601. { echo "#define CONFIG_IDS852_REV1 1" >>include/config.h ; \
  602. }
  603. @[ -z "$(findstring Rev2,$@)" ] || \
  604. { echo "#define CONFIG_IDS852_REV2 1" >>include/config.h ; \
  605. }
  606. @./mkconfig -a NC650 ppc mpc8xx nc650
  607. NX823_config: unconfig
  608. @./mkconfig $(@:_config=) ppc mpc8xx nx823
  609. pcu_e_config: unconfig
  610. @./mkconfig $(@:_config=) ppc mpc8xx pcu_e siemens
  611. QS850_config: unconfig
  612. @./mkconfig $(@:_config=) ppc mpc8xx qs850 snmc
  613. QS823_config: unconfig
  614. @./mkconfig $(@:_config=) ppc mpc8xx qs850 snmc
  615. QS860T_config: unconfig
  616. @./mkconfig $(@:_config=) ppc mpc8xx qs860t snmc
  617. quantum_config: unconfig
  618. @./mkconfig $(@:_config=) ppc mpc8xx quantum
  619. R360MPI_config: unconfig
  620. @./mkconfig $(@:_config=) ppc mpc8xx r360mpi
  621. RBC823_config: unconfig
  622. @./mkconfig $(@:_config=) ppc mpc8xx rbc823
  623. RPXClassic_config: unconfig
  624. @./mkconfig $(@:_config=) ppc mpc8xx RPXClassic
  625. RPXlite_config: unconfig
  626. @./mkconfig $(@:_config=) ppc mpc8xx RPXlite
  627. RPXlite_DW_64_config \
  628. RPXlite_DW_LCD_config \
  629. RPXlite_DW_64_LCD_config \
  630. RPXlite_DW_NVRAM_config \
  631. RPXlite_DW_NVRAM_64_config \
  632. RPXlite_DW_NVRAM_LCD_config \
  633. RPXlite_DW_NVRAM_64_LCD_config \
  634. RPXlite_DW_config: unconfig
  635. @ >include/config.h
  636. @[ -z "$(findstring _64,$@)" ] || \
  637. { echo "#define RPXlite_64MHz" >>include/config.h ; \
  638. echo "... with 64MHz system clock ..."; \
  639. }
  640. @[ -z "$(findstring _LCD,$@)" ] || \
  641. { echo "#define CONFIG_LCD" >>include/config.h ; \
  642. echo "#define CONFIG_NEC_NL6448BC20" >>include/config.h ; \
  643. echo "... with LCD display ..."; \
  644. }
  645. @[ -z "$(findstring _NVRAM,$@)" ] || \
  646. { echo "#define CFG_ENV_IS_IN_NVRAM" >>include/config.h ; \
  647. echo "... with ENV in NVRAM ..."; \
  648. }
  649. @./mkconfig -a RPXlite_DW ppc mpc8xx RPXlite_dw
  650. rmu_config: unconfig
  651. @./mkconfig $(@:_config=) ppc mpc8xx rmu
  652. RRvision_config: unconfig
  653. @./mkconfig $(@:_config=) ppc mpc8xx RRvision
  654. RRvision_LCD_config: unconfig
  655. @echo "#define CONFIG_LCD" >include/config.h
  656. @echo "#define CONFIG_SHARP_LQ104V7DS01" >>include/config.h
  657. @./mkconfig -a RRvision ppc mpc8xx RRvision
  658. SM850_config : unconfig
  659. @./mkconfig $(@:_config=) ppc mpc8xx tqm8xx
  660. spc1920_config:
  661. @./mkconfig $(@:_config=) ppc mpc8xx spc1920
  662. SPD823TS_config: unconfig
  663. @./mkconfig $(@:_config=) ppc mpc8xx spd8xx
  664. stxxtc_config: unconfig
  665. @./mkconfig $(@:_config=) ppc mpc8xx stxxtc
  666. svm_sc8xx_config: unconfig
  667. @ >include/config.h
  668. @./mkconfig $(@:_config=) ppc mpc8xx svm_sc8xx
  669. SXNI855T_config: unconfig
  670. @./mkconfig $(@:_config=) ppc mpc8xx sixnet
  671. # EMK MPC8xx based modules
  672. TOP860_config: unconfig
  673. @./mkconfig $(@:_config=) ppc mpc8xx top860 emk
  674. # Play some tricks for configuration selection
  675. # Only 855 and 860 boards may come with FEC
  676. # and only 823 boards may have LCD support
  677. xtract_8xx = $(subst _LCD,,$(subst _config,,$1))
  678. FPS850L_config \
  679. FPS860L_config \
  680. NSCU_config \
  681. TQM823L_config \
  682. TQM823L_LCD_config \
  683. TQM850L_config \
  684. TQM855L_config \
  685. TQM860L_config \
  686. TQM862L_config \
  687. TQM823M_config \
  688. TQM850M_config \
  689. TQM855M_config \
  690. TQM860M_config \
  691. TQM862M_config \
  692. TQM866M_config \
  693. TQM885D_config \
  694. virtlab2_config: unconfig
  695. @ >include/config.h
  696. @[ -z "$(findstring _LCD,$@)" ] || \
  697. { echo "#define CONFIG_LCD" >>include/config.h ; \
  698. echo "#define CONFIG_NEC_NL6448BC20" >>include/config.h ; \
  699. echo "... with LCD display" ; \
  700. }
  701. @./mkconfig -a $(call xtract_8xx,$@) ppc mpc8xx tqm8xx
  702. TTTech_config: unconfig
  703. @echo "#define CONFIG_LCD" >include/config.h
  704. @echo "#define CONFIG_SHARP_LQ104V7DS01" >>include/config.h
  705. @./mkconfig -a TQM823L ppc mpc8xx tqm8xx
  706. uc100_config : unconfig
  707. @./mkconfig $(@:_config=) ppc mpc8xx uc100
  708. v37_config: unconfig
  709. @echo "#define CONFIG_LCD" >include/config.h
  710. @echo "#define CONFIG_SHARP_LQ084V1DG21" >>include/config.h
  711. @./mkconfig $(@:_config=) ppc mpc8xx v37
  712. wtk_config: unconfig
  713. @echo "#define CONFIG_LCD" >include/config.h
  714. @echo "#define CONFIG_SHARP_LQ065T9DR51U" >>include/config.h
  715. @./mkconfig -a TQM823L ppc mpc8xx tqm8xx
  716. #########################################################################
  717. ## PPC4xx Systems
  718. #########################################################################
  719. xtract_4xx = $(subst _25,,$(subst _33,,$(subst _BA,,$(subst _ME,,$(subst _HI,,$(subst _config,,$1))))))
  720. ADCIOP_config: unconfig
  721. @./mkconfig $(@:_config=) ppc ppc4xx adciop esd
  722. AP1000_config:unconfig
  723. @./mkconfig $(@:_config=) ppc ppc4xx ap1000 amirix
  724. APC405_config: unconfig
  725. @./mkconfig $(@:_config=) ppc ppc4xx apc405 esd
  726. AR405_config: unconfig
  727. @./mkconfig $(@:_config=) ppc ppc4xx ar405 esd
  728. ASH405_config: unconfig
  729. @./mkconfig $(@:_config=) ppc ppc4xx ash405 esd
  730. bamboo_config: unconfig
  731. @./mkconfig $(@:_config=) ppc ppc4xx bamboo amcc
  732. bubinga_config: unconfig
  733. @./mkconfig $(@:_config=) ppc ppc4xx bubinga amcc
  734. CANBT_config: unconfig
  735. @./mkconfig $(@:_config=) ppc ppc4xx canbt esd
  736. CATcenter_config \
  737. CATcenter_25_config \
  738. CATcenter_33_config: unconfig
  739. @ echo "/* CATcenter uses PPChameleon Model ME */" > include/config.h
  740. @ echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 1" >> include/config.h
  741. @[ -z "$(findstring _25,$@)" ] || \
  742. { echo "#define CONFIG_PPCHAMELEON_CLK_25" >>include/config.h ; \
  743. echo "SysClk = 25MHz" ; \
  744. }
  745. @[ -z "$(findstring _33,$@)" ] || \
  746. { echo "#define CONFIG_PPCHAMELEON_CLK_33" >>include/config.h ; \
  747. echo "SysClk = 33MHz" ; \
  748. }
  749. @./mkconfig -a $(call xtract_4xx,$@) ppc ppc4xx PPChameleonEVB dave
  750. CPCI2DP_config: unconfig
  751. @./mkconfig $(@:_config=) ppc ppc4xx cpci2dp esd
  752. CPCI405_config \
  753. CPCI4052_config \
  754. CPCI405DT_config \
  755. CPCI405AB_config: unconfig
  756. @./mkconfig $(@:_config=) ppc ppc4xx cpci405 esd
  757. @echo "BOARD_REVISION = $(@:_config=)" >>include/config.mk
  758. CPCI440_config: unconfig
  759. @./mkconfig $(@:_config=) ppc ppc4xx cpci440 esd
  760. CPCIISER4_config: unconfig
  761. @./mkconfig $(@:_config=) ppc ppc4xx cpciiser4 esd
  762. CRAYL1_config: unconfig
  763. @./mkconfig $(@:_config=) ppc ppc4xx L1 cray
  764. csb272_config: unconfig
  765. @./mkconfig $(@:_config=) ppc ppc4xx csb272
  766. csb472_config: unconfig
  767. @./mkconfig $(@:_config=) ppc ppc4xx csb472
  768. DASA_SIM_config: unconfig
  769. @./mkconfig $(@:_config=) ppc ppc4xx dasa_sim esd
  770. DP405_config: unconfig
  771. @./mkconfig $(@:_config=) ppc ppc4xx dp405 esd
  772. DU405_config: unconfig
  773. @./mkconfig $(@:_config=) ppc ppc4xx du405 esd
  774. ebony_config: unconfig
  775. @./mkconfig $(@:_config=) ppc ppc4xx ebony amcc
  776. ERIC_config: unconfig
  777. @./mkconfig $(@:_config=) ppc ppc4xx eric
  778. EXBITGEN_config: unconfig
  779. @./mkconfig $(@:_config=) ppc ppc4xx exbitgen
  780. G2000_config: unconfig
  781. @./mkconfig $(@:_config=) ppc ppc4xx g2000
  782. HH405_config: unconfig
  783. @./mkconfig $(@:_config=) ppc ppc4xx hh405 esd
  784. HUB405_config: unconfig
  785. @./mkconfig $(@:_config=) ppc ppc4xx hub405 esd
  786. JSE_config: unconfig
  787. @./mkconfig $(@:_config=) ppc ppc4xx jse
  788. KAREF_config: unconfig
  789. @./mkconfig $(@:_config=) ppc ppc4xx karef sandburst
  790. luan_config: unconfig
  791. @./mkconfig $(@:_config=) ppc ppc4xx luan amcc
  792. METROBOX_config: unconfig
  793. @./mkconfig $(@:_config=) ppc ppc4xx metrobox sandburst
  794. MIP405_config: unconfig
  795. @./mkconfig $(@:_config=) ppc ppc4xx mip405 mpl
  796. MIP405T_config: unconfig
  797. @echo "#define CONFIG_MIP405T" >include/config.h
  798. @echo "Enable subset config for MIP405T"
  799. @./mkconfig -a MIP405 ppc ppc4xx mip405 mpl
  800. ML2_config: unconfig
  801. @./mkconfig $(@:_config=) ppc ppc4xx ml2
  802. ml300_config: unconfig
  803. @./mkconfig $(@:_config=) ppc ppc4xx ml300 xilinx
  804. ocotea_config: unconfig
  805. @./mkconfig $(@:_config=) ppc ppc4xx ocotea amcc
  806. OCRTC_config \
  807. ORSG_config: unconfig
  808. @./mkconfig $(@:_config=) ppc ppc4xx ocrtc esd
  809. p3p440_config: unconfig
  810. @./mkconfig $(@:_config=) ppc ppc4xx p3p440 prodrive
  811. PCI405_config: unconfig
  812. @./mkconfig $(@:_config=) ppc ppc4xx pci405 esd
  813. pcs440ep_config: unconfig
  814. @./mkconfig $(@:_config=) ppc ppc4xx pcs440ep
  815. PIP405_config: unconfig
  816. @./mkconfig $(@:_config=) ppc ppc4xx pip405 mpl
  817. PLU405_config: unconfig
  818. @./mkconfig $(@:_config=) ppc ppc4xx plu405 esd
  819. PMC405_config: unconfig
  820. @./mkconfig $(@:_config=) ppc ppc4xx pmc405 esd
  821. PPChameleonEVB_config \
  822. PPChameleonEVB_BA_25_config \
  823. PPChameleonEVB_ME_25_config \
  824. PPChameleonEVB_HI_25_config \
  825. PPChameleonEVB_BA_33_config \
  826. PPChameleonEVB_ME_33_config \
  827. PPChameleonEVB_HI_33_config: unconfig
  828. @ >include/config.h
  829. @[ -z "$(findstring EVB_BA,$@)" ] || \
  830. { echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 0" >>include/config.h ; \
  831. echo "... BASIC model" ; \
  832. }
  833. @[ -z "$(findstring EVB_ME,$@)" ] || \
  834. { echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 1" >>include/config.h ; \
  835. echo "... MEDIUM model" ; \
  836. }
  837. @[ -z "$(findstring EVB_HI,$@)" ] || \
  838. { echo "#define CONFIG_PPCHAMELEON_MODULE_MODEL 2" >>include/config.h ; \
  839. echo "... HIGH-END model" ; \
  840. }
  841. @[ -z "$(findstring _25,$@)" ] || \
  842. { echo "#define CONFIG_PPCHAMELEON_CLK_25" >>include/config.h ; \
  843. echo "SysClk = 25MHz" ; \
  844. }
  845. @[ -z "$(findstring _33,$@)" ] || \
  846. { echo "#define CONFIG_PPCHAMELEON_CLK_33" >>include/config.h ; \
  847. echo "SysClk = 33MHz" ; \
  848. }
  849. @./mkconfig -a $(call xtract_4xx,$@) ppc ppc4xx PPChameleonEVB dave
  850. sbc405_config: unconfig
  851. @./mkconfig $(@:_config=) ppc ppc4xx sbc405
  852. sycamore_config: unconfig
  853. @echo "Configuring for sycamore board as subset of walnut..."
  854. @./mkconfig -a walnut ppc ppc4xx walnut amcc
  855. VOH405_config: unconfig
  856. @./mkconfig $(@:_config=) ppc ppc4xx voh405 esd
  857. VOM405_config: unconfig
  858. @./mkconfig $(@:_config=) ppc ppc4xx vom405 esd
  859. CMS700_config: unconfig
  860. @./mkconfig $(@:_config=) ppc ppc4xx cms700 esd
  861. W7OLMC_config \
  862. W7OLMG_config: unconfig
  863. @./mkconfig $(@:_config=) ppc ppc4xx w7o
  864. walnut_config: unconfig
  865. @./mkconfig $(@:_config=) ppc ppc4xx walnut amcc
  866. WUH405_config: unconfig
  867. @./mkconfig $(@:_config=) ppc ppc4xx wuh405 esd
  868. XPEDITE1K_config: unconfig
  869. @./mkconfig $(@:_config=) ppc ppc4xx xpedite1k
  870. yosemite_config: unconfig
  871. @./mkconfig $(@:_config=) ppc ppc4xx yosemite amcc
  872. yellowstone_config: unconfig
  873. @./mkconfig $(@:_config=) ppc ppc4xx yellowstone amcc
  874. yucca_config: unconfig
  875. @./mkconfig $(@:_config=) ppc ppc4xx yucca amcc
  876. #########################################################################
  877. ## MPC8220 Systems
  878. #########################################################################
  879. Alaska8220_config \
  880. Yukon8220_config: unconfig
  881. @./mkconfig $(@:_config=) ppc mpc8220 alaska
  882. sorcery_config: unconfig
  883. @./mkconfig $(@:_config=) ppc mpc8220 sorcery
  884. #########################################################################
  885. ## MPC824x Systems
  886. #########################################################################
  887. xtract_82xx = $(subst _BIGFLASH,,$(subst _ROMBOOT,,$(subst _L2,,$(subst _266MHz,,$(subst _300MHz,,$(subst _config,,$1))))))
  888. A3000_config: unconfig
  889. @./mkconfig $(@:_config=) ppc mpc824x a3000
  890. barco_config: unconfig
  891. @./mkconfig $(@:_config=) ppc mpc824x barco
  892. BMW_config: unconfig
  893. @./mkconfig $(@:_config=) ppc mpc824x bmw
  894. CPC45_config \
  895. CPC45_ROMBOOT_config: unconfig
  896. @./mkconfig $(call xtract_82xx,$@) ppc mpc824x cpc45
  897. @cd ./include ; \
  898. if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
  899. echo "CONFIG_BOOT_ROM = y" >> config.mk ; \
  900. echo "... booting from 8-bit flash" ; \
  901. else \
  902. echo "CONFIG_BOOT_ROM = n" >> config.mk ; \
  903. echo "... booting from 64-bit flash" ; \
  904. fi; \
  905. echo "export CONFIG_BOOT_ROM" >> config.mk;
  906. CU824_config: unconfig
  907. @./mkconfig $(@:_config=) ppc mpc824x cu824
  908. debris_config: unconfig
  909. @./mkconfig $(@:_config=) ppc mpc824x debris etin
  910. eXalion_config: unconfig
  911. @./mkconfig $(@:_config=) ppc mpc824x eXalion
  912. HIDDEN_DRAGON_config: unconfig
  913. @./mkconfig $(@:_config=) ppc mpc824x hidden_dragon
  914. kvme080_config: unconfig
  915. @./mkconfig $(@:_config=) ppc mpc824x kvme080 etin
  916. MOUSSE_config: unconfig
  917. @./mkconfig $(@:_config=) ppc mpc824x mousse
  918. MUSENKI_config: unconfig
  919. @./mkconfig $(@:_config=) ppc mpc824x musenki
  920. MVBLUE_config: unconfig
  921. @./mkconfig $(@:_config=) ppc mpc824x mvblue
  922. OXC_config: unconfig
  923. @./mkconfig $(@:_config=) ppc mpc824x oxc
  924. PN62_config: unconfig
  925. @./mkconfig $(@:_config=) ppc mpc824x pn62
  926. Sandpoint8240_config: unconfig
  927. @./mkconfig $(@:_config=) ppc mpc824x sandpoint
  928. Sandpoint8245_config: unconfig
  929. @./mkconfig $(@:_config=) ppc mpc824x sandpoint
  930. sbc8240_config: unconfig
  931. @./mkconfig $(@:_config=) ppc mpc824x sbc8240
  932. SL8245_config: unconfig
  933. @./mkconfig $(@:_config=) ppc mpc824x sl8245
  934. utx8245_config: unconfig
  935. @./mkconfig $(@:_config=) ppc mpc824x utx8245
  936. #########################################################################
  937. ## MPC8260 Systems
  938. #########################################################################
  939. atc_config: unconfig
  940. @./mkconfig $(@:_config=) ppc mpc8260 atc
  941. cogent_mpc8260_config: unconfig
  942. @./mkconfig $(@:_config=) ppc mpc8260 cogent
  943. CPU86_config \
  944. CPU86_ROMBOOT_config: unconfig
  945. @./mkconfig $(call xtract_82xx,$@) ppc mpc8260 cpu86
  946. @cd ./include ; \
  947. if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
  948. echo "CONFIG_BOOT_ROM = y" >> config.mk ; \
  949. echo "... booting from 8-bit flash" ; \
  950. else \
  951. echo "CONFIG_BOOT_ROM = n" >> config.mk ; \
  952. echo "... booting from 64-bit flash" ; \
  953. fi; \
  954. echo "export CONFIG_BOOT_ROM" >> config.mk;
  955. CPU87_config \
  956. CPU87_ROMBOOT_config: unconfig
  957. @./mkconfig $(call xtract_82xx,$@) ppc mpc8260 cpu87
  958. @cd ./include ; \
  959. if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
  960. echo "CONFIG_BOOT_ROM = y" >> config.mk ; \
  961. echo "... booting from 8-bit flash" ; \
  962. else \
  963. echo "CONFIG_BOOT_ROM = n" >> config.mk ; \
  964. echo "... booting from 64-bit flash" ; \
  965. fi; \
  966. echo "export CONFIG_BOOT_ROM" >> config.mk;
  967. ep8248_config \
  968. ep8248E_config : unconfig
  969. @./mkconfig ep8248 ppc mpc8260 ep8248
  970. ep8260_config: unconfig
  971. @./mkconfig $(@:_config=) ppc mpc8260 ep8260
  972. gw8260_config: unconfig
  973. @./mkconfig $(@:_config=) ppc mpc8260 gw8260
  974. hymod_config: unconfig
  975. @./mkconfig $(@:_config=) ppc mpc8260 hymod
  976. IDS8247_config: unconfig
  977. @./mkconfig $(@:_config=) ppc mpc8260 ids8247
  978. IPHASE4539_config: unconfig
  979. @./mkconfig $(@:_config=) ppc mpc8260 iphase4539
  980. ISPAN_config \
  981. ISPAN_REVB_config: unconfig
  982. @if [ "$(findstring _REVB_,$@)" ] ; then \
  983. echo "#define CFG_REV_B" > include/config.h ; \
  984. fi
  985. @./mkconfig -a ISPAN ppc mpc8260 ispan
  986. MPC8260ADS_config \
  987. MPC8260ADS_lowboot_config \
  988. MPC8260ADS_33MHz_config \
  989. MPC8260ADS_33MHz_lowboot_config \
  990. MPC8260ADS_40MHz_config \
  991. MPC8260ADS_40MHz_lowboot_config \
  992. MPC8272ADS_config \
  993. MPC8272ADS_lowboot_config \
  994. PQ2FADS_config \
  995. PQ2FADS_lowboot_config \
  996. PQ2FADS-VR_config \
  997. PQ2FADS-VR_lowboot_config \
  998. PQ2FADS-ZU_config \
  999. PQ2FADS-ZU_lowboot_config \
  1000. PQ2FADS-ZU_66MHz_config \
  1001. PQ2FADS-ZU_66MHz_lowboot_config \
  1002. : unconfig
  1003. $(if $(findstring PQ2FADS,$@), \
  1004. @echo "#define CONFIG_ADSTYPE CFG_PQ2FADS" > include/config.h, \
  1005. @echo "#define CONFIG_ADSTYPE CFG_"$(subst MPC,,$(word 1,$(subst _, ,$@))) > include/config.h)
  1006. $(if $(findstring MHz,$@), \
  1007. @echo "#define CONFIG_8260_CLKIN" $(subst MHz,,$(word 2,$(subst _, ,$@)))"000000" >> include/config.h, \
  1008. $(if $(findstring VR,$@), \
  1009. @echo "#define CONFIG_8260_CLKIN 66000000" >> include/config.h))
  1010. @[ -z "$(findstring lowboot_,$@)" ] || \
  1011. { echo "TEXT_BASE = 0xFF800000" >board/mpc8260ads/config.tmp ; \
  1012. echo "... with lowboot configuration" ; \
  1013. }
  1014. @./mkconfig -a MPC8260ADS ppc mpc8260 mpc8260ads
  1015. MPC8266ADS_config: unconfig
  1016. @./mkconfig $(@:_config=) ppc mpc8260 mpc8266ads
  1017. # PM825/PM826 default configuration: small (= 8 MB) Flash / boot from 64-bit flash
  1018. PM825_config \
  1019. PM825_ROMBOOT_config \
  1020. PM825_BIGFLASH_config \
  1021. PM825_ROMBOOT_BIGFLASH_config \
  1022. PM826_config \
  1023. PM826_ROMBOOT_config \
  1024. PM826_BIGFLASH_config \
  1025. PM826_ROMBOOT_BIGFLASH_config: unconfig
  1026. @if [ "$(findstring PM825_,$@)" ] ; then \
  1027. echo "#define CONFIG_PCI" >include/config.h ; \
  1028. else \
  1029. >include/config.h ; \
  1030. fi
  1031. @if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
  1032. echo "... booting from 8-bit flash" ; \
  1033. echo "#define CONFIG_BOOT_ROM" >>include/config.h ; \
  1034. echo "TEXT_BASE = 0xFF800000" >board/pm826/config.tmp ; \
  1035. if [ "$(findstring _BIGFLASH_,$@)" ] ; then \
  1036. echo "... with 32 MB Flash" ; \
  1037. echo "#define CONFIG_FLASH_32MB" >>include/config.h ; \
  1038. fi; \
  1039. else \
  1040. echo "... booting from 64-bit flash" ; \
  1041. if [ "$(findstring _BIGFLASH_,$@)" ] ; then \
  1042. echo "... with 32 MB Flash" ; \
  1043. echo "#define CONFIG_FLASH_32MB" >>include/config.h ; \
  1044. echo "TEXT_BASE = 0x40000000" >board/pm826/config.tmp ; \
  1045. else \
  1046. echo "TEXT_BASE = 0xFF000000" >board/pm826/config.tmp ; \
  1047. fi; \
  1048. fi
  1049. @./mkconfig -a PM826 ppc mpc8260 pm826
  1050. PM828_config \
  1051. PM828_PCI_config \
  1052. PM828_ROMBOOT_config \
  1053. PM828_ROMBOOT_PCI_config: unconfig
  1054. @if [ "$(findstring _PCI_,$@)" ] ; then \
  1055. echo "#define CONFIG_PCI" >>include/config.h ; \
  1056. echo "... with PCI enabled" ; \
  1057. else \
  1058. >include/config.h ; \
  1059. fi
  1060. @if [ "$(findstring _ROMBOOT_,$@)" ] ; then \
  1061. echo "... booting from 8-bit flash" ; \
  1062. echo "#define CONFIG_BOOT_ROM" >>include/config.h ; \
  1063. echo "TEXT_BASE = 0xFF800000" >board/pm826/config.tmp ; \
  1064. fi
  1065. @./mkconfig -a PM828 ppc mpc8260 pm828
  1066. ppmc8260_config: unconfig
  1067. @./mkconfig $(@:_config=) ppc mpc8260 ppmc8260
  1068. Rattler8248_config \
  1069. Rattler_config: unconfig
  1070. $(if $(findstring 8248,$@), \
  1071. @echo "#define CONFIG_MPC8248" > include/config.h)
  1072. @./mkconfig -a Rattler ppc mpc8260 rattler
  1073. RPXsuper_config: unconfig
  1074. @./mkconfig $(@:_config=) ppc mpc8260 rpxsuper
  1075. rsdproto_config: unconfig
  1076. @./mkconfig $(@:_config=) ppc mpc8260 rsdproto
  1077. sacsng_config: unconfig
  1078. @./mkconfig $(@:_config=) ppc mpc8260 sacsng
  1079. sbc8260_config: unconfig
  1080. @./mkconfig $(@:_config=) ppc mpc8260 sbc8260
  1081. SCM_config: unconfig
  1082. @./mkconfig $(@:_config=) ppc mpc8260 SCM siemens
  1083. TQM8255_AA_config \
  1084. TQM8260_AA_config \
  1085. TQM8260_AB_config \
  1086. TQM8260_AC_config \
  1087. TQM8260_AD_config \
  1088. TQM8260_AE_config \
  1089. TQM8260_AF_config \
  1090. TQM8260_AG_config \
  1091. TQM8260_AH_config \
  1092. TQM8260_AI_config \
  1093. TQM8265_AA_config: unconfig
  1094. @case "$@" in \
  1095. TQM8255_AA_config) CTYPE=MPC8255; CFREQ=300; CACHE=no; BMODE=8260;; \
  1096. TQM8260_AA_config) CTYPE=MPC8260; CFREQ=200; CACHE=no; BMODE=8260;; \
  1097. TQM8260_AB_config) CTYPE=MPC8260; CFREQ=200; CACHE=yes; BMODE=60x;; \
  1098. TQM8260_AC_config) CTYPE=MPC8260; CFREQ=200; CACHE=yes; BMODE=60x;; \
  1099. TQM8260_AD_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=60x;; \
  1100. TQM8260_AE_config) CTYPE=MPC8260; CFREQ=266; CACHE=no; BMODE=8260;; \
  1101. TQM8260_AF_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=60x;; \
  1102. TQM8260_AG_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=8260;; \
  1103. TQM8260_AH_config) CTYPE=MPC8260; CFREQ=300; CACHE=yes; BMODE=60x;; \
  1104. TQM8260_AI_config) CTYPE=MPC8260; CFREQ=300; CACHE=no; BMODE=60x;; \
  1105. TQM8265_AA_config) CTYPE=MPC8265; CFREQ=300; CACHE=no; BMODE=60x;; \
  1106. esac; \
  1107. >include/config.h ; \
  1108. if [ "$${CTYPE}" != "MPC8260" ] ; then \
  1109. echo "#define CONFIG_$${CTYPE}" >>include/config.h ; \
  1110. fi; \
  1111. echo "#define CONFIG_$${CFREQ}MHz" >>include/config.h ; \
  1112. echo "... with $${CFREQ}MHz system clock" ; \
  1113. if [ "$${CACHE}" == "yes" ] ; then \
  1114. echo "#define CONFIG_L2_CACHE" >>include/config.h ; \
  1115. echo "... with L2 Cache support" ; \
  1116. else \
  1117. echo "#undef CONFIG_L2_CACHE" >>include/config.h ; \
  1118. echo "... without L2 Cache support" ; \
  1119. fi; \
  1120. if [ "$${BMODE}" == "60x" ] ; then \
  1121. echo "#define CONFIG_BUSMODE_60x" >>include/config.h ; \
  1122. echo "... with 60x Bus Mode" ; \
  1123. else \
  1124. echo "#undef CONFIG_BUSMODE_60x" >>include/config.h ; \
  1125. echo "... without 60x Bus Mode" ; \
  1126. fi
  1127. @./mkconfig -a TQM8260 ppc mpc8260 tqm8260
  1128. VoVPN-GW_66MHz_config \
  1129. VoVPN-GW_100MHz_config: unconfig
  1130. @echo "#define CONFIG_CLKIN_$(word 2,$(subst _, ,$@))" > include/config.h
  1131. @./mkconfig -a VoVPN-GW ppc mpc8260 vovpn-gw funkwerk
  1132. ZPC1900_config: unconfig
  1133. @./mkconfig $(@:_config=) ppc mpc8260 zpc1900
  1134. #########################################################################
  1135. ## Coldfire
  1136. #########################################################################
  1137. cobra5272_config : unconfig
  1138. @./mkconfig $(@:_config=) m68k mcf52x2 cobra5272
  1139. EB+MCF-EV123_config : unconfig
  1140. @ >include/config.h
  1141. @echo "TEXT_BASE = 0xFFE00000"|tee board/BuS/EB+MCF-EV123/textbase.mk
  1142. @./mkconfig EB+MCF-EV123 m68k mcf52x2 EB+MCF-EV123 BuS
  1143. EB+MCF-EV123_internal_config : unconfig
  1144. @ >include/config.h
  1145. @echo "TEXT_BASE = 0xF0000000"|tee board/BuS/EB+MCF-EV123/textbase.mk
  1146. @./mkconfig EB+MCF-EV123 m68k mcf52x2 EB+MCF-EV123 BuS
  1147. M5271EVB_config : unconfig
  1148. @./mkconfig $(@:_config=) m68k mcf52x2 m5271evb
  1149. M5272C3_config : unconfig
  1150. @./mkconfig $(@:_config=) m68k mcf52x2 m5272c3
  1151. M5282EVB_config : unconfig
  1152. @./mkconfig $(@:_config=) m68k mcf52x2 m5282evb
  1153. TASREG_config : unconfig
  1154. @./mkconfig $(@:_config=) m68k mcf52x2 tasreg esd
  1155. r5200_config : unconfig
  1156. @./mkconfig $(@:_config=) m68k mcf52x2 r5200
  1157. #########################################################################
  1158. ## MPC83xx Systems
  1159. #########################################################################
  1160. MPC8349ADS_config: unconfig
  1161. @./mkconfig $(@:_config=) ppc mpc83xx mpc8349ads
  1162. TQM834x_config: unconfig
  1163. @./mkconfig $(@:_config=) ppc mpc83xx tqm834x
  1164. MPC8349EMDS_config: unconfig
  1165. @./mkconfig $(@:_config=) ppc mpc83xx mpc8349emds
  1166. #########################################################################
  1167. ## MPC85xx Systems
  1168. #########################################################################
  1169. MPC8540ADS_config: unconfig
  1170. @./mkconfig $(@:_config=) ppc mpc85xx mpc8540ads
  1171. MPC8540EVAL_config \
  1172. MPC8540EVAL_33_config \
  1173. MPC8540EVAL_66_config \
  1174. MPC8540EVAL_33_slave_config \
  1175. MPC8540EVAL_66_slave_config: unconfig
  1176. @echo "" >include/config.h ; \
  1177. if [ "$(findstring _33_,$@)" ] ; then \
  1178. echo -n "... 33 MHz PCI" ; \
  1179. else \
  1180. echo "#define CONFIG_SYSCLK_66M" >>include/config.h ; \
  1181. echo -n "... 66 MHz PCI" ; \
  1182. fi ; \
  1183. if [ "$(findstring _slave_,$@)" ] ; then \
  1184. echo "#define CONFIG_PCI_SLAVE" >>include/config.h ; \
  1185. echo " slave" ; \
  1186. else \
  1187. echo " host" ; \
  1188. fi
  1189. @./mkconfig -a MPC8540EVAL ppc mpc85xx mpc8540eval
  1190. MPC8560ADS_config: unconfig
  1191. @./mkconfig $(@:_config=) ppc mpc85xx mpc8560ads
  1192. MPC8541CDS_config: unconfig
  1193. @./mkconfig $(@:_config=) ppc mpc85xx mpc8541cds cds
  1194. MPC8548CDS_config: unconfig
  1195. @./mkconfig $(@:_config=) ppc mpc85xx mpc8548cds cds
  1196. MPC8555CDS_config: unconfig
  1197. @./mkconfig $(@:_config=) ppc mpc85xx mpc8555cds cds
  1198. PM854_config: unconfig
  1199. @./mkconfig $(@:_config=) ppc mpc85xx pm854
  1200. PM856_config: unconfig
  1201. @./mkconfig $(@:_config=) ppc mpc85xx pm856
  1202. sbc8540_config \
  1203. sbc8540_33_config \
  1204. sbc8540_66_config: unconfig
  1205. @if [ "$(findstring _66_,$@)" ] ; then \
  1206. echo "#define CONFIG_PCI_66" >>include/config.h ; \
  1207. echo "... 66 MHz PCI" ; \
  1208. else \
  1209. >include/config.h ; \
  1210. echo "... 33 MHz PCI" ; \
  1211. fi
  1212. @./mkconfig -a SBC8540 ppc mpc85xx sbc8560
  1213. sbc8560_config \
  1214. sbc8560_33_config \
  1215. sbc8560_66_config: unconfig
  1216. @if [ "$(findstring _66_,$@)" ] ; then \
  1217. echo "#define CONFIG_PCI_66" >>include/config.h ; \
  1218. echo "... 66 MHz PCI" ; \
  1219. else \
  1220. >include/config.h ; \
  1221. echo "... 33 MHz PCI" ; \
  1222. fi
  1223. @./mkconfig -a sbc8560 ppc mpc85xx sbc8560
  1224. stxgp3_config: unconfig
  1225. @./mkconfig $(@:_config=) ppc mpc85xx stxgp3
  1226. TQM8540_config \
  1227. TQM8541_config \
  1228. TQM8555_config \
  1229. TQM8560_config: unconfig
  1230. @CTYPE=$(subst TQM,,$(@:_config=)); \
  1231. >include/config.h ; \
  1232. echo "... TQM"$${CTYPE}; \
  1233. echo "#define CONFIG_MPC$${CTYPE}">>include/config.h; \
  1234. echo "#define CONFIG_TQM$${CTYPE}">>include/config.h; \
  1235. echo "#define CONFIG_HOSTNAME tqm$${CTYPE}">>include/config.h; \
  1236. echo "#define CONFIG_BOARDNAME \"TQM$${CTYPE}\"">>include/config.h; \
  1237. echo "#define CFG_BOOTFILE \"bootfile=/tftpboot/tqm$${CTYPE}/uImage\0\"">>include/config.h
  1238. @./mkconfig -a TQM85xx ppc mpc85xx tqm85xx
  1239. #########################################################################
  1240. ## 74xx/7xx Systems
  1241. #########################################################################
  1242. AmigaOneG3SE_config: unconfig
  1243. @./mkconfig $(@:_config=) ppc 74xx_7xx AmigaOneG3SE MAI
  1244. BAB7xx_config: unconfig
  1245. @./mkconfig $(@:_config=) ppc 74xx_7xx bab7xx eltec
  1246. CPCI750_config: unconfig
  1247. @./mkconfig CPCI750 ppc 74xx_7xx cpci750 esd
  1248. DB64360_config: unconfig
  1249. @./mkconfig DB64360 ppc 74xx_7xx db64360 Marvell
  1250. DB64460_config: unconfig
  1251. @./mkconfig DB64460 ppc 74xx_7xx db64460 Marvell
  1252. ELPPC_config: unconfig
  1253. @./mkconfig $(@:_config=) ppc 74xx_7xx elppc eltec
  1254. EVB64260_config \
  1255. EVB64260_750CX_config: unconfig
  1256. @./mkconfig EVB64260 ppc 74xx_7xx evb64260
  1257. P3G4_config: unconfig
  1258. @./mkconfig $(@:_config=) ppc 74xx_7xx evb64260
  1259. PCIPPC2_config \
  1260. PCIPPC6_config: unconfig
  1261. @./mkconfig $(@:_config=) ppc 74xx_7xx pcippc2
  1262. ZUMA_config: unconfig
  1263. @./mkconfig $(@:_config=) ppc 74xx_7xx evb64260
  1264. ppmc7xx_config: unconfig
  1265. @./mkconfig $(@:_config=) ppc 74xx_7xx ppmc7xx
  1266. #========================================================================
  1267. # ARM
  1268. #========================================================================
  1269. #########################################################################
  1270. ## StrongARM Systems
  1271. #########################################################################
  1272. assabet_config : unconfig
  1273. @./mkconfig $(@:_config=) arm sa1100 assabet
  1274. dnp1110_config : unconfig
  1275. @./mkconfig $(@:_config=) arm sa1100 dnp1110
  1276. gcplus_config : unconfig
  1277. @./mkconfig $(@:_config=) arm sa1100 gcplus
  1278. lart_config : unconfig
  1279. @./mkconfig $(@:_config=) arm sa1100 lart
  1280. shannon_config : unconfig
  1281. @./mkconfig $(@:_config=) arm sa1100 shannon
  1282. #########################################################################
  1283. ## ARM92xT Systems
  1284. #########################################################################
  1285. xtract_trab = $(subst _bigram,,$(subst _bigflash,,$(subst _old,,$(subst _config,,$1))))
  1286. xtract_omap1610xxx = $(subst _cs0boot,,$(subst _cs3boot,,$(subst _cs_autoboot,,$(subst _config,,$1))))
  1287. xtract_omap730p2 = $(subst _cs0boot,,$(subst _cs3boot,, $(subst _config,,$1)))
  1288. at91rm9200dk_config : unconfig
  1289. @./mkconfig $(@:_config=) arm arm920t at91rm9200dk NULL at91rm9200
  1290. cmc_pu2_config : unconfig
  1291. @./mkconfig $(@:_config=) arm arm920t cmc_pu2 NULL at91rm9200
  1292. csb637_config : unconfig
  1293. @./mkconfig $(@:_config=) arm arm920t csb637 NULL at91rm9200
  1294. mp2usb_config : unconfig
  1295. @./mkconfig $(@:_config=) arm arm920t mp2usb NULL at91rm9200
  1296. ########################################################################
  1297. ## ARM Integrator boards - see doc/README-integrator for more info.
  1298. integratorap_config \
  1299. ap_config \
  1300. ap966_config \
  1301. ap922_config \
  1302. ap922_XA10_config \
  1303. ap7_config \
  1304. ap720t_config \
  1305. ap920t_config \
  1306. ap926ejs_config \
  1307. ap946es_config: unconfig
  1308. @board/integratorap/split_by_variant.sh $@
  1309. integratorcp_config \
  1310. cp_config \
  1311. cp920t_config \
  1312. cp926ejs_config \
  1313. cp946es_config \
  1314. cp1136_config \
  1315. cp966_config \
  1316. cp922_config \
  1317. cp922_XA10_config \
  1318. cp1026_config: unconfig
  1319. @board/integratorcp/split_by_variant.sh $@
  1320. kb9202_config : unconfig
  1321. @./mkconfig $(@:_config=) arm arm920t kb9202 NULL at91rm9200
  1322. lpd7a400_config \
  1323. lpd7a404_config: unconfig
  1324. @./mkconfig $(@:_config=) arm lh7a40x lpd7a40x
  1325. mx1ads_config : unconfig
  1326. @./mkconfig $(@:_config=) arm arm920t mx1ads NULL imx
  1327. mx1fs2_config : unconfig
  1328. @./mkconfig $(@:_config=) arm arm920t mx1fs2 NULL imx
  1329. netstar_32_config \
  1330. netstar_config: unconfig
  1331. @if [ "$(findstring _32_,$@)" ] ; then \
  1332. echo "... 32MB SDRAM" ; \
  1333. echo "#define PHYS_SDRAM_1_SIZE SZ_32M" >>include/config.h ; \
  1334. else \
  1335. echo "... 64MB SDRAM" ; \
  1336. echo "#define PHYS_SDRAM_1_SIZE SZ_64M" >>include/config.h ; \
  1337. fi
  1338. @./mkconfig -a netstar arm arm925t netstar
  1339. omap1510inn_config : unconfig
  1340. @./mkconfig $(@:_config=) arm arm925t omap1510inn
  1341. omap5912osk_config : unconfig
  1342. @./mkconfig $(@:_config=) arm arm926ejs omap5912osk NULL omap
  1343. omap1610inn_config \
  1344. omap1610inn_cs0boot_config \
  1345. omap1610inn_cs3boot_config \
  1346. omap1610inn_cs_autoboot_config \
  1347. omap1610h2_config \
  1348. omap1610h2_cs0boot_config \
  1349. omap1610h2_cs3boot_config \
  1350. omap1610h2_cs_autoboot_config: unconfig
  1351. @if [ "$(findstring _cs0boot_, $@)" ] ; then \
  1352. echo "#define CONFIG_CS0_BOOT" >> ./include/config.h ; \
  1353. echo "... configured for CS0 boot"; \
  1354. elif [ "$(findstring _cs_autoboot_, $@)" ] ; then \
  1355. echo "#define CONFIG_CS_AUTOBOOT" >> ./include/config.h ; \
  1356. echo "... configured for CS_AUTO boot"; \
  1357. else \
  1358. echo "#define CONFIG_CS3_BOOT" >> ./include/config.h ; \
  1359. echo "... configured for CS3 boot"; \
  1360. fi;
  1361. @./mkconfig -a $(call xtract_omap1610xxx,$@) arm arm926ejs omap1610inn NULL omap
  1362. omap730p2_config \
  1363. omap730p2_cs0boot_config \
  1364. omap730p2_cs3boot_config : unconfig
  1365. @if [ "$(findstring _cs0boot_, $@)" ] ; then \
  1366. echo "#define CONFIG_CS0_BOOT" >> ./include/config.h ; \
  1367. echo "... configured for CS0 boot"; \
  1368. else \
  1369. echo "#define CONFIG_CS3_BOOT" >> ./include/config.h ; \
  1370. echo "... configured for CS3 boot"; \
  1371. fi;
  1372. @./mkconfig -a $(call xtract_omap730p2,$@) arm arm926ejs omap730p2 NULL omap
  1373. sbc2410x_config: unconfig
  1374. @./mkconfig $(@:_config=) arm arm920t sbc2410x NULL s3c24x0
  1375. scb9328_config : unconfig
  1376. @./mkconfig $(@:_config=) arm arm920t scb9328 NULL imx
  1377. smdk2400_config : unconfig
  1378. @./mkconfig $(@:_config=) arm arm920t smdk2400 NULL s3c24x0
  1379. smdk2410_config : unconfig
  1380. @./mkconfig $(@:_config=) arm arm920t smdk2410 NULL s3c24x0
  1381. SX1_config : unconfig
  1382. @./mkconfig $(@:_config=) arm arm925t sx1
  1383. # TRAB default configuration: 8 MB Flash, 32 MB RAM
  1384. trab_config \
  1385. trab_bigram_config \
  1386. trab_bigflash_config \
  1387. trab_old_config: unconfig
  1388. @ >include/config.h
  1389. @[ -z "$(findstring _bigram,$@)" ] || \
  1390. { echo "#define CONFIG_FLASH_8MB" >>include/config.h ; \
  1391. echo "#define CONFIG_RAM_32MB" >>include/config.h ; \
  1392. echo "... with 8 MB Flash, 32 MB RAM" ; \
  1393. }
  1394. @[ -z "$(findstring _bigflash,$@)" ] || \
  1395. { echo "#define CONFIG_FLASH_16MB" >>include/config.h ; \
  1396. echo "#define CONFIG_RAM_16MB" >>include/config.h ; \
  1397. echo "... with 16 MB Flash, 16 MB RAM" ; \
  1398. echo "TEXT_BASE = 0x0CF40000" >board/trab/config.tmp ; \
  1399. }
  1400. @[ -z "$(findstring _old,$@)" ] || \
  1401. { echo "#define CONFIG_FLASH_8MB" >>include/config.h ; \
  1402. echo "#define CONFIG_RAM_16MB" >>include/config.h ; \
  1403. echo "... with 8 MB Flash, 16 MB RAM" ; \
  1404. echo "TEXT_BASE = 0x0CF40000" >board/trab/config.tmp ; \
  1405. }
  1406. @./mkconfig -a $(call xtract_trab,$@) arm arm920t trab NULL s3c24x0
  1407. VCMA9_config : unconfig
  1408. @./mkconfig $(@:_config=) arm arm920t vcma9 mpl s3c24x0
  1409. #========================================================================
  1410. # ARM supplied Versatile development boards
  1411. #========================================================================
  1412. versatile_config \
  1413. versatileab_config \
  1414. versatilepb_config : unconfig
  1415. @board/versatile/split_by_variant.sh $@
  1416. voiceblue_smallflash_config \
  1417. voiceblue_config: unconfig
  1418. @if [ "$(findstring _smallflash_,$@)" ] ; then \
  1419. echo "... boot from lower flash bank" ; \
  1420. echo "#define VOICEBLUE_SMALL_FLASH" >>include/config.h ; \
  1421. echo "VOICEBLUE_SMALL_FLASH=y" >board/voiceblue/config.tmp ; \
  1422. else \
  1423. echo "... boot from upper flash bank" ; \
  1424. >include/config.h ; \
  1425. echo "VOICEBLUE_SMALL_FLASH=n" >board/voiceblue/config.tmp ; \
  1426. fi
  1427. @./mkconfig -a voiceblue arm arm925t voiceblue
  1428. cm4008_config : unconfig
  1429. @./mkconfig $(@:_config=) arm arm920t cm4008 NULL ks8695
  1430. cm41xx_config : unconfig
  1431. @./mkconfig $(@:_config=) arm arm920t cm41xx NULL ks8695
  1432. gth2_config : unconfig
  1433. @ >include/config.h
  1434. @echo "#define CONFIG_GTH2 1" >>include/config.h
  1435. @./mkconfig -a gth2 mips mips gth2
  1436. #########################################################################
  1437. ## S3C44B0 Systems
  1438. #########################################################################
  1439. B2_config : unconfig
  1440. @./mkconfig $(@:_config=) arm s3c44b0 B2 dave
  1441. #########################################################################
  1442. ## ARM720T Systems
  1443. #########################################################################
  1444. armadillo_config: unconfig
  1445. @./mkconfig $(@:_config=) arm arm720t armadillo
  1446. ep7312_config : unconfig
  1447. @./mkconfig $(@:_config=) arm arm720t ep7312
  1448. impa7_config : unconfig
  1449. @./mkconfig $(@:_config=) arm arm720t impa7
  1450. modnet50_config : unconfig
  1451. @./mkconfig $(@:_config=) arm arm720t modnet50
  1452. evb4510_config : unconfig
  1453. @./mkconfig $(@:_config=) arm arm720t evb4510
  1454. #########################################################################
  1455. ## XScale Systems
  1456. #########################################################################
  1457. adsvix_config : unconfig
  1458. @./mkconfig $(@:_config=) arm pxa adsvix
  1459. cerf250_config : unconfig
  1460. @./mkconfig $(@:_config=) arm pxa cerf250
  1461. cradle_config : unconfig
  1462. @./mkconfig $(@:_config=) arm pxa cradle
  1463. csb226_config : unconfig
  1464. @./mkconfig $(@:_config=) arm pxa csb226
  1465. delta_config :
  1466. @./mkconfig $(@:_config=) arm pxa delta
  1467. innokom_config : unconfig
  1468. @./mkconfig $(@:_config=) arm pxa innokom
  1469. ixdp425_config : unconfig
  1470. @./mkconfig $(@:_config=) arm ixp ixdp425
  1471. ixdpg425_config : unconfig
  1472. @./mkconfig $(@:_config=) arm ixp ixdp425
  1473. lubbock_config : unconfig
  1474. @./mkconfig $(@:_config=) arm pxa lubbock
  1475. pleb2_config : unconfig
  1476. @./mkconfig $(@:_config=) arm pxa pleb2
  1477. logodl_config : unconfig
  1478. @./mkconfig $(@:_config=) arm pxa logodl
  1479. pdnb3_config : unconfig
  1480. @./mkconfig $(@:_config=) arm ixp pdnb3 prodrive
  1481. pxa255_idp_config: unconfig
  1482. @./mkconfig $(@:_config=) arm pxa pxa255_idp
  1483. wepep250_config : unconfig
  1484. @./mkconfig $(@:_config=) arm pxa wepep250
  1485. xaeniax_config : unconfig
  1486. @./mkconfig $(@:_config=) arm pxa xaeniax
  1487. xm250_config : unconfig
  1488. @./mkconfig $(@:_config=) arm pxa xm250
  1489. xsengine_config : unconfig
  1490. @./mkconfig $(@:_config=) arm pxa xsengine
  1491. zylonite_config :
  1492. @./mkconfig $(@:_config=) arm pxa zylonite
  1493. #########################################################################
  1494. ## ARM1136 Systems
  1495. #########################################################################
  1496. omap2420h4_config : unconfig
  1497. @./mkconfig $(@:_config=) arm arm1136 omap2420h4
  1498. #========================================================================
  1499. # i386
  1500. #========================================================================
  1501. #########################################################################
  1502. ## AMD SC520 CDP
  1503. #########################################################################
  1504. sc520_cdp_config : unconfig
  1505. @./mkconfig $(@:_config=) i386 i386 sc520_cdp
  1506. sc520_spunk_config : unconfig
  1507. @./mkconfig $(@:_config=) i386 i386 sc520_spunk
  1508. sc520_spunk_rel_config : unconfig
  1509. @./mkconfig $(@:_config=) i386 i386 sc520_spunk
  1510. #========================================================================
  1511. # MIPS
  1512. #========================================================================
  1513. #########################################################################
  1514. ## MIPS32 4Kc
  1515. #########################################################################
  1516. xtract_incaip = $(subst _100MHz,,$(subst _133MHz,,$(subst _150MHz,,$(subst _config,,$1))))
  1517. incaip_100MHz_config \
  1518. incaip_133MHz_config \
  1519. incaip_150MHz_config \
  1520. incaip_config: unconfig
  1521. @ >include/config.h
  1522. @[ -z "$(findstring _100MHz,$@)" ] || \
  1523. { echo "#define CPU_CLOCK_RATE 100000000" >>include/config.h ; \
  1524. echo "... with 100MHz system clock" ; \
  1525. }
  1526. @[ -z "$(findstring _133MHz,$@)" ] || \
  1527. { echo "#define CPU_CLOCK_RATE 133000000" >>include/config.h ; \
  1528. echo "... with 133MHz system clock" ; \
  1529. }
  1530. @[ -z "$(findstring _150MHz,$@)" ] || \
  1531. { echo "#define CPU_CLOCK_RATE 150000000" >>include/config.h ; \
  1532. echo "... with 150MHz system clock" ; \
  1533. }
  1534. @./mkconfig -a $(call xtract_incaip,$@) mips mips incaip
  1535. tb0229_config: unconfig
  1536. @./mkconfig $(@:_config=) mips mips tb0229
  1537. #########################################################################
  1538. ## MIPS32 AU1X00
  1539. #########################################################################
  1540. dbau1000_config : unconfig
  1541. @ >include/config.h
  1542. @echo "#define CONFIG_DBAU1000 1" >>include/config.h
  1543. @./mkconfig -a dbau1x00 mips mips dbau1x00
  1544. dbau1100_config : unconfig
  1545. @ >include/config.h
  1546. @echo "#define CONFIG_DBAU1100 1" >>include/config.h
  1547. @./mkconfig -a dbau1x00 mips mips dbau1x00
  1548. dbau1500_config : unconfig
  1549. @ >include/config.h
  1550. @echo "#define CONFIG_DBAU1500 1" >>include/config.h
  1551. @./mkconfig -a dbau1x00 mips mips dbau1x00
  1552. dbau1550_config : unconfig
  1553. @ >include/config.h
  1554. @echo "#define CONFIG_DBAU1550 1" >>include/config.h
  1555. @./mkconfig -a dbau1x00 mips mips dbau1x00
  1556. dbau1550_el_config : unconfig
  1557. @ >include/config.h
  1558. @echo "#define CONFIG_DBAU1550 1" >>include/config.h
  1559. @./mkconfig -a dbau1x00 mips mips dbau1x00
  1560. pb1000_config : unconfig
  1561. @ >include/config.h
  1562. @echo "#define CONFIG_PB1000 1" >>include/config.h
  1563. @./mkconfig -a pb1x00 mips mips pb1x00
  1564. #########################################################################
  1565. ## MIPS64 5Kc
  1566. #########################################################################
  1567. purple_config : unconfig
  1568. @./mkconfig $(@:_config=) mips mips purple
  1569. #========================================================================
  1570. # Nios
  1571. #========================================================================
  1572. #########################################################################
  1573. ## Nios32
  1574. #########################################################################
  1575. DK1C20_safe_32_config \
  1576. DK1C20_standard_32_config \
  1577. DK1C20_config: unconfig
  1578. @ >include/config.h
  1579. @[ -z "$(findstring _safe_32,$@)" ] || \
  1580. { echo "#define CONFIG_NIOS_SAFE_32 1" >>include/config.h ; \
  1581. echo "... NIOS 'safe_32' configuration" ; \
  1582. }
  1583. @[ -z "$(findstring _standard_32,$@)" ] || \
  1584. { echo "#define CONFIG_NIOS_STANDARD_32 1" >>include/config.h ; \
  1585. echo "... NIOS 'standard_32' configuration" ; \
  1586. }
  1587. @[ -z "$(findstring DK1C20_config,$@)" ] || \
  1588. { echo "#define CONFIG_NIOS_STANDARD_32 1" >>include/config.h ; \
  1589. echo "... NIOS 'standard_32' configuration (DEFAULT)" ; \
  1590. }
  1591. @./mkconfig -a DK1C20 nios nios dk1c20 altera
  1592. DK1S10_safe_32_config \
  1593. DK1S10_standard_32_config \
  1594. DK1S10_mtx_ldk_20_config \
  1595. DK1S10_config: unconfig
  1596. @ >include/config.h
  1597. @[ -z "$(findstring _safe_32,$@)" ] || \
  1598. { echo "#define CONFIG_NIOS_SAFE_32 1" >>include/config.h ; \
  1599. echo "... NIOS 'safe_32' configuration" ; \
  1600. }
  1601. @[ -z "$(findstring _standard_32,$@)" ] || \
  1602. { echo "#define CONFIG_NIOS_STANDARD_32 1" >>include/config.h ; \
  1603. echo "... NIOS 'standard_32' configuration" ; \
  1604. }
  1605. @[ -z "$(findstring _mtx_ldk_20,$@)" ] || \
  1606. { echo "#define CONFIG_NIOS_MTX_LDK_20 1" >>include/config.h ; \
  1607. echo "... NIOS 'mtx_ldk_20' configuration" ; \
  1608. }
  1609. @[ -z "$(findstring DK1S10_config,$@)" ] || \
  1610. { echo "#define CONFIG_NIOS_STANDARD_32 1" >>include/config.h ; \
  1611. echo "... NIOS 'standard_32' configuration (DEFAULT)" ; \
  1612. }
  1613. @./mkconfig -a DK1S10 nios nios dk1s10 altera
  1614. ADNPESC1_DNPEVA2_base_32_config \
  1615. ADNPESC1_base_32_config \
  1616. ADNPESC1_config: unconfig
  1617. @ >include/config.h
  1618. @[ -z "$(findstring _DNPEVA2,$@)" ] || \
  1619. { echo "#define CONFIG_DNPEVA2 1" >>include/config.h ; \
  1620. echo "... DNP/EVA2 configuration" ; \
  1621. }
  1622. @[ -z "$(findstring _base_32,$@)" ] || \
  1623. { echo "#define CONFIG_NIOS_BASE_32 1" >>include/config.h ; \
  1624. echo "... NIOS 'base_32' configuration" ; \
  1625. }
  1626. @[ -z "$(findstring ADNPESC1_config,$@)" ] || \
  1627. { echo "#define CONFIG_NIOS_BASE_32 1" >>include/config.h ; \
  1628. echo "... NIOS 'base_32' configuration (DEFAULT)" ; \
  1629. }
  1630. @./mkconfig -a ADNPESC1 nios nios adnpesc1 ssv
  1631. #########################################################################
  1632. ## Nios-II
  1633. #########################################################################
  1634. EP1C20_config : unconfig
  1635. @./mkconfig EP1C20 nios2 nios2 ep1c20 altera
  1636. EP1S10_config : unconfig
  1637. @./mkconfig EP1S10 nios2 nios2 ep1s10 altera
  1638. EP1S40_config : unconfig
  1639. @./mkconfig EP1S40 nios2 nios2 ep1s40 altera
  1640. PK1C20_config : unconfig
  1641. @./mkconfig PK1C20 nios2 nios2 pk1c20 psyent
  1642. PCI5441_config : unconfig
  1643. @./mkconfig PCI5441 nios2 nios2 pci5441 psyent
  1644. #========================================================================
  1645. # MicroBlaze
  1646. #========================================================================
  1647. #########################################################################
  1648. ## Microblaze
  1649. #########################################################################
  1650. suzaku_config: unconfig
  1651. @ >include/config.h
  1652. @echo "#define CONFIG_SUZAKU 1" >> include/config.h
  1653. @./mkconfig -a $(@:_config=) microblaze microblaze suzaku AtmarkTechno
  1654. #########################################################################
  1655. ## Blackfin
  1656. #########################################################################
  1657. ezkit533_config : unconfig
  1658. @./mkconfig $(@:_config=) blackfin bf533 ezkit533
  1659. stamp_config : unconfig
  1660. @./mkconfig $(@:_config=) blackfin bf533 stamp
  1661. dspstamp_config : unconfig
  1662. @./mkconfig $(@:_config=) blackfin bf533 dsp_stamp
  1663. #########################################################################
  1664. #########################################################################
  1665. #########################################################################
  1666. clean:
  1667. find . -type f \
  1668. \( -name 'core' -o -name '*.bak' -o -name '*~' \
  1669. -o -name '*.o' -o -name '*.a' \) -print \
  1670. | xargs rm -f
  1671. rm -f examples/hello_world examples/timer \
  1672. examples/eepro100_eeprom examples/sched \
  1673. examples/mem_to_mem_idma2intr examples/82559_eeprom \
  1674. examples/smc91111_eeprom \
  1675. examples/test_burst
  1676. rm -f tools/img2srec tools/mkimage tools/envcrc tools/gen_eth_addr
  1677. rm -f tools/mpc86x_clk tools/ncb
  1678. rm -f tools/easylogo/easylogo tools/bmp_logo
  1679. rm -f tools/gdb/astest tools/gdb/gdbcont tools/gdb/gdbsend
  1680. rm -f tools/env/fw_printenv tools/env/fw_setenv
  1681. rm -f board/cray/L1/bootscript.c board/cray/L1/bootscript.image
  1682. rm -f board/netstar/eeprom board/netstar/crcek
  1683. rm -f board/netstar/*.srec board/netstar/*.bin
  1684. rm -f board/trab/trab_fkt board/voiceblue/eeprom
  1685. rm -f board/integratorap/u-boot.lds board/integratorcp/u-boot.lds
  1686. rm -f include/bmp_logo.h
  1687. clobber: clean
  1688. find . -type f \( -name .depend \
  1689. -o -name '*.srec' -o -name '*.bin' -o -name u-boot.img \) \
  1690. -print0 \
  1691. | xargs -0 rm -f
  1692. rm -f $(OBJS) *.bak tags TAGS include/version_autogenerated.h
  1693. rm -fr *.*~
  1694. rm -f u-boot u-boot.map u-boot.hex $(ALL)
  1695. rm -f tools/crc32.c tools/environment.c tools/env/crc32.c
  1696. rm -f tools/inca-swap-bytes cpu/mpc824x/bedbug_603e.c
  1697. rm -f include/asm/proc include/asm/arch include/asm
  1698. mrproper \
  1699. distclean: clobber unconfig
  1700. backup:
  1701. F=`basename $(TOPDIR)` ; cd .. ; \
  1702. gtar --force-local -zcvf `date "+$$F-%Y-%m-%d-%T.tar.gz"` $$F
  1703. #########################################################################