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 'misc' of git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild

Pull misc kbuild changes from Michal Marek:
"There are only a few things in the misc branch:

- Fix for bugon.cocci semantic patch
- Kdevelop4 files are .gitignored
- Put make binrpm-pkg on diet"

* 'misc' of git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild:
scripts/package: binrpm-pkg do not create source and devel package
.gitignore: Add Kdevelop4 project files
bugon.cocci: fix Options at the macro

+8 -1
+3
.gitignore
··· 96 96 97 97 # Kconfig presets 98 98 all.config 99 + 100 + # Kdevelop4 101 + *.kdev4
+1 -1
scripts/coccinelle/misc/bugon.cocci
··· 8 8 // Confidence: High 9 9 // Copyright: (C) 2014 Himangi Saraogi. GPLv2. 10 10 // Comments: 11 - // Options: --no-includes, --include-headers 11 + // Options: --no-includes --include-headers 12 12 13 13 virtual patch 14 14 virtual context
+4
scripts/package/mkspec
··· 117 117 echo 'mv vmlinux.orig vmlinux' 118 118 echo "%endif" 119 119 120 + if ! $PREBUILT; then 120 121 echo 'rm -f $RPM_BUILD_ROOT'"/lib/modules/$KERNELRELEASE/{build,source}" 121 122 echo "mkdir -p "'$RPM_BUILD_ROOT'"/usr/src/kernels/$KERNELRELEASE" 122 123 echo "EXCLUDES=\"$RCS_TAR_IGNORE --exclude .tmp_versions --exclude=*vmlinux* --exclude=*.o --exclude=*.ko --exclude=*.cmd --exclude=Documentation --exclude=firmware --exclude .config.old --exclude .missing-syscalls.d\"" ··· 125 124 echo 'cd $RPM_BUILD_ROOT'"/lib/modules/$KERNELRELEASE" 126 125 echo "ln -sf /usr/src/kernels/$KERNELRELEASE build" 127 126 echo "ln -sf /usr/src/kernels/$KERNELRELEASE source" 127 + fi 128 128 129 129 echo "" 130 130 echo "%clean" ··· 153 151 echo '%defattr (-, root, root)' 154 152 echo "/usr/include" 155 153 echo "" 154 + if ! $PREBUILT; then 156 155 echo "%files devel" 157 156 echo '%defattr (-, root, root)' 158 157 echo "/usr/src/kernels/$KERNELRELEASE" 159 158 echo "/lib/modules/$KERNELRELEASE/build" 160 159 echo "/lib/modules/$KERNELRELEASE/source" 161 160 echo "" 161 + fi