.. | .. |
---|
80 | 80 | head-y := arch/xtensa/kernel/head.o |
---|
81 | 81 | core-y += arch/xtensa/kernel/ arch/xtensa/mm/ |
---|
82 | 82 | core-y += $(buildvar) $(buildplf) |
---|
| 83 | +core-y += arch/xtensa/boot/dts/ |
---|
83 | 84 | |
---|
84 | 85 | libs-y += arch/xtensa/lib/ $(LIBGCC) |
---|
85 | 86 | drivers-$(CONFIG_OPROFILE) += arch/xtensa/oprofile/ |
---|
86 | 87 | |
---|
87 | | -ifneq ($(CONFIG_BUILTIN_DTB),"") |
---|
88 | | -core-$(CONFIG_OF) += arch/xtensa/boot/dts/ |
---|
89 | | -endif |
---|
90 | | - |
---|
91 | 88 | boot := arch/xtensa/boot |
---|
92 | 89 | |
---|
93 | | -all Image zImage uImage: vmlinux |
---|
| 90 | +all Image zImage uImage xipImage: vmlinux |
---|
94 | 91 | $(Q)$(MAKE) $(build)=$(boot) $@ |
---|
95 | 92 | |
---|
96 | | -%.dtb: |
---|
97 | | - $(Q)$(MAKE) $(build)=$(boot)/dts $(boot)/dts/$@ |
---|
98 | | - |
---|
99 | | -dtbs: scripts |
---|
100 | | - $(Q)$(MAKE) $(build)=$(boot)/dts |
---|
| 93 | +archheaders: |
---|
| 94 | + $(Q)$(MAKE) $(build)=arch/xtensa/kernel/syscalls all |
---|
101 | 95 | |
---|
102 | 96 | define archhelp |
---|
103 | 97 | @echo '* Image - Kernel ELF image with reset vector' |
---|
104 | 98 | @echo '* zImage - Compressed kernel image (arch/xtensa/boot/images/zImage.*)' |
---|
105 | 99 | @echo '* uImage - U-Boot wrapped image' |
---|
106 | | - @echo ' dtbs - Build device tree blobs for enabled boards' |
---|
| 100 | + @echo ' xipImage - XIP image' |
---|
107 | 101 | endef |
---|