We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 32db9f1 + ededa08 commit 69c5eeaCopy full SHA for 69c5eea
arch/parisc/Kconfig
@@ -79,6 +79,11 @@ config MMU
79
config STACK_GROWSUP
80
def_bool y
81
82
+config ARCH_DEFCONFIG
83
+ string
84
+ default "arch/parisc/configs/generic-32bit_defconfig" if !64BIT
85
+ default "arch/parisc/configs/generic-64bit_defconfig" if 64BIT
86
+
87
config GENERIC_LOCKBREAK
88
bool
89
default y
arch/parisc/Makefile
@@ -34,6 +34,13 @@ CC_ARCHES = hppa hppa2.0 hppa1.1
34
LD_BFD := elf32-hppa-linux
35
endif
36
37
+# select defconfig based on actual architecture
38
+ifeq ($(shell uname -m),parisc64)
39
+ KBUILD_DEFCONFIG := generic-64bit_defconfig
40
+else
41
+ KBUILD_DEFCONFIG := generic-32bit_defconfig
42
+endif
43
44
export LD_BFD
45
46
ifneq ($(SUBARCH),$(UTS_MACHINE))
0 commit comments