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 branch 'x86-build-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip

Pull x86 build updates from Ingo Molnar:
"Two kbuild enhancements by Masahiro Yamada"

* 'x86-build-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
x86/build: Remove redundant 'clean-files += capflags.c'
x86/build: Add 'set -e' to mkcapflags.sh to delete broken capflags.c

+3 -2
+1 -2
arch/x86/kernel/cpu/Makefile
··· 56 56 57 57 cpufeature = $(src)/../../include/asm/cpufeatures.h 58 58 59 - targets += capflags.c 60 59 $(obj)/capflags.c: $(cpufeature) $(src)/mkcapflags.sh FORCE 61 60 $(call if_changed,mkcapflags) 62 61 endif 63 - clean-files += capflags.c 62 + targets += capflags.c
+2
arch/x86/kernel/cpu/mkcapflags.sh
··· 4 4 # Generate the x86_cap/bug_flags[] arrays from include/asm/cpufeatures.h 5 5 # 6 6 7 + set -e 8 + 7 9 IN=$1 8 10 OUT=$2 9 11