Makefile (d4263348f796f29546f90802177865dd4379dd0a) | Makefile (f4d4ffc03efc864645b990e1d579bbe1b8e358a4) |
---|---|
1# 2# arch/arm/Makefile 3# 4# This file is included by the global makefile so that you can add your own 5# architecture-specific flags and dependencies. 6# 7# This file is subject to the terms and conditions of the GNU General Public 8# License. See the file "COPYING" in the main directory of this archive --- 296 unchanged lines hidden (view full) --- 305 $(Q)$(MAKE) $(build)=$(boot) MACHINE=$(MACHINE) $(boot)/$@ 306 307$(INSTALL_TARGETS): 308 $(Q)$(MAKE) $(build)=$(boot) MACHINE=$(MACHINE) $@ 309 310%.dtb: | scripts 311 $(Q)$(MAKE) $(build)=$(boot)/dts MACHINE=$(MACHINE) $(boot)/dts/$@ 312 | 1# 2# arch/arm/Makefile 3# 4# This file is included by the global makefile so that you can add your own 5# architecture-specific flags and dependencies. 6# 7# This file is subject to the terms and conditions of the GNU General Public 8# License. See the file "COPYING" in the main directory of this archive --- 296 unchanged lines hidden (view full) --- 305 $(Q)$(MAKE) $(build)=$(boot) MACHINE=$(MACHINE) $(boot)/$@ 306 307$(INSTALL_TARGETS): 308 $(Q)$(MAKE) $(build)=$(boot) MACHINE=$(MACHINE) $@ 309 310%.dtb: | scripts 311 $(Q)$(MAKE) $(build)=$(boot)/dts MACHINE=$(MACHINE) $(boot)/dts/$@ 312 |
313PHONY += dtbs 314dtbs: scripts 315 $(Q)$(MAKE) $(build)=$(boot)/dts MACHINE=$(MACHINE) dtbs | 313PHONY += dtbs dtbs_install 314dtbs dtbs_install: prepare scripts 315 $(Q)$(MAKE) $(build)=$(boot)/dts MACHINE=$(MACHINE) $@ |
316 317# We use MRPROPER_FILES and CLEAN_FILES now 318archclean: 319 $(Q)$(MAKE) $(clean)=$(boot) 320 321# My testing targets (bypasses dependencies) 322bp:; $(Q)$(MAKE) $(build)=$(boot) MACHINE=$(MACHINE) $(boot)/bootpImage 323i zi:; $(Q)$(MAKE) $(build)=$(boot) MACHINE=$(MACHINE) $@ 324 325 326define archhelp 327 echo '* zImage - Compressed kernel image (arch/$(ARCH)/boot/zImage)' 328 echo ' Image - Uncompressed kernel image (arch/$(ARCH)/boot/Image)' 329 echo '* xipImage - XIP kernel image, if configured (arch/$(ARCH)/boot/xipImage)' 330 echo ' uImage - U-Boot wrapped zImage' 331 echo ' bootpImage - Combined zImage and initial RAM disk' 332 echo ' (supply initrd image via make variable INITRD=<path>)' 333 echo '* dtbs - Build device tree blobs for enabled boards' | 316 317# We use MRPROPER_FILES and CLEAN_FILES now 318archclean: 319 $(Q)$(MAKE) $(clean)=$(boot) 320 321# My testing targets (bypasses dependencies) 322bp:; $(Q)$(MAKE) $(build)=$(boot) MACHINE=$(MACHINE) $(boot)/bootpImage 323i zi:; $(Q)$(MAKE) $(build)=$(boot) MACHINE=$(MACHINE) $@ 324 325 326define archhelp 327 echo '* zImage - Compressed kernel image (arch/$(ARCH)/boot/zImage)' 328 echo ' Image - Uncompressed kernel image (arch/$(ARCH)/boot/Image)' 329 echo '* xipImage - XIP kernel image, if configured (arch/$(ARCH)/boot/xipImage)' 330 echo ' uImage - U-Boot wrapped zImage' 331 echo ' bootpImage - Combined zImage and initial RAM disk' 332 echo ' (supply initrd image via make variable INITRD=<path>)' 333 echo '* dtbs - Build device tree blobs for enabled boards' |
334 echo ' dtbs_install - Install dtbs to $(INSTALL_DTBS_PATH)' |
|
334 echo ' install - Install uncompressed kernel' 335 echo ' zinstall - Install compressed kernel' 336 echo ' uinstall - Install U-Boot wrapped compressed kernel' 337 echo ' Install using (your) ~/bin/$(INSTALLKERNEL) or' 338 echo ' (distribution) /sbin/$(INSTALLKERNEL) or' 339 echo ' install to $$(INSTALL_PATH) and run lilo' 340endef | 335 echo ' install - Install uncompressed kernel' 336 echo ' zinstall - Install compressed kernel' 337 echo ' uinstall - Install U-Boot wrapped compressed kernel' 338 echo ' Install using (your) ~/bin/$(INSTALLKERNEL) or' 339 echo ' (distribution) /sbin/$(INSTALLKERNEL) or' 340 echo ' install to $$(INSTALL_PATH) and run lilo' 341endef |