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

Configure Feed

Select the types of activity you want to include in your feed.

nios2: move core-y in arch/nios2/Makefile to arch/nios2/Kbuild

Use obj-y to clean up Makefile.

Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>

+2 -4
+2
arch/nios2/Kbuild
··· 1 1 # SPDX-License-Identifier: GPL-2.0-only 2 2 3 + obj-y += kernel/ mm/ platform/ boot/dts/ 4 + 3 5 # for cleaning 4 6 subdir- += boot
-4
arch/nios2/Makefile
··· 39 39 40 40 head-y := arch/nios2/kernel/head.o 41 41 libs-y += arch/nios2/lib/ $(LIBGCC) 42 - core-y += arch/nios2/kernel/ arch/nios2/mm/ 43 - core-y += arch/nios2/platform/ 44 42 45 43 INSTALL_PATH ?= /tftpboot 46 44 nios2-boot := arch/$(ARCH)/boot 47 45 BOOT_TARGETS = vmImage zImage 48 46 PHONY += $(BOOT_TARGETS) install 49 47 KBUILD_IMAGE := $(nios2-boot)/vmImage 50 - 51 - core-y += $(nios2-boot)/dts/ 52 48 53 49 all: vmImage 54 50