Makefile 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945
  1. #
  2. # (C) Copyright 2000-2013
  3. # Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  4. #
  5. # SPDX-License-Identifier: GPL-2.0+
  6. #
  7. VERSION = 2013
  8. PATCHLEVEL = 10
  9. SUBLEVEL =
  10. EXTRAVERSION =
  11. ifneq "$(SUBLEVEL)" ""
  12. U_BOOT_VERSION = $(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION)
  13. else
  14. U_BOOT_VERSION = $(VERSION).$(PATCHLEVEL)$(EXTRAVERSION)
  15. endif
  16. TIMESTAMP_FILE = $(obj)include/generated/timestamp_autogenerated.h
  17. VERSION_FILE = $(obj)include/generated/version_autogenerated.h
  18. HOSTARCH := $(shell uname -m | \
  19. sed -e s/i.86/x86/ \
  20. -e s/sun4u/sparc64/ \
  21. -e s/arm.*/arm/ \
  22. -e s/sa110/arm/ \
  23. -e s/ppc64/powerpc/ \
  24. -e s/ppc/powerpc/ \
  25. -e s/macppc/powerpc/\
  26. -e s/sh.*/sh/)
  27. HOSTOS := $(shell uname -s | tr '[:upper:]' '[:lower:]' | \
  28. sed -e 's/\(cygwin\).*/cygwin/')
  29. export HOSTARCH HOSTOS
  30. # Deal with colliding definitions from tcsh etc.
  31. VENDOR=
  32. #########################################################################
  33. # Allow for silent builds
  34. ifeq (,$(findstring s,$(MAKEFLAGS)))
  35. XECHO = echo
  36. else
  37. XECHO = :
  38. endif
  39. #########################################################################
  40. #
  41. # U-boot build supports generating object files in a separate external
  42. # directory. Two use cases are supported:
  43. #
  44. # 1) Add O= to the make command line
  45. # 'make O=/tmp/build all'
  46. #
  47. # 2) Set environment variable BUILD_DIR to point to the desired location
  48. # 'export BUILD_DIR=/tmp/build'
  49. # 'make'
  50. #
  51. # The second approach can also be used with a MAKEALL script
  52. # 'export BUILD_DIR=/tmp/build'
  53. # './MAKEALL'
  54. #
  55. # Command line 'O=' setting overrides BUILD_DIR environment variable.
  56. #
  57. # When none of the above methods is used the local build is performed and
  58. # the object files are placed in the source directory.
  59. #
  60. ifdef O
  61. ifeq ("$(origin O)", "command line")
  62. BUILD_DIR := $(O)
  63. endif
  64. endif
  65. # Call a source code checker (by default, "sparse") as part of the
  66. # C compilation.
  67. #
  68. # Use 'make C=1' to enable checking of re-compiled files.
  69. #
  70. # See the linux kernel file "Documentation/sparse.txt" for more details,
  71. # including where to get the "sparse" utility.
  72. ifdef C
  73. ifeq ("$(origin C)", "command line")
  74. CHECKSRC := $(C)
  75. endif
  76. endif
  77. ifndef CHECKSRC
  78. CHECKSRC = 0
  79. endif
  80. export CHECKSRC
  81. ifneq ($(BUILD_DIR),)
  82. saved-output := $(BUILD_DIR)
  83. # Attempt to create a output directory.
  84. $(shell [ -d ${BUILD_DIR} ] || mkdir -p ${BUILD_DIR})
  85. # Verify if it was successful.
  86. BUILD_DIR := $(shell cd $(BUILD_DIR) && /bin/pwd)
  87. $(if $(BUILD_DIR),,$(error output directory "$(saved-output)" does not exist))
  88. endif # ifneq ($(BUILD_DIR),)
  89. OBJTREE := $(if $(BUILD_DIR),$(BUILD_DIR),$(CURDIR))
  90. SPLTREE := $(OBJTREE)/spl
  91. TPLTREE := $(OBJTREE)/tpl
  92. SRCTREE := $(CURDIR)
  93. TOPDIR := $(SRCTREE)
  94. LNDIR := $(OBJTREE)
  95. export TOPDIR SRCTREE OBJTREE SPLTREE TPLTREE
  96. MKCONFIG := $(SRCTREE)/mkconfig
  97. export MKCONFIG
  98. ifneq ($(OBJTREE),$(SRCTREE))
  99. REMOTE_BUILD := 1
  100. export REMOTE_BUILD
  101. endif
  102. # $(obj) and (src) are defined in config.mk but here in main Makefile
  103. # we also need them before config.mk is included which is the case for
  104. # some targets like unconfig, clean, clobber, distclean, etc.
  105. ifneq ($(OBJTREE),$(SRCTREE))
  106. obj := $(OBJTREE)/
  107. src := $(SRCTREE)/
  108. else
  109. obj :=
  110. src :=
  111. endif
  112. export obj src
  113. # Make sure CDPATH settings don't interfere
  114. unexport CDPATH
  115. #########################################################################
  116. # The "tools" are needed early, so put this first
  117. # Don't include stuff already done in $(LIBS)
  118. # The "examples" conditionally depend on U-Boot (say, when USE_PRIVATE_LIBGCC
  119. # is "yes"), so compile examples after U-Boot is compiled.
  120. SUBDIR_TOOLS = tools
  121. SUBDIR_EXAMPLES = examples/standalone examples/api
  122. SUBDIRS = $(SUBDIR_TOOLS)
  123. .PHONY : $(SUBDIRS) $(VERSION_FILE) $(TIMESTAMP_FILE)
  124. ifeq ($(obj)include/config.mk,$(wildcard $(obj)include/config.mk))
  125. # Include autoconf.mk before config.mk so that the config options are available
  126. # to all top level build files. We need the dummy all: target to prevent the
  127. # dependency target in autoconf.mk.dep from being the default.
  128. all:
  129. sinclude $(obj)include/autoconf.mk.dep
  130. sinclude $(obj)include/autoconf.mk
  131. ifndef CONFIG_SANDBOX
  132. SUBDIRS += $(SUBDIR_EXAMPLES)
  133. endif
  134. # load ARCH, BOARD, and CPU configuration
  135. include $(obj)include/config.mk
  136. export ARCH CPU BOARD VENDOR SOC
  137. # set default to nothing for native builds
  138. ifeq ($(HOSTARCH),$(ARCH))
  139. CROSS_COMPILE ?=
  140. endif
  141. # load other configuration
  142. include $(TOPDIR)/config.mk
  143. # Targets which don't build the source code
  144. NON_BUILD_TARGETS = backup clean clobber distclean mkproper tidy unconfig
  145. # Only do the generic board check when actually building, not configuring
  146. ifeq ($(filter $(NON_BUILD_TARGETS),$(MAKECMDGOALS)),)
  147. ifeq ($(findstring _config,$(MAKECMDGOALS)),)
  148. $(CHECK_GENERIC_BOARD)
  149. endif
  150. endif
  151. # If board code explicitly specified LDSCRIPT or CONFIG_SYS_LDSCRIPT, use
  152. # that (or fail if absent). Otherwise, search for a linker script in a
  153. # standard location.
  154. LDSCRIPT_MAKEFILE_DIR = $(dir $(LDSCRIPT))
  155. ifndef LDSCRIPT
  156. #LDSCRIPT := $(TOPDIR)/board/$(BOARDDIR)/u-boot.lds.debug
  157. ifdef CONFIG_SYS_LDSCRIPT
  158. # need to strip off double quotes
  159. LDSCRIPT := $(subst ",,$(CONFIG_SYS_LDSCRIPT))
  160. endif
  161. endif
  162. # If there is no specified link script, we look in a number of places for it
  163. ifndef LDSCRIPT
  164. ifeq ($(CONFIG_NAND_U_BOOT),y)
  165. LDSCRIPT := $(TOPDIR)/board/$(BOARDDIR)/u-boot-nand.lds
  166. ifeq ($(wildcard $(LDSCRIPT)),)
  167. LDSCRIPT := $(TOPDIR)/$(CPUDIR)/u-boot-nand.lds
  168. endif
  169. endif
  170. ifeq ($(wildcard $(LDSCRIPT)),)
  171. LDSCRIPT := $(TOPDIR)/board/$(BOARDDIR)/u-boot.lds
  172. endif
  173. ifeq ($(wildcard $(LDSCRIPT)),)
  174. LDSCRIPT := $(TOPDIR)/$(CPUDIR)/u-boot.lds
  175. endif
  176. ifeq ($(wildcard $(LDSCRIPT)),)
  177. LDSCRIPT := $(TOPDIR)/arch/$(ARCH)/cpu/u-boot.lds
  178. # We don't expect a Makefile here
  179. LDSCRIPT_MAKEFILE_DIR =
  180. endif
  181. ifeq ($(wildcard $(LDSCRIPT)),)
  182. $(error could not find linker script)
  183. endif
  184. endif
  185. #########################################################################
  186. # U-Boot objects....order is important (i.e. start must be first)
  187. OBJS = $(CPUDIR)/start.o
  188. ifeq ($(CPU),ppc4xx)
  189. OBJS += $(CPUDIR)/resetvec.o
  190. endif
  191. ifeq ($(CPU),mpc85xx)
  192. OBJS += $(CPUDIR)/resetvec.o
  193. endif
  194. OBJS := $(addprefix $(obj),$(OBJS))
  195. HAVE_VENDOR_COMMON_LIB = $(if $(wildcard board/$(VENDOR)/common/Makefile),y,n)
  196. LIBS-y += lib/libgeneric.o
  197. LIBS-y += lib/rsa/librsa.o
  198. LIBS-y += lib/lzma/liblzma.o
  199. LIBS-y += lib/lzo/liblzo.o
  200. LIBS-y += lib/zlib/libz.o
  201. LIBS-$(CONFIG_TIZEN) += lib/tizen/libtizen.o
  202. LIBS-$(HAVE_VENDOR_COMMON_LIB) += board/$(VENDOR)/common/lib$(VENDOR).o
  203. LIBS-y += $(CPUDIR)/lib$(CPU).o
  204. ifdef SOC
  205. LIBS-y += $(CPUDIR)/$(SOC)/lib$(SOC).o
  206. endif
  207. ifeq ($(CPU),ixp)
  208. LIBS-y += drivers/net/npe/libnpe.o
  209. endif
  210. LIBS-$(CONFIG_OF_EMBED) += dts/libdts.o
  211. LIBS-y += arch/$(ARCH)/lib/lib$(ARCH).o
  212. LIBS-y += fs/libfs.o \
  213. fs/cbfs/libcbfs.o \
  214. fs/cramfs/libcramfs.o \
  215. fs/ext4/libext4fs.o \
  216. fs/fat/libfat.o \
  217. fs/fdos/libfdos.o \
  218. fs/jffs2/libjffs2.o \
  219. fs/reiserfs/libreiserfs.o \
  220. fs/sandbox/libsandboxfs.o \
  221. fs/ubifs/libubifs.o \
  222. fs/yaffs2/libyaffs2.o \
  223. fs/zfs/libzfs.o
  224. LIBS-y += net/libnet.o
  225. LIBS-y += disk/libdisk.o
  226. LIBS-y += drivers/bios_emulator/libatibiosemu.o
  227. LIBS-y += drivers/block/libblock.o
  228. LIBS-$(CONFIG_BOOTCOUNT_LIMIT) += drivers/bootcount/libbootcount.o
  229. LIBS-y += drivers/crypto/libcrypto.o
  230. LIBS-y += drivers/dma/libdma.o
  231. LIBS-y += drivers/fpga/libfpga.o
  232. LIBS-y += drivers/gpio/libgpio.o
  233. LIBS-y += drivers/hwmon/libhwmon.o
  234. LIBS-y += drivers/i2c/libi2c.o
  235. LIBS-y += drivers/input/libinput.o
  236. LIBS-y += drivers/misc/libmisc.o
  237. LIBS-y += drivers/mmc/libmmc.o
  238. LIBS-y += drivers/mtd/libmtd.o
  239. LIBS-y += drivers/mtd/nand/libnand.o
  240. LIBS-y += drivers/mtd/onenand/libonenand.o
  241. LIBS-y += drivers/mtd/ubi/libubi.o
  242. LIBS-y += drivers/mtd/spi/libspi_flash.o
  243. LIBS-y += drivers/net/libnet.o
  244. LIBS-y += drivers/net/phy/libphy.o
  245. LIBS-y += drivers/pci/libpci.o
  246. LIBS-y += drivers/pcmcia/libpcmcia.o
  247. LIBS-y += drivers/power/libpower.o \
  248. drivers/power/fuel_gauge/libfuel_gauge.o \
  249. drivers/power/mfd/libmfd.o \
  250. drivers/power/pmic/libpmic.o \
  251. drivers/power/battery/libbattery.o
  252. LIBS-y += drivers/spi/libspi.o
  253. LIBS-y += drivers/dfu/libdfu.o
  254. ifeq ($(CPU),mpc83xx)
  255. LIBS-y += drivers/qe/libqe.o
  256. LIBS-y += arch/powerpc/cpu/mpc8xxx/ddr/libddr.o
  257. LIBS-y += arch/powerpc/cpu/mpc8xxx/lib8xxx.o
  258. endif
  259. ifeq ($(CPU),mpc85xx)
  260. LIBS-y += drivers/qe/libqe.o
  261. LIBS-y += drivers/net/fm/libfm.o
  262. LIBS-y += arch/powerpc/cpu/mpc8xxx/ddr/libddr.o
  263. LIBS-y += arch/powerpc/cpu/mpc8xxx/lib8xxx.o
  264. endif
  265. ifeq ($(CPU),mpc86xx)
  266. LIBS-y += arch/powerpc/cpu/mpc8xxx/ddr/libddr.o
  267. LIBS-y += arch/powerpc/cpu/mpc8xxx/lib8xxx.o
  268. endif
  269. LIBS-y += drivers/rtc/librtc.o
  270. LIBS-y += drivers/serial/libserial.o
  271. LIBS-y += drivers/sound/libsound.o
  272. LIBS-y += drivers/tpm/libtpm.o
  273. LIBS-y += drivers/twserial/libtws.o
  274. LIBS-y += drivers/usb/eth/libusb_eth.o
  275. LIBS-y += drivers/usb/gadget/libusb_gadget.o
  276. LIBS-y += drivers/usb/host/libusb_host.o
  277. LIBS-y += drivers/usb/musb/libusb_musb.o
  278. LIBS-y += drivers/usb/musb-new/libusb_musb-new.o
  279. LIBS-y += drivers/usb/phy/libusb_phy.o
  280. LIBS-y += drivers/usb/ulpi/libusb_ulpi.o
  281. LIBS-y += drivers/video/libvideo.o
  282. LIBS-y += drivers/watchdog/libwatchdog.o
  283. LIBS-y += common/libcommon.o
  284. LIBS-y += lib/libfdt/libfdt.o
  285. LIBS-y += api/libapi.o
  286. LIBS-y += post/libpost.o
  287. LIBS-y += test/libtest.o
  288. ifneq ($(CONFIG_OMAP_COMMON),)
  289. LIBS-y += $(CPUDIR)/omap-common/libomap-common.o
  290. endif
  291. ifneq (,$(filter $(SOC), mx25 mx27 mx5 mx6 mx31 mx35 mxs vf610))
  292. LIBS-y += arch/$(ARCH)/imx-common/libimx-common.o
  293. endif
  294. ifeq ($(SOC),s5pc1xx)
  295. LIBS-y += $(CPUDIR)/s5p-common/libs5p-common.o
  296. endif
  297. ifeq ($(SOC),exynos)
  298. LIBS-y += $(CPUDIR)/s5p-common/libs5p-common.o
  299. endif
  300. ifneq ($(CONFIG_TEGRA),)
  301. LIBS-y += arch/$(ARCH)/cpu/$(SOC)-common/lib$(SOC)-common.o
  302. LIBS-y += arch/$(ARCH)/cpu/tegra-common/libcputegra-common.o
  303. LIBS-y += $(CPUDIR)/tegra-common/libtegra-common.o
  304. endif
  305. LIBS := $(addprefix $(obj),$(sort $(LIBS-y)))
  306. .PHONY : $(LIBS)
  307. LIBBOARD = board/$(BOARDDIR)/lib$(BOARD).o
  308. LIBBOARD := $(addprefix $(obj),$(LIBBOARD))
  309. # Add GCC lib
  310. ifdef USE_PRIVATE_LIBGCC
  311. ifeq ("$(USE_PRIVATE_LIBGCC)", "yes")
  312. PLATFORM_LIBGCC = $(OBJTREE)/arch/$(ARCH)/lib/libgcc.o
  313. else
  314. PLATFORM_LIBGCC = -L $(USE_PRIVATE_LIBGCC) -lgcc
  315. endif
  316. else
  317. PLATFORM_LIBGCC := -L $(shell dirname `$(CC) $(CFLAGS) -print-libgcc-file-name`) -lgcc
  318. endif
  319. PLATFORM_LIBS += $(PLATFORM_LIBGCC)
  320. export PLATFORM_LIBS
  321. # Special flags for CPP when processing the linker script.
  322. # Pass the version down so we can handle backwards compatibility
  323. # on the fly.
  324. LDPPFLAGS += \
  325. -include $(TOPDIR)/include/u-boot/u-boot.lds.h \
  326. -DCPUDIR=$(CPUDIR) \
  327. $(shell $(LD) --version | \
  328. sed -ne 's/GNU ld version \([0-9][0-9]*\)\.\([0-9][0-9]*\).*/-DLD_MAJOR=\1 -DLD_MINOR=\2/p')
  329. __OBJS := $(subst $(obj),,$(OBJS))
  330. __LIBS := $(subst $(obj),,$(LIBS)) $(subst $(obj),,$(LIBBOARD))
  331. #########################################################################
  332. #########################################################################
  333. ifneq ($(CONFIG_BOARD_SIZE_LIMIT),)
  334. BOARD_SIZE_CHECK = \
  335. @actual=`wc -c $@ | awk '{print $$1}'`; \
  336. limit=`printf "%d" $(CONFIG_BOARD_SIZE_LIMIT)`; \
  337. if test $$actual -gt $$limit; then \
  338. echo "$@ exceeds file size limit:" >&2 ; \
  339. echo " limit: $$limit bytes" >&2 ; \
  340. echo " actual: $$actual bytes" >&2 ; \
  341. echo " excess: $$((actual - limit)) bytes" >&2; \
  342. exit 1; \
  343. fi
  344. else
  345. BOARD_SIZE_CHECK =
  346. endif
  347. # Always append ALL so that arch config.mk's can add custom ones
  348. ALL-y += $(obj)u-boot.srec $(obj)u-boot.bin $(obj)System.map
  349. ALL-$(CONFIG_NAND_U_BOOT) += $(obj)u-boot-nand.bin
  350. ALL-$(CONFIG_ONENAND_U_BOOT) += $(obj)u-boot-onenand.bin
  351. ALL-$(CONFIG_RAMBOOT_PBL) += $(obj)u-boot.pbl
  352. ALL-$(CONFIG_SPL) += $(obj)spl/u-boot-spl.bin
  353. ALL-$(CONFIG_SPL_FRAMEWORK) += $(obj)u-boot.img
  354. ALL-$(CONFIG_TPL) += $(obj)tpl/u-boot-tpl.bin
  355. ALL-$(CONFIG_OF_SEPARATE) += $(obj)u-boot.dtb $(obj)u-boot-dtb.bin
  356. ifneq ($(CONFIG_SPL_TARGET),)
  357. ALL-$(CONFIG_SPL) += $(obj)$(subst ",,$(CONFIG_SPL_TARGET))
  358. endif
  359. # enable combined SPL/u-boot/dtb rules for tegra
  360. ifneq ($(CONFIG_TEGRA),)
  361. ifeq ($(CONFIG_OF_SEPARATE),y)
  362. ALL-y += $(obj)u-boot-dtb-tegra.bin
  363. else
  364. ALL-y += $(obj)u-boot-nodtb-tegra.bin
  365. endif
  366. endif
  367. all: $(ALL-y) $(SUBDIR_EXAMPLES)
  368. $(obj)u-boot.dtb: checkdtc $(obj)u-boot
  369. $(MAKE) -C dts binary
  370. mv $(obj)dts/dt.dtb $@
  371. $(obj)u-boot-dtb.bin: $(obj)u-boot.bin $(obj)u-boot.dtb
  372. cat $^ >$@
  373. $(obj)u-boot.hex: $(obj)u-boot
  374. $(OBJCOPY) ${OBJCFLAGS} -O ihex $< $@
  375. $(obj)u-boot.srec: $(obj)u-boot
  376. $(OBJCOPY) -O srec $< $@
  377. $(obj)u-boot.bin: $(obj)u-boot
  378. $(OBJCOPY) ${OBJCFLAGS} -O binary $< $@
  379. $(BOARD_SIZE_CHECK)
  380. $(obj)u-boot.ldr: $(obj)u-boot
  381. $(CREATE_LDR_ENV)
  382. $(LDR) -T $(CONFIG_BFIN_CPU) -c $@ $< $(LDR_FLAGS)
  383. $(BOARD_SIZE_CHECK)
  384. $(obj)u-boot.ldr.hex: $(obj)u-boot.ldr
  385. $(OBJCOPY) ${OBJCFLAGS} -O ihex $< $@ -I binary
  386. $(obj)u-boot.ldr.srec: $(obj)u-boot.ldr
  387. $(OBJCOPY) ${OBJCFLAGS} -O srec $< $@ -I binary
  388. #
  389. # U-Boot entry point, needed for booting of full-blown U-Boot
  390. # from the SPL U-Boot version.
  391. #
  392. ifndef CONFIG_SYS_UBOOT_START
  393. CONFIG_SYS_UBOOT_START := 0
  394. endif
  395. $(obj)u-boot.img: $(obj)u-boot.bin
  396. $(obj)tools/mkimage -A $(ARCH) -T firmware -C none \
  397. -O u-boot -a $(CONFIG_SYS_TEXT_BASE) \
  398. -e $(CONFIG_SYS_UBOOT_START) \
  399. -n $(shell sed -n -e 's/.*U_BOOT_VERSION//p' $(VERSION_FILE) | \
  400. sed -e 's/"[ ]*$$/ for $(BOARD) board"/') \
  401. -d $< $@
  402. $(obj)u-boot.imx: $(obj)u-boot.bin depend
  403. $(MAKE) -C $(SRCTREE)/arch/arm/imx-common $(OBJTREE)/u-boot.imx
  404. $(obj)u-boot.kwb: $(obj)u-boot.bin
  405. $(obj)tools/mkimage -n $(CONFIG_SYS_KWD_CONFIG) -T kwbimage \
  406. -a $(CONFIG_SYS_TEXT_BASE) -e $(CONFIG_SYS_TEXT_BASE) -d $< $@
  407. $(obj)u-boot.pbl: $(obj)u-boot.bin
  408. $(obj)tools/mkimage -n $(CONFIG_PBLRCW_CONFIG) \
  409. -R $(CONFIG_PBLPBI_CONFIG) -T pblimage \
  410. -d $< $@
  411. $(obj)u-boot.sha1: $(obj)u-boot.bin
  412. $(obj)tools/ubsha1 $(obj)u-boot.bin
  413. $(obj)u-boot.dis: $(obj)u-boot
  414. $(OBJDUMP) -d $< > $@
  415. # $@ is output, $(1) and $(2) are inputs, $(3) is padded intermediate,
  416. # $(4) is pad-to
  417. SPL_PAD_APPEND = \
  418. $(OBJCOPY) ${OBJCFLAGS} --pad-to=$(4) -I binary -O binary \
  419. $(1) $(obj)$(3); \
  420. cat $(obj)$(3) $(2) > $@; \
  421. rm $(obj)$(3)
  422. ifdef CONFIG_TPL
  423. SPL_PAYLOAD := $(obj)tpl/u-boot-with-tpl.bin
  424. else
  425. SPL_PAYLOAD := $(obj)u-boot.bin
  426. endif
  427. $(obj)u-boot-with-spl.bin: $(obj)spl/u-boot-spl.bin $(SPL_PAYLOAD)
  428. $(call SPL_PAD_APPEND,$<,$(SPL_PAYLOAD),spl/u-boot-spl-pad.bin,$(CONFIG_SPL_PAD_TO))
  429. $(obj)tpl/u-boot-with-tpl.bin: $(obj)tpl/u-boot-tpl.bin $(obj)u-boot.bin
  430. $(call SPL_PAD_APPEND,$<,$(obj)u-boot.bin,tpl/u-boot-tpl-pad.bin,$(CONFIG_TPL_PAD_TO))
  431. $(obj)u-boot-with-spl.imx: $(obj)spl/u-boot-spl.bin $(obj)u-boot.bin
  432. $(MAKE) -C $(SRCTREE)/arch/arm/imx-common \
  433. $(OBJTREE)/u-boot-with-spl.imx
  434. $(obj)u-boot-with-nand-spl.imx: $(obj)spl/u-boot-spl.bin $(obj)u-boot.bin
  435. $(MAKE) -C $(SRCTREE)/arch/arm/imx-common \
  436. $(OBJTREE)/u-boot-with-nand-spl.imx
  437. $(obj)u-boot.ubl: $(obj)u-boot-with-spl.bin
  438. $(obj)tools/mkimage -n $(UBL_CONFIG) -T ublimage \
  439. -e $(CONFIG_SYS_TEXT_BASE) -d $< $(obj)u-boot.ubl
  440. $(obj)u-boot.ais: $(obj)spl/u-boot-spl.bin $(obj)u-boot.img
  441. $(obj)tools/mkimage -s -n $(if $(CONFIG_AIS_CONFIG_FILE),$(CONFIG_AIS_CONFIG_FILE),"/dev/null") \
  442. -T aisimage \
  443. -e $(CONFIG_SPL_TEXT_BASE) \
  444. -d $(obj)spl/u-boot-spl.bin \
  445. $(obj)spl/u-boot-spl.ais
  446. $(OBJCOPY) ${OBJCFLAGS} -I binary \
  447. --pad-to=$(CONFIG_SPL_MAX_SIZE) -O binary \
  448. $(obj)spl/u-boot-spl.ais $(obj)spl/u-boot-spl-pad.ais
  449. cat $(obj)spl/u-boot-spl-pad.ais $(obj)u-boot.img > \
  450. $(obj)u-boot.ais
  451. $(obj)u-boot.sb: $(obj)u-boot.bin $(obj)spl/u-boot-spl.bin
  452. $(MAKE) -C $(SRCTREE)/$(CPUDIR)/$(SOC)/ $(OBJTREE)/u-boot.sb
  453. # On x600 (SPEAr600) U-Boot is appended to U-Boot SPL.
  454. # Both images are created using mkimage (crc etc), so that the ROM
  455. # bootloader can check its integrity. Padding needs to be done to the
  456. # SPL image (with mkimage header) and not the binary. Otherwise the resulting image
  457. # which is loaded/copied by the ROM bootloader to SRAM doesn't fit.
  458. # The resulting image containing both U-Boot images is called u-boot.spr
  459. $(obj)u-boot.spr: $(obj)u-boot.img $(obj)spl/u-boot-spl.bin
  460. $(obj)tools/mkimage -A $(ARCH) -T firmware -C none \
  461. -a $(CONFIG_SPL_TEXT_BASE) -e $(CONFIG_SPL_TEXT_BASE) -n XLOADER \
  462. -d $(obj)spl/u-boot-spl.bin $(obj)spl/u-boot-spl.img
  463. tr "\000" "\377" < /dev/zero | dd ibs=1 count=$(CONFIG_SPL_PAD_TO) \
  464. of=$(obj)spl/u-boot-spl-pad.img 2>/dev/null
  465. dd if=$(obj)spl/u-boot-spl.img of=$(obj)spl/u-boot-spl-pad.img \
  466. conv=notrunc 2>/dev/null
  467. cat $(obj)spl/u-boot-spl-pad.img $(obj)u-boot.img > $@
  468. ifneq ($(CONFIG_TEGRA),)
  469. $(obj)u-boot-nodtb-tegra.bin: $(obj)spl/u-boot-spl.bin $(obj)u-boot.bin
  470. $(OBJCOPY) ${OBJCFLAGS} --pad-to=$(CONFIG_SYS_TEXT_BASE) -O binary $(obj)spl/u-boot-spl $(obj)spl/u-boot-spl-pad.bin
  471. cat $(obj)spl/u-boot-spl-pad.bin $(obj)u-boot.bin > $@
  472. rm $(obj)spl/u-boot-spl-pad.bin
  473. ifeq ($(CONFIG_OF_SEPARATE),y)
  474. $(obj)u-boot-dtb-tegra.bin: $(obj)u-boot-nodtb-tegra.bin $(obj)u-boot.dtb
  475. cat $(obj)u-boot-nodtb-tegra.bin $(obj)u-boot.dtb > $@
  476. endif
  477. endif
  478. $(obj)u-boot-img.bin: $(obj)spl/u-boot-spl.bin $(obj)u-boot.img
  479. cat $(obj)spl/u-boot-spl.bin $(obj)u-boot.img > $@
  480. # PPC4xx needs the SPL at the end of the image, since the reset vector
  481. # is located at 0xfffffffc. So we can't use the "u-boot-img.bin" target
  482. # and need to introduce a new build target with the full blown U-Boot
  483. # at the start padded up to the start of the SPL image. And then concat
  484. # the SPL image to the end.
  485. $(obj)u-boot-img-spl-at-end.bin: $(obj)spl/u-boot-spl.bin $(obj)u-boot.img
  486. tr "\000" "\377" < /dev/zero | dd ibs=1 count=$(CONFIG_UBOOT_PAD_TO) \
  487. of=$(obj)u-boot-pad.img 2>/dev/null
  488. dd if=$(obj)u-boot.img of=$(obj)u-boot-pad.img \
  489. conv=notrunc 2>/dev/null
  490. cat $(obj)u-boot-pad.img $(obj)spl/u-boot-spl.bin > $@
  491. ifeq ($(CONFIG_SANDBOX),y)
  492. GEN_UBOOT = \
  493. cd $(LNDIR) && $(CC) $(SYMS) -T $(obj)u-boot.lds \
  494. -Wl,--start-group $(__LIBS) -Wl,--end-group \
  495. $(PLATFORM_LIBS) -Wl,-Map -Wl,u-boot.map -o u-boot
  496. else
  497. GEN_UBOOT = \
  498. cd $(LNDIR) && $(LD) $(LDFLAGS) $(LDFLAGS_$(@F)) \
  499. $(__OBJS) \
  500. --start-group $(__LIBS) --end-group $(PLATFORM_LIBS) \
  501. -Map u-boot.map -o u-boot
  502. endif
  503. $(obj)u-boot: depend \
  504. $(SUBDIR_TOOLS) $(OBJS) $(LIBBOARD) $(LIBS) $(LDSCRIPT) $(obj)u-boot.lds
  505. $(GEN_UBOOT)
  506. ifeq ($(CONFIG_KALLSYMS),y)
  507. smap=`$(call SYSTEM_MAP,$(obj)u-boot) | \
  508. awk '$$2 ~ /[tTwW]/ {printf $$1 $$3 "\\\\000"}'` ; \
  509. $(CC) $(CFLAGS) -DSYSTEM_MAP="\"$${smap}\"" \
  510. -c common/system_map.c -o $(obj)common/system_map.o
  511. $(GEN_UBOOT) $(obj)common/system_map.o
  512. endif
  513. $(OBJS): depend
  514. $(MAKE) -C $(CPUDIR) $(if $(REMOTE_BUILD),$@,$(notdir $@))
  515. $(LIBS): depend $(SUBDIR_TOOLS)
  516. $(MAKE) -C $(dir $(subst $(obj),,$@))
  517. $(LIBBOARD): depend $(LIBS)
  518. $(MAKE) -C $(dir $(subst $(obj),,$@))
  519. $(SUBDIRS): depend
  520. $(MAKE) -C $@ all
  521. $(SUBDIR_EXAMPLES): $(obj)u-boot
  522. $(LDSCRIPT): depend
  523. $(MAKE) -C $(dir $@) $(notdir $@)
  524. $(obj)u-boot.lds: $(LDSCRIPT)
  525. $(CPP) $(CPPFLAGS) $(LDPPFLAGS) -ansi -D__ASSEMBLY__ -P - <$< >$@
  526. nand_spl: $(TIMESTAMP_FILE) $(VERSION_FILE) depend
  527. $(MAKE) -C nand_spl/board/$(BOARDDIR) all
  528. $(obj)u-boot-nand.bin: nand_spl $(obj)u-boot.bin
  529. cat $(obj)nand_spl/u-boot-spl-16k.bin $(obj)u-boot.bin > $(obj)u-boot-nand.bin
  530. $(obj)spl/u-boot-spl.bin: $(SUBDIR_TOOLS) depend
  531. $(MAKE) -C spl all
  532. $(obj)tpl/u-boot-tpl.bin: $(SUBDIR_TOOLS) depend
  533. $(MAKE) -C spl all CONFIG_TPL_BUILD=y
  534. updater:
  535. $(MAKE) -C tools/updater all
  536. # Explicitly make _depend in subdirs containing multiple targets to prevent
  537. # parallel sub-makes creating .depend files simultaneously.
  538. depend dep: $(TIMESTAMP_FILE) $(VERSION_FILE) \
  539. $(obj)include/spl-autoconf.mk \
  540. $(obj)include/tpl-autoconf.mk \
  541. $(obj)include/autoconf.mk \
  542. $(obj)include/generated/generic-asm-offsets.h \
  543. $(obj)include/generated/asm-offsets.h
  544. for dir in $(SUBDIRS) $(CPUDIR) $(LDSCRIPT_MAKEFILE_DIR) ; do \
  545. $(MAKE) -C $$dir _depend ; done
  546. TAG_SUBDIRS = $(SUBDIRS)
  547. TAG_SUBDIRS += $(dir $(__LIBS))
  548. TAG_SUBDIRS += include
  549. FIND := find
  550. FINDFLAGS := -L
  551. checkstack:
  552. $(CROSS_COMPILE)objdump -d $(obj)u-boot \
  553. `$(FIND) $(obj) -name u-boot-spl -print` | \
  554. perl $(src)tools/checkstack.pl $(ARCH)
  555. tags ctags:
  556. ctags -w -o $(obj)ctags `$(FIND) $(FINDFLAGS) $(TAG_SUBDIRS) \
  557. -name '*.[chS]' -print`
  558. etags:
  559. etags -a -o $(obj)etags `$(FIND) $(FINDFLAGS) $(TAG_SUBDIRS) \
  560. -name '*.[chS]' -print`
  561. cscope:
  562. $(FIND) $(FINDFLAGS) $(TAG_SUBDIRS) -name '*.[chS]' -print > \
  563. cscope.files
  564. cscope -b -q -k
  565. SYSTEM_MAP = \
  566. $(NM) $1 | \
  567. grep -v '\(compiled\)\|\(\.o$$\)\|\( [aUw] \)\|\(\.\.ng$$\)\|\(LASH[RL]DI\)' | \
  568. LC_ALL=C sort
  569. $(obj)System.map: $(obj)u-boot
  570. @$(call SYSTEM_MAP,$<) > $(obj)System.map
  571. checkthumb:
  572. @if test $(call cc-version) -lt 0404; then \
  573. echo -n '*** Your GCC does not produce working '; \
  574. echo 'binaries in THUMB mode.'; \
  575. echo '*** Your board is configured for THUMB mode.'; \
  576. false; \
  577. fi
  578. # GCC 3.x is reported to have problems generating the type of relocation
  579. # that U-Boot wants.
  580. # See http://lists.denx.de/pipermail/u-boot/2012-September/135156.html
  581. checkgcc4:
  582. @if test $(call cc-version) -lt 0400; then \
  583. echo -n '*** Your GCC is too old, please upgrade to GCC 4.x or newer'; \
  584. false; \
  585. fi
  586. checkdtc:
  587. @if test $(call dtc-version) -lt 0104; then \
  588. echo '*** Your dtc is too old, please upgrade to dtc 1.4 or newer'; \
  589. false; \
  590. fi
  591. #
  592. # Auto-generate the autoconf.mk file (which is included by all makefiles)
  593. #
  594. # This target actually generates 2 files; autoconf.mk and autoconf.mk.dep.
  595. # the dep file is only include in this top level makefile to determine when
  596. # to regenerate the autoconf.mk file.
  597. $(obj)include/autoconf.mk.dep: $(obj)include/config.h include/common.h
  598. @$(XECHO) Generating $@ ; \
  599. set -e ; \
  600. : Generate the dependancies ; \
  601. $(CC) -x c -DDO_DEPS_ONLY -M $(CFLAGS) $(CPPFLAGS) \
  602. -MQ $(obj)include/autoconf.mk include/common.h > $@
  603. $(obj)include/autoconf.mk: $(obj)include/config.h
  604. @$(XECHO) Generating $@ ; \
  605. set -e ; \
  606. : Extract the config macros ; \
  607. $(CPP) $(CFLAGS) -DDO_DEPS_ONLY -dM include/common.h | \
  608. sed -n -f tools/scripts/define2mk.sed > $@.tmp && \
  609. mv $@.tmp $@
  610. # Auto-generate the spl-autoconf.mk file (which is included by all makefiles for SPL)
  611. $(obj)include/tpl-autoconf.mk: $(obj)include/config.h
  612. @$(XECHO) Generating $@ ; \
  613. set -e ; \
  614. : Extract the config macros ; \
  615. $(CPP) $(CFLAGS) -DCONFIG_TPL_BUILD -DCONFIG_SPL_BUILD\
  616. -DDO_DEPS_ONLY -dM include/common.h | \
  617. sed -n -f tools/scripts/define2mk.sed > $@.tmp && \
  618. mv $@.tmp $@
  619. $(obj)include/spl-autoconf.mk: $(obj)include/config.h
  620. @$(XECHO) Generating $@ ; \
  621. set -e ; \
  622. : Extract the config macros ; \
  623. $(CPP) $(CFLAGS) -DCONFIG_SPL_BUILD -DDO_DEPS_ONLY -dM include/common.h | \
  624. sed -n -f tools/scripts/define2mk.sed > $@.tmp && \
  625. mv $@.tmp $@
  626. $(obj)include/generated/generic-asm-offsets.h: $(obj)include/autoconf.mk.dep \
  627. $(obj)include/spl-autoconf.mk \
  628. $(obj)include/tpl-autoconf.mk \
  629. $(obj)lib/asm-offsets.s
  630. @$(XECHO) Generating $@
  631. tools/scripts/make-asm-offsets $(obj)lib/asm-offsets.s $@
  632. $(obj)lib/asm-offsets.s: $(obj)include/autoconf.mk.dep \
  633. $(obj)include/spl-autoconf.mk \
  634. $(obj)include/tpl-autoconf.mk \
  635. $(src)lib/asm-offsets.c
  636. @mkdir -p $(obj)lib
  637. $(CC) -DDO_DEPS_ONLY \
  638. $(CFLAGS) $(CFLAGS_$(BCURDIR)/$(@F)) $(CFLAGS_$(BCURDIR)) \
  639. -o $@ $(src)lib/asm-offsets.c -c -S
  640. $(obj)include/generated/asm-offsets.h: $(obj)include/autoconf.mk.dep \
  641. $(obj)include/spl-autoconf.mk \
  642. $(obj)include/tpl-autoconf.mk \
  643. $(obj)$(CPUDIR)/$(SOC)/asm-offsets.s
  644. @$(XECHO) Generating $@
  645. tools/scripts/make-asm-offsets $(obj)$(CPUDIR)/$(SOC)/asm-offsets.s $@
  646. $(obj)$(CPUDIR)/$(SOC)/asm-offsets.s: $(obj)include/autoconf.mk.dep \
  647. $(obj)include/spl-autoconf.mk \
  648. $(obj)include/tpl-autoconf.mk
  649. @mkdir -p $(obj)$(CPUDIR)/$(SOC)
  650. if [ -f $(src)$(CPUDIR)/$(SOC)/asm-offsets.c ];then \
  651. $(CC) -DDO_DEPS_ONLY \
  652. $(CFLAGS) $(CFLAGS_$(BCURDIR)/$(@F)) $(CFLAGS_$(BCURDIR)) \
  653. -o $@ $(src)$(CPUDIR)/$(SOC)/asm-offsets.c -c -S; \
  654. else \
  655. touch $@; \
  656. fi
  657. #########################################################################
  658. else # !config.mk
  659. all $(obj)u-boot.hex $(obj)u-boot.srec $(obj)u-boot.bin \
  660. $(obj)u-boot.img $(obj)u-boot.dis $(obj)u-boot \
  661. $(filter-out tools,$(SUBDIRS)) \
  662. updater depend dep tags ctags etags cscope $(obj)System.map:
  663. @echo "System not configured - see README" >&2
  664. @ exit 1
  665. tools: $(VERSION_FILE) $(TIMESTAMP_FILE)
  666. $(MAKE) -C $@ all
  667. endif # config.mk
  668. # ARM relocations should all be R_ARM_RELATIVE.
  669. checkarmreloc: $(obj)u-boot
  670. @if test "R_ARM_RELATIVE" != \
  671. "`$(CROSS_COMPILE)readelf -r $< | cut -d ' ' -f 4 | grep R_ARM | sort -u`"; \
  672. then echo "$< contains relocations other than \
  673. R_ARM_RELATIVE"; false; fi
  674. $(VERSION_FILE):
  675. @mkdir -p $(dir $(VERSION_FILE))
  676. @( localvers='$(shell $(TOPDIR)/tools/setlocalversion $(TOPDIR))' ; \
  677. printf '#define PLAIN_VERSION "%s%s"\n' \
  678. "$(U_BOOT_VERSION)" "$${localvers}" ; \
  679. printf '#define U_BOOT_VERSION "U-Boot %s%s"\n' \
  680. "$(U_BOOT_VERSION)" "$${localvers}" ; \
  681. ) > $@.tmp
  682. @( printf '#define CC_VERSION_STRING "%s"\n' \
  683. '$(shell $(CC) --version | head -n 1)' )>> $@.tmp
  684. @( printf '#define LD_VERSION_STRING "%s"\n' \
  685. '$(shell $(LD) -v | head -n 1)' )>> $@.tmp
  686. @cmp -s $@ $@.tmp && rm -f $@.tmp || mv -f $@.tmp $@
  687. $(TIMESTAMP_FILE):
  688. @mkdir -p $(dir $(TIMESTAMP_FILE))
  689. @LC_ALL=C date +'#define U_BOOT_DATE "%b %d %C%y"' > $@.tmp
  690. @LC_ALL=C date +'#define U_BOOT_TIME "%T"' >> $@.tmp
  691. @cmp -s $@ $@.tmp && rm -f $@.tmp || mv -f $@.tmp $@
  692. easylogo env gdb:
  693. $(MAKE) -C tools/$@ all MTD_VERSION=${MTD_VERSION}
  694. gdbtools: gdb
  695. xmldocs pdfdocs psdocs htmldocs mandocs: tools/kernel-doc/docproc
  696. $(MAKE) U_BOOT_VERSION=$(U_BOOT_VERSION) -C doc/DocBook/ $@
  697. tools-all: easylogo env gdb $(VERSION_FILE) $(TIMESTAMP_FILE)
  698. $(MAKE) -C tools HOST_TOOLS_ALL=y
  699. .PHONY : CHANGELOG
  700. CHANGELOG:
  701. git log --no-merges U-Boot-1_1_5.. | \
  702. unexpand -a | sed -e 's/\s\s*$$//' > $@
  703. include/license.h: tools/bin2header COPYING
  704. cat COPYING | gzip -9 -c | ./tools/bin2header license_gzip > include/license.h
  705. #########################################################################
  706. unconfig:
  707. @rm -f $(obj)include/config.h $(obj)include/config.mk \
  708. $(obj)board/*/config.tmp $(obj)board/*/*/config.tmp \
  709. $(obj)include/autoconf.mk $(obj)include/autoconf.mk.dep \
  710. $(obj)include/spl-autoconf.mk \
  711. $(obj)include/tpl-autoconf.mk
  712. %_config:: unconfig
  713. @$(MKCONFIG) -A $(@:_config=)
  714. sinclude $(obj).boards.depend
  715. $(obj).boards.depend: boards.cfg
  716. @awk '(NF && $$1 !~ /^#/) { print $$7 ": " $$7 "_config; $$(MAKE)" }' $< > $@
  717. #
  718. # Functions to generate common board directory names
  719. #
  720. lcname = $(shell echo $(1) | sed -e 's/\(.*\)_config/\L\1/')
  721. ucname = $(shell echo $(1) | sed -e 's/\(.*\)_config/\U\1/')
  722. #########################################################################
  723. #########################################################################
  724. clean:
  725. @rm -f $(obj)examples/standalone/82559_eeprom \
  726. $(obj)examples/standalone/atmel_df_pow2 \
  727. $(obj)examples/standalone/eepro100_eeprom \
  728. $(obj)examples/standalone/hello_world \
  729. $(obj)examples/standalone/interrupt \
  730. $(obj)examples/standalone/mem_to_mem_idma2intr \
  731. $(obj)examples/standalone/sched \
  732. $(obj)examples/standalone/smc911{11,x}_eeprom \
  733. $(obj)examples/standalone/test_burst \
  734. $(obj)examples/standalone/timer
  735. @rm -f $(obj)examples/api/demo{,.bin}
  736. @rm -f $(obj)tools/bmp_logo $(obj)tools/easylogo/easylogo \
  737. $(obj)tools/env/{fw_printenv,fw_setenv} \
  738. $(obj)tools/envcrc \
  739. $(obj)tools/gdb/{astest,gdbcont,gdbsend} \
  740. $(obj)tools/gen_eth_addr $(obj)tools/img2srec \
  741. $(obj)tools/mk{env,}image $(obj)tools/mpc86x_clk \
  742. $(obj)tools/mk{$(BOARD),}spl \
  743. $(obj)tools/mxsboot \
  744. $(obj)tools/ncb $(obj)tools/ubsha1 \
  745. $(obj)tools/kernel-doc/docproc \
  746. $(obj)tools/proftool
  747. @rm -f $(obj)board/cray/L1/{bootscript.c,bootscript.image} \
  748. $(obj)board/matrix_vision/*/bootscript.img \
  749. $(obj)board/voiceblue/eeprom \
  750. $(obj)u-boot.lds \
  751. $(obj)arch/blackfin/cpu/bootrom-asm-offsets.[chs] \
  752. $(obj)arch/blackfin/cpu/init.{lds,elf}
  753. @rm -f $(obj)include/bmp_logo.h
  754. @rm -f $(obj)include/bmp_logo_data.h
  755. @rm -f $(obj)lib/asm-offsets.s
  756. @rm -f $(obj)include/generated/asm-offsets.h
  757. @rm -f $(obj)$(CPUDIR)/$(SOC)/asm-offsets.s
  758. @rm -f $(TIMESTAMP_FILE) $(VERSION_FILE)
  759. @$(MAKE) -s -C doc/DocBook/ cleandocs
  760. @find $(OBJTREE) -type f \
  761. \( -name 'core' -o -name '*.bak' -o -name '*~' -o -name '*.su' \
  762. -o -name '*.o' -o -name '*.a' -o -name '*.exe' \
  763. -o -name '*.cfgtmp' \) -print \
  764. | xargs rm -f
  765. # Removes everything not needed for testing u-boot
  766. tidy: clean
  767. @find $(OBJTREE) -type f \( -name '*.depend*' \) -print | xargs rm -f
  768. clobber: tidy
  769. @find $(OBJTREE) -type f \( -name '*.srec' \
  770. -o -name '*.bin' -o -name u-boot.img \) \
  771. -print0 | xargs -0 rm -f
  772. @rm -f $(OBJS) $(obj)*.bak $(obj)ctags $(obj)etags $(obj)TAGS \
  773. $(obj)cscope.* $(obj)*.*~
  774. @rm -f $(obj)u-boot $(obj)u-boot.map $(obj)u-boot.hex $(ALL-y)
  775. @rm -f $(obj)u-boot.kwb
  776. @rm -f $(obj)u-boot.pbl
  777. @rm -f $(obj)u-boot.imx
  778. @rm -f $(obj)u-boot-with-spl.imx
  779. @rm -f $(obj)u-boot-with-nand-spl.imx
  780. @rm -f $(obj)u-boot.ubl
  781. @rm -f $(obj)u-boot.ais
  782. @rm -f $(obj)u-boot.dtb
  783. @rm -f $(obj)u-boot.sb
  784. @rm -f $(obj)u-boot.bd
  785. @rm -f $(obj)u-boot.spr
  786. @rm -f $(obj)nand_spl/{u-boot.{lds,lst},System.map}
  787. @rm -f $(obj)nand_spl/{u-boot-nand_spl.lds,u-boot-spl,u-boot-spl.map}
  788. @rm -f $(obj)spl/{u-boot-spl,u-boot-spl.bin,u-boot-spl.map}
  789. @rm -f $(obj)spl/u-boot-spl.lds
  790. @rm -f $(obj)tpl/{u-boot-tpl,u-boot-tpl.bin,u-boot-tpl.map}
  791. @rm -f $(obj)tpl/u-boot-spl.lds
  792. @rm -f $(obj)MLO MLO.byteswap
  793. @rm -f $(obj)SPL
  794. @rm -f $(obj)tools/xway-swap-bytes
  795. @rm -f $(obj)arch/powerpc/cpu/mpc824x/bedbug_603e.c
  796. @rm -f $(obj)arch/powerpc/cpu/mpc83xx/ddr-gen?.c
  797. @rm -fr $(obj)include/asm/proc $(obj)include/asm/arch $(obj)include/asm
  798. @rm -fr $(obj)include/generated
  799. @[ ! -d $(obj)nand_spl ] || find $(obj)nand_spl -name "*" -type l -print | xargs rm -f
  800. @rm -f $(obj)dts/*.tmp
  801. @rm -f $(obj)spl/u-boot-spl{,-pad}.ais
  802. mrproper \
  803. distclean: clobber unconfig
  804. ifneq ($(OBJTREE),$(SRCTREE))
  805. rm -rf $(obj)*
  806. endif
  807. backup:
  808. F=`basename $(TOPDIR)` ; cd .. ; \
  809. gtar --force-local -zcvf `LC_ALL=C date "+$$F-%Y-%m-%d-%T.tar.gz"` $$F
  810. #########################################################################