mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-24 04:34:08 +08:00
Merge branch 'parisc-5.6-2' of git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux
Pull parsic fix from Helge Deller: "Fix a recursive loop when running 'make ARCH=parisc defconfig'" * 'parisc-5.6-2' of git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux: parisc: Fix defconfig selection
This commit is contained in:
commit
69c5eea312
@ -79,6 +79,11 @@ config MMU
|
|||||||
config STACK_GROWSUP
|
config STACK_GROWSUP
|
||||||
def_bool y
|
def_bool y
|
||||||
|
|
||||||
|
config ARCH_DEFCONFIG
|
||||||
|
string
|
||||||
|
default "arch/parisc/configs/generic-32bit_defconfig" if !64BIT
|
||||||
|
default "arch/parisc/configs/generic-64bit_defconfig" if 64BIT
|
||||||
|
|
||||||
config GENERIC_LOCKBREAK
|
config GENERIC_LOCKBREAK
|
||||||
bool
|
bool
|
||||||
default y
|
default y
|
||||||
|
@ -34,6 +34,13 @@ CC_ARCHES = hppa hppa2.0 hppa1.1
|
|||||||
LD_BFD := elf32-hppa-linux
|
LD_BFD := elf32-hppa-linux
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
# select defconfig based on actual architecture
|
||||||
|
ifeq ($(shell uname -m),parisc64)
|
||||||
|
KBUILD_DEFCONFIG := generic-64bit_defconfig
|
||||||
|
else
|
||||||
|
KBUILD_DEFCONFIG := generic-32bit_defconfig
|
||||||
|
endif
|
||||||
|
|
||||||
export LD_BFD
|
export LD_BFD
|
||||||
|
|
||||||
ifneq ($(SUBARCH),$(UTS_MACHINE))
|
ifneq ($(SUBARCH),$(UTS_MACHINE))
|
||||||
|
Loading…
Reference in New Issue
Block a user