Makefile (4722a3e6b716d9d4594c3cf3856b03bbd24a59a8) Makefile (3dda563b8349ccc27547883e6cf2be4391d19cb1)
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

--- 68 unchanged lines hidden (view full) ---

77all: linux.bin
78
79archclean:
80 $(Q)$(MAKE) $(clean)=$(boot)
81
82archheaders:
83 $(Q)$(MAKE) $(build)=arch/microblaze/kernel/syscalls all
84
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

--- 68 unchanged lines hidden (view full) ---

77all: linux.bin
78
79archclean:
80 $(Q)$(MAKE) $(clean)=$(boot)
81
82archheaders:
83 $(Q)$(MAKE) $(build)=arch/microblaze/kernel/syscalls all
84
85PHONY += linux.bin linux.bin.gz linux.bin.ub
85linux.bin linux.bin.gz linux.bin.ub: vmlinux
86 $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@
87 @echo 'Kernel: $(boot)/$@ is ready' ' (#'`cat .version`')'
88
86linux.bin linux.bin.gz linux.bin.ub: vmlinux
87 $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@
88 @echo 'Kernel: $(boot)/$@ is ready' ' (#'`cat .version`')'
89
89simpleImage.%: vmlinux
90PHONY += simpleImage.$(DTB)
91simpleImage.$(DTB): vmlinux
90 $(Q)$(MAKE) $(build)=$(boot) $(addprefix $(boot)/$@., ub unstrip strip)
91 @echo 'Kernel: $(boot)/$@ is ready' ' (#'`cat .version`')'
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'

--- 12 unchanged lines hidden ---
92 $(Q)$(MAKE) $(build)=$(boot) $(addprefix $(boot)/$@., ub unstrip strip)
93 @echo 'Kernel: $(boot)/$@ is ready' ' (#'`cat .version`')'
94
95define archhelp
96 echo '* linux.bin - Create raw binary'
97 echo ' linux.bin.gz - Create compressed raw binary'
98 echo ' linux.bin.ub - Create U-Boot wrapped raw binary'
99 echo ' simpleImage.<dt> - Create the following images with <dt>.dtb linked in'

--- 12 unchanged lines hidden ---