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.

Merge tag 'x86-build-2023-02-20' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip

Pull x86 build update from Ingo Molnar:
"Make the 64-bit defconfig the x86 default for all builds, unless
x86-32 is requested explicitly"

* tag 'x86-build-2023-02-20' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
x86/build: Make 64-bit defconfig the default

+3 -3
+3 -3
arch/x86/Makefile
··· 3 3 4 4 # select defconfig based on actual architecture 5 5 ifeq ($(ARCH),x86) 6 - ifeq ($(shell uname -m),x86_64) 7 - KBUILD_DEFCONFIG := x86_64_defconfig 8 - else 6 + ifeq ($(shell uname -m | sed -e 's/i.86/i386/'),i386) 9 7 KBUILD_DEFCONFIG := i386_defconfig 8 + else 9 + KBUILD_DEFCONFIG := x86_64_defconfig 10 10 endif 11 11 else 12 12 KBUILD_DEFCONFIG := $(ARCH)_defconfig