diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2019-05-27 23:37:24 +0900 |
---|---|---|
committer | Masahiro Yamada <yamada.masahiro@socionext.com> | 2019-06-09 15:08:18 +0900 |
commit | bd305f259cd33f6cd550e479d0a0a856cd8b7941 (patch) | |
tree | b5af09fac7dabb6eca2b0e7dfdca62862f358705 /arch/riscv | |
parent | 5533397d1ec83d749067794f54283890e38ff0c1 (diff) | |
download | linux-bd305f259cd33f6cd550e479d0a0a856cd8b7941.tar.bz2 |
kconfig: make arch/*/configs/defconfig the default of KBUILD_DEFCONFIG
Until recently, if KBUILD_DEFCONFIG was not set by the arch Makefile,
the default path arch/*/defconfig was used.
The last users of the default are gone by the following commits:
- Commit f3e20ad67b4c ("s390: move arch/s390/defconfig to
arch/s390/configs/defconfig")
- Commit 986a13769c4b ("alpha: move arch/alpha/defconfig to
arch/alpha/configs/defconfig")
Let's set arch/*/configs/defconfig as a new default. This saves
KBUILD_DEFCONFIG for some architectures.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Acked-by: Catalin Marinas <catalin.marinas@arm.com>
Diffstat (limited to 'arch/riscv')
-rw-r--r-- | arch/riscv/Makefile | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/arch/riscv/Makefile b/arch/riscv/Makefile index 6b0741c9f348..f8b3b07e4247 100644 --- a/arch/riscv/Makefile +++ b/arch/riscv/Makefile @@ -16,8 +16,6 @@ endif KBUILD_AFLAGS_MODULE += -fPIC KBUILD_CFLAGS_MODULE += -fPIC -KBUILD_DEFCONFIG = defconfig - export BITS ifeq ($(CONFIG_ARCH_RV64I),y) BITS := 64 |