| .. | .. |
|---|
| 65 | 65 | # Are we making a simpleImage.<boardname> target? If so, crack out the boardname |
|---|
| 66 | 66 | DTB:=$(subst simpleImage.,,$(filter simpleImage.%, $(MAKECMDGOALS))) |
|---|
| 67 | 67 | |
|---|
| 68 | | -ifneq ($(DTB),) |
|---|
| 69 | | - core-y += $(boot)/dts/ |
|---|
| 70 | | -endif |
|---|
| 68 | +core-y += $(boot)/dts/ |
|---|
| 71 | 69 | |
|---|
| 72 | 70 | # defines filename extension depending memory management type |
|---|
| 73 | 71 | ifeq ($(CONFIG_MMU),) |
|---|
| .. | .. |
|---|
| 81 | 79 | archclean: |
|---|
| 82 | 80 | $(Q)$(MAKE) $(clean)=$(boot) |
|---|
| 83 | 81 | |
|---|
| 84 | | -linux.bin linux.bin.gz linux.bin.ub: vmlinux |
|---|
| 82 | +archheaders: |
|---|
| 83 | + $(Q)$(MAKE) $(build)=arch/microblaze/kernel/syscalls all |
|---|
| 84 | + |
|---|
| 85 | +PHONY += linux.bin linux.bin.gz linux.bin.ub |
|---|
| 86 | +linux.bin.ub linux.bin.gz: linux.bin |
|---|
| 87 | +linux.bin: vmlinux |
|---|
| 88 | +linux.bin linux.bin.gz linux.bin.ub: |
|---|
| 85 | 89 | $(Q)$(MAKE) $(build)=$(boot) $(boot)/$@ |
|---|
| 86 | 90 | @echo 'Kernel: $(boot)/$@ is ready' ' (#'`cat .version`')' |
|---|
| 87 | 91 | |
|---|
| 88 | | -simpleImage.%: vmlinux |
|---|
| 92 | +PHONY += simpleImage.$(DTB) |
|---|
| 93 | +simpleImage.$(DTB): vmlinux |
|---|
| 89 | 94 | $(Q)$(MAKE) $(build)=$(boot) $(addprefix $(boot)/$@., ub unstrip strip) |
|---|
| 90 | 95 | @echo 'Kernel: $(boot)/$@ is ready' ' (#'`cat .version`')' |
|---|
| 91 | 96 | |
|---|