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 git://git.kernel.org/pub/scm/linux/kernel/git/sam/kbuild-fixes

* git://git.kernel.org/pub/scm/linux/kernel/git/sam/kbuild-fixes:
Kconfig: introduce ARCH_DEFCONFIG to DEFCONFIG_LIST
.gitignore: match ncscope.out
scripts/ver_linux use 'gcc -dumpversion'

+6 -14
+1
.gitignore
··· 52 52 53 53 # cscope files 54 54 cscope.* 55 + ncscope.* 55 56 56 57 *.orig 57 58 *~
+3 -10
arch/x86/Kconfig
··· 26 26 select HAVE_KVM if ((X86_32 && !X86_VOYAGER && !X86_VISWS && !X86_NUMAQ) || X86_64) 27 27 select HAVE_ARCH_KGDB if !X86_VOYAGER 28 28 29 - config DEFCONFIG_LIST 29 + config ARCH_DEFCONFIG 30 30 string 31 - depends on X86_32 32 - option defconfig_list 33 - default "arch/x86/configs/i386_defconfig" 34 - 35 - config DEFCONFIG_LIST 36 - string 37 - depends on X86_64 38 - option defconfig_list 39 - default "arch/x86/configs/x86_64_defconfig" 31 + default "arch/x86/configs/i386_defconfig" if X86_32 32 + default "arch/x86/configs/x86_64_defconfig" if X86_64 40 33 41 34 42 35 config GENERIC_LOCKBREAK
+1
init/Kconfig
··· 13 13 default "/lib/modules/$UNAME_RELEASE/.config" 14 14 default "/etc/kernel-config" 15 15 default "/boot/config-$UNAME_RELEASE" 16 + default "$ARCH_DEFCONFIG" 16 17 default "arch/$ARCH/defconfig" 17 18 18 19 menu "General setup"
+1 -4
scripts/ver_linux
··· 12 12 uname -a 13 13 echo ' ' 14 14 15 - gcc --version 2>&1| head -n 1 | grep -v gcc | awk \ 15 + gcc -dumpversion 2>&1| awk \ 16 16 'NR==1{print "Gnu C ", $1}' 17 - 18 - gcc --version 2>&1| grep gcc | awk \ 19 - 'NR==1{print "Gnu C ", $3}' 20 17 21 18 make --version 2>&1 | awk -F, '{print $1}' | awk \ 22 19 '/GNU Make/{print "Gnu make ",$NF}'