Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

Merge tag 'microblaze-v5.15' of git://git.monstr.eu/linux-2.6-microblaze

Pull microblaze update from Michal Simek:

- Kbuild clean up

* tag 'microblaze-v5.15' of git://git.monstr.eu/linux-2.6-microblaze:
microblaze: move core-y in arch/microblaze/Makefile to arch/microblaze/Kbuild

+4 -5
+4
arch/microblaze/Kbuild
··· 1 1 # SPDX-License-Identifier: GPL-2.0-only 2 + obj-y += kernel/ 3 + obj-y += mm/ 4 + obj-$(CONFIG_PCI) += pci/ 5 + obj-y += boot/dts/
-5
arch/microblaze/Makefile
··· 50 50 51 51 head-y := arch/microblaze/kernel/head.o 52 52 libs-y += arch/microblaze/lib/ 53 - core-y += arch/microblaze/kernel/ 54 - core-y += arch/microblaze/mm/ 55 - core-$(CONFIG_PCI) += arch/microblaze/pci/ 56 53 57 54 boot := arch/microblaze/boot 58 55 59 56 # Are we making a simpleImage.<boardname> target? If so, crack out the boardname 60 57 DTB:=$(subst simpleImage.,,$(filter simpleImage.%, $(MAKECMDGOALS))) 61 - 62 - core-y += $(boot)/dts/ 63 58 64 59 export DTB 65 60