Makefile (a6ad93e37e76ec43c9cee6a91dd783fb854c2ff1) | Makefile (b75b0a819af9f78fc395b189cddd40f590194d20) |
---|---|
1# SPDX-License-Identifier: GPL-2.0 2# =========================================================================== 3# Kernel configuration targets 4# These targets are used from top-level makefile 5 6ifdef KBUILD_KCONFIG 7Kconfig := $(KBUILD_KCONFIG) 8else 9Kconfig := Kconfig 10endif 11 12ifeq ($(quiet),silent_) 13silent := -s 14endif 15 | 1# SPDX-License-Identifier: GPL-2.0 2# =========================================================================== 3# Kernel configuration targets 4# These targets are used from top-level makefile 5 6ifdef KBUILD_KCONFIG 7Kconfig := $(KBUILD_KCONFIG) 8else 9Kconfig := Kconfig 10endif 11 12ifeq ($(quiet),silent_) 13silent := -s 14endif 15 |
16export KCONFIG_DEFCONFIG_LIST := 17ifneq ($(SRCARCH),um) 18kernel-release := $(shell uname -r) 19KCONFIG_DEFCONFIG_LIST := \ 20 /lib/modules/$(kernel-release)/.config \ 21 /etc/kernel-config \ 22 /boot/config-$(kernel-release) \ 23 arch/$(SRCARCH)/configs/$(KBUILD_DEFCONFIG) 24endif 25 |
|
16# We need this, in case the user has it in its environment 17unexport CONFIG_ 18 19config-prog := conf 20menuconfig-prog := mconf 21nconfig-prog := nconf 22gconfig-prog := gconf 23xconfig-prog := qconf --- 175 unchanged lines hidden --- | 26# We need this, in case the user has it in its environment 27unexport CONFIG_ 28 29config-prog := conf 30menuconfig-prog := mconf 31nconfig-prog := nconf 32gconfig-prog := gconf 33xconfig-prog := qconf --- 175 unchanged lines hidden --- |