Makefile (bafcc61d998c1ca18f556d92a0e95335ac68c7da) | Makefile (2e14f94cf4bc2f15ca5362e81ca3a987c79e3062) |
---|---|
1# SPDX-License-Identifier: GPL-2.0 2KBUILD_DEFCONFIG := mmu_defconfig 3 4ifeq ($(CONFIG_MMU),y) 5UTS_SYSNAME = -DUTS_SYSNAME=\"Linux\" 6else 7UTS_SYSNAME = -DUTS_SYSNAME=\"uClinux\" 8endif --- 70 unchanged lines hidden (view full) --- 79archclean: 80 $(Q)$(MAKE) $(clean)=$(boot) 81 82archheaders: 83 $(Q)$(MAKE) $(build)=arch/microblaze/kernel/syscalls all 84 85linux.bin linux.bin.gz linux.bin.ub: vmlinux 86 $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@ | 1# SPDX-License-Identifier: GPL-2.0 2KBUILD_DEFCONFIG := mmu_defconfig 3 4ifeq ($(CONFIG_MMU),y) 5UTS_SYSNAME = -DUTS_SYSNAME=\"Linux\" 6else 7UTS_SYSNAME = -DUTS_SYSNAME=\"uClinux\" 8endif --- 70 unchanged lines hidden (view full) --- 79archclean: 80 $(Q)$(MAKE) $(clean)=$(boot) 81 82archheaders: 83 $(Q)$(MAKE) $(build)=arch/microblaze/kernel/syscalls all 84 85linux.bin linux.bin.gz linux.bin.ub: vmlinux 86 $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@ |
87 @echo 'Kernel: $(boot)/$@ is ready' ' (#'`cat .version`')' |
|
87 88simpleImage.%: vmlinux 89 $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@ | 88 89simpleImage.%: vmlinux 90 $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@ |
91 @echo 'Kernel: $(boot)/$@ is ready' ' (#'`cat .version`')' |
|
90 91define archhelp 92 echo '* linux.bin - Create raw binary' 93 echo ' linux.bin.gz - Create compressed raw binary' 94 echo ' linux.bin.ub - Create U-Boot wrapped raw binary' 95 echo ' simpleImage.<dt> - Create the following images with <dt>.dtb linked in' 96 echo ' simpleImage.<dt> : raw image' 97 echo ' simpleImage.<dt>.ub : raw image with U-Boot header' 98 echo ' simpleImage.<dt>.unstrip: ELF (identical to vmlinux)' 99 echo ' simpleImage.<dt>.strip : stripped ELF' 100 echo ' Targets with <dt> embed a device tree blob inside the image' 101 echo ' These targets support board with firmware that does not' 102 echo ' support passing a device tree directly. Replace <dt> with the' 103 echo ' name of a dts file from the arch/microblaze/boot/dts/ directory' 104 echo ' (minus the .dts extension).' 105endef 106 107MRPROPER_FILES += $(boot)/simpleImage.* | 92 93define archhelp 94 echo '* linux.bin - Create raw binary' 95 echo ' linux.bin.gz - Create compressed raw binary' 96 echo ' linux.bin.ub - Create U-Boot wrapped raw binary' 97 echo ' simpleImage.<dt> - Create the following images with <dt>.dtb linked in' 98 echo ' simpleImage.<dt> : raw image' 99 echo ' simpleImage.<dt>.ub : raw image with U-Boot header' 100 echo ' simpleImage.<dt>.unstrip: ELF (identical to vmlinux)' 101 echo ' simpleImage.<dt>.strip : stripped ELF' 102 echo ' Targets with <dt> embed a device tree blob inside the image' 103 echo ' These targets support board with firmware that does not' 104 echo ' support passing a device tree directly. Replace <dt> with the' 105 echo ' name of a dts file from the arch/microblaze/boot/dts/ directory' 106 echo ' (minus the .dts extension).' 107endef 108 109MRPROPER_FILES += $(boot)/simpleImage.* |