summaryrefslogtreecommitdiff
path: root/Makefile
AgeCommit message (Collapse)AuthorFilesLines
2014-06-23Linux 3.12.23v3.12.23Jiri Slaby1-1/+1
2014-06-11Linux 3.12.22v3.12.22Jiri Slaby1-1/+1
2014-05-29Linux 3.12.21v3.12.21Jiri Slaby1-1/+1
2014-05-15Linux 3.12.20v3.12.20Jiri Slaby1-1/+1
2014-05-05Linux 3.12.19v3.12.19Jiri Slaby1-1/+1
2014-04-18Linux 3.12.18v3.12.18Jiri Slaby1-1/+1
2014-04-03Linux 3.12.17v3.12.17Jiri Slaby1-1/+1
2014-03-31Linux 3.12.16v3.12.16Jiri Slaby1-1/+1
2014-03-24Linux 3.12.15v3.12.15Jiri Slaby1-1/+1
2014-03-10Linux 3.12.14v3.12.14Jiri Slaby1-1/+1
2014-02-23Linux 3.12.13v3.12.13Greg Kroah-Hartman1-1/+1
2014-02-20Linux 3.12.12v3.12.12Greg Kroah-Hartman1-1/+1
2014-02-14Linux 3.12.11v3.12.11Greg Kroah-Hartman1-1/+1
2014-02-06Linux 3.12.10v3.12.10Greg Kroah-Hartman1-1/+1
2014-01-25Linux 3.12.9v3.12.9Greg Kroah-Hartman1-1/+1
2014-01-16Linux 3.12.8v3.12.8Greg Kroah-Hartman1-1/+1
2014-01-10Linux 3.12.7v3.12.7Greg Kroah-Hartman1-1/+1
2013-12-20Linux 3.12.6v3.12.6Greg Kroah-Hartman1-1/+1
2013-12-12Linux 3.12.5v3.12.5Greg Kroah-Hartman1-1/+1
2013-12-08Linux 3.12.4v3.12.4Greg Kroah-Hartman1-1/+1
2013-12-04Linux 3.12.3v3.12.3Greg Kroah-Hartman1-1/+1
2013-11-29Linux 3.12.2v3.12.2Greg Kroah-Hartman1-1/+1
2013-11-21Linux 3.12.1v3.12.1Greg Kroah-Hartman1-1/+1
2013-11-04Linux 3.12v3.12Linus Torvalds1-1/+1
2013-10-28Linux 3.12-rc7v3.12-rc7Linus Torvalds1-1/+1
2013-10-19Linux 3.12-rc6v3.12-rc6Linus Torvalds1-1/+1
2013-10-14Linux 3.12-rc5v3.12-rc5Linus Torvalds1-1/+1
2013-10-07Linux 3.12-rc4v3.12-rc4Linus Torvalds1-1/+1
2013-09-30Linux 3.12-rc3v3.12-rc3Linus Torvalds1-1/+1
2013-09-24Linux 3.12-rc2v3.12-rc2Linus Torvalds1-1/+1
2013-09-17Linux 3.12-rc1v3.12-rc1Linus Torvalds1-3/+3
2013-09-12Bye, bye, WfW flagLinus Torvalds1-1/+1
This reverts the Linux for Workgroups thing. And no, before somebody asks, we're not doing Linux95. Not for a few years, at least. Sure, the flag added some color to the logo, and could have remained as a testament to my leet gimp skills. But no. And I'll do this early, to avoid the chance of forgetting when I'm doing the actual rc1 release on the road. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2013-09-08Merge branch 'kbuild' of ↵Linus Torvalds1-2/+5
git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild Pull kbuild update from Michal Marek: "Only these two commits are in the kbuild branch this time: - Using filechk for include/config/kernel.release - Cleanup in scripts/sortextable.c" * 'kbuild' of git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild: kbuild: Do not overwrite include/config/kernel.release needlessly scripts: remove unused function in sortextable.c
2013-09-03Linux 3.11v3.11Linus Torvalds1-1/+1
2013-08-28kbuild: Do not overwrite include/config/kernel.release needlesslyMichal Marek1-2/+5
Use filechk to detect if the content changed or not. Signed-off-by: Michal Marek <mmarek@suse.cz>
2013-08-26Linux 3.11-rc7v3.11-rc7Linus Torvalds1-1/+1
2013-08-19Linux 3.11-rc6v3.11-rc6Linus Torvalds1-1/+1
2013-08-12Linux 3.11-rc5v3.11-rc5Linus Torvalds1-1/+1
2013-08-05Linux 3.11-rc4v3.11-rc4Linus Torvalds1-1/+1
2013-07-29Linux 3.11-rc3v3.11-rc3Linus Torvalds1-1/+1
2013-07-21Linux 3.11-rc2v3.11-rc2Linus Torvalds1-1/+1
2013-07-15Linux 3.11-rc1v3.11-rc1Linus Torvalds1-3/+3
2013-07-11Revert "Makefile: Fix install error with make -j option"Linus Torvalds1-1/+1
This reverts commit d2aae8477cd00325bb7c7c7e95be488088900c48. It is completely and utterly broken. Module install should not build any files, and adding broken dependencies to "help" it build files is complete and utter sh*t. The kernel should not be built by root, and "make install" and "make module_install" (that for obvious reasons need to be run as root) absolutely must not build any files. They should only ever copy the already-built files over. So having dependencies for the install targets is wrong, wrong, wrong. If you try to install a kernel without building it first, you *should* get errors. The build system shouldn't try to help root build the files. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2013-07-11Merge branch 'kbuild' of ↵Linus Torvalds1-2/+6
git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild Pull kbuild updates from Michal Marek: - fix for make headers_install argv explosion with too long path - scripts/setlocalversion does not call git update-index needlessly - fix for the src.rpm produced by make rpm-pkg. The new make image_name can be useful also for other packaging tools. - scripts/mod/devicetable-offsets.o is not rebuilt during each make run - make modules_install dependency fix - scripts/sortextable portability fix - fix for kbuild to generate the output directory for all object files in subdirs. - a couple of minor fixes * 'kbuild' of git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild: kbuild: create directory for dir/file.o tools/include: use stdint types for user-space byteshift headers Makefile: Fix install error with make -j option Fix a build warning in scripts/mod/file2alias.c improve modalias building scripts/mod: Spelling s/DEVICEVTABLE/DEVICETABLE/ kbuild: fix error when building from src rpm scripts/setlocalversion on write-protected source tree Makefile.lib: align DTB quiet_cmd kbuild: fix make headers_install when path is too long
2013-07-04Merge branch 'for-linus' of ↵Linus Torvalds1-1/+1
git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial Pull trivial tree updates from Jiri Kosina: "The usual stuff from trivial tree" * 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial: (34 commits) treewide: relase -> release Documentation/cgroups/memory.txt: fix stat file documentation sysctl/net.txt: delete reference to obsolete 2.4.x kernel spinlock_api_smp.h: fix preprocessor comments treewide: Fix typo in printk doc: device tree: clarify stuff in usage-model.txt. open firmware: "/aliasas" -> "/aliases" md: bcache: Fixed a typo with the word 'arithmetic' irq/generic-chip: fix a few kernel-doc entries frv: Convert use of typedef ctl_table to struct ctl_table sgi: xpc: Convert use of typedef ctl_table to struct ctl_table doc: clk: Fix incorrect wording Documentation/arm/IXP4xx fix a typo Documentation/networking/ieee802154 fix a typo Documentation/DocBook/media/v4l fix a typo Documentation/video4linux/si476x.txt fix a typo Documentation/virtual/kvm/api.txt fix a typo Documentation/early-userspace/README fix a typo Documentation/video4linux/soc-camera.txt fix a typo lguest: fix CONFIG_PAE -> CONFIG_x86_PAE in comment ...
2013-07-03Makefile: Fix install error with make -j optionRobert Richter1-1/+1
Make modules_install fails with -j option: DEPMOD Usage: .../.source/linux/scripts/depmod.sh /sbin/depmod <kernelrelease> make[1]: *** [_modinst_post] Error 1 Adding kernelrelease dependency to fix this. Signed-off-by: Robert Richter <robert.richter@calxeda.com> Cc: <stable@vger.kernel.org> Signed-off-by: Michal Marek <mmarek@suse.cz>
2013-07-01Linux 3.10v3.10Linus Torvalds1-1/+1
2013-06-28treewide: relase -> releaseGeert Uytterhoeven1-1/+1
Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org> Signed-off-by: Jiri Kosina <jkosina@suse.cz>
2013-06-24kbuild: fix error when building from src rpmMike Marciniszyn1-1/+5
The following issue can be reproduced with Linus' tree on an x86_64 server. >+ cp /home/user/rpmbuild-test/BUILDROOT/kernel-3.9.2.x86_64/boot/vmlinuz-3.9.2 >cp: missing destination file operand after >/home/user/rpmbuild-test/BUILDROOT/kernel-3.9.2-1.x86_64/boot/vmlinuz-3.9.2' >Try `cp --help' for more information. >error: Bad exit status from /var/tmp/rpm-tmp.R4o0iI (%install) Here are the commands to reproduce: make defconfig make rpm-pkg Use the resulting src rpm to build as follows: mkdir ~/rpmbuild-test cd ~/rpmbuild-test rpmbuild --rebuild --define "_topdir `pwd`" -vv ~/rpmbuild/SRPMS/kernel-3.10.0_rc1+-1.src.rpm The issue is because the %install script uses $KBUILD_IMAGE and it hasn't been set since it is only available in the kbuild system and not in the %install script. This patch adds a Makefile target to emit the image_name that can be used and modifies the mkspec to use the dynamic name in %install. Signed-off-by: Mike Marciniszyn <mike.marciniszyn@intel.com> Signed-off-by: Michal Marek <mmarek@suse.cz>
2013-06-22Linux 3.10-rc7v3.10-rc7Linus Torvalds1-1/+1