aboutsummaryrefslogtreecommitdiff
path: root/scripts/package/builddeb
AgeCommit message (Collapse)AuthorFilesLines
2011-01-07deb-pkg: s/hdr/kernel_headers_/ && s/header/libc_headers_/maximilian attems1-14/+16
hdrpackage and headerpackage are not intuitive names, use proposed alternatives by Michel Marek. While touching them move the mkdir of the kernel_headers dir up and fix it for paranoid umask. CC: Theodore Ts'o <[email protected]> Signed-off-by: maximilian attems <[email protected]> Signed-off-by: Michal Marek <[email protected]>
2011-01-07deb-pkg: Make deb-pkg generate a seperate linux-libc-dev debmaximilian attems1-1/+20
userland dev likes latest incarnation of that userland API. make it easy to also build it on make deb-pkg invocation: dpkg-deb: building package `linux-libc-dev' in `../linux-libc-dev_2.6.32-rc6-4_amd64.deb'. Last year patch rebased on top of latest deb-pkg changes. Signed-off-by: maximilian attems <[email protected]> Signed-off-by: Michal Marek <[email protected]>
2010-12-29kbuild: create linux-headers package in deb-pkgTheodore Ts'o1-1/+27
Create a linux-headers-$KVER.deb package which can be used to build external modules without having the source tree around. Signed-off-by: "Theodore Ts'o" <[email protected]> Signed-off-by: Michal Marek <[email protected]>
2010-12-20kbuild, deb-pkg: support overriding userland architectureAsbjoern Sloth Toennesen1-0/+3
Usefull if building for sparc64 userland, because the sparc and sparc64 userlands use the same 64-bit kernel, making it impossible to always select the correct userland architecture for the resulting debian package. Might also be usefull, if you want a i386 userland with a amd64 kernel. Example usage: make KBUILD_DEBARCH=i386 deb-pkg LKML-reference: <[email protected]> Signed-off-by: Asbjoern Sloth Toennesen <[email protected]> Reviewed-by: WANG Cong <[email protected]> Acked-by: maximilian attems <[email protected]> Signed-off-by: Michal Marek <[email protected]>
2010-11-25kbuild, deb-pkg: select userland architecture based on UTS_MACHINEAsbjoern Sloth Toennesen1-1/+34
Instead of creating the debian package for the compiling userland, create it for a userland matching the kernel thats being compiled. This patch supports all Lenny release architectures, and Linux-based architecture candidates for Squeeze. If it can't find a proper Debian userspace it displays a warning, and fallback to let deb-gencontrol use the host's userspace arch. Eg. with this patch the following make command: make ARCH=i386 deb-pkg will output an i386 Debian package instead of an amd64 one, when run on an amd64 machine. Signed-off-by: Asbjoern Sloth Toennesen <[email protected]> Acked-by: maximilian attems <[email protected]> Signed-off-by: Michal Marek <[email protected]>
2010-11-11kbuild, deb-pkg: Fix build with paranoid umaskmaximilian attems1-2/+4
umask 077 make deb-pkg <snipp ..> dpkg-deb: building package `linux-image-2.6.36+' in `../linux-image-2.6.36+_2.6.36+-4_amd64.deb'. dpkg-deb: control directory has bad permissions 700 (must be >=0755 and <=0775) make[1]: *** [deb-pkg] Error 2 Reported-by: Bastian Blank <[email protected]> Signed-off-by: maximilian attems <[email protected]> Signed-off-by: Michal Marek <[email protected]>
2010-09-06kbuild, deb-pkg: Check if KBUILD_IMAGE exists before copying itGuillem Jover1-1/+3
Avoid an error when doing cp over the image when it does not contain the full path to the file. Signed-off-by: Guillem Jover <[email protected]> Signed-off-by: Michal Marek <[email protected]>
2010-06-03kbuild: Change section of generated debian packages to kernelRogério Brito1-1/+1
To follow the way that Official Debian kernel packages are made, put the generated packages in the right section, the kernel section. This also avoids polluting the admin section. Signed-off-by: Rogério Brito <[email protected]> Signed-off-by: Michal Marek <[email protected]>
2010-06-03kbuild: Mark that the packages generated conform to Standards-Version 3.8.4Rogério Brito1-1/+1
The packages generated by the builddeb script conform to the Debian Policy version 3.8.4. Make this explicit in the generated packages. Signed-off-by: Rogério Brito <[email protected]> Signed-off-by: Michal Marek <[email protected]>
2010-06-03kbuild: Add homepage field to debian/control fileRogério Brito1-0/+1
This helps when the user sees information of the packages on package managers like aptitude. Signed-off-by: Rogério Brito <[email protected]> Signed-off-by: Michal Marek <[email protected]>
2010-03-07kbuild: deb-pkg md5sumsFEJES Jozsef1-0/+2
This patch creates the standard md5sums file for 'make deb-pkg' just like the dh_md5sums debhelper script. Signed-off-by: Jozsef Fejes <[email protected]> Signed-off-by: Michal Marek <[email protected]>
2009-07-17kbuild, deb-pkg: fix install scripts for posix shmaximilian attems1-1/+1
bash versus dash and posh disagree on expanding $@ within double quotes: export x="$@" see http://bugs.debian.org/381091 for details just use the arglist with $*. dpkg: error processing linux-image-2.6.31-rc1_2.6.31-rc1-18_i386.deb (--install): subprocess pre-installation script returned error exit status 2 export: 6: 2.6.31-rc1-18: bad variable name fixes http://bugzilla.kernel.org/show_bug.cgi?id=13567 seen on Ubuntu as there dash is the default sh, versus bash on Debian. Reported-by: Pauli <[email protected]> Cc: Frans Pop <[email protected]> Signed-off-by: maximilian attems <[email protected]> Acked-By: Andres Salomon <[email protected]>
2009-06-27kbuild: deb-pkg ship changelogmaximilian attems1-0/+2
In the series for 2.6.31 it was noticed to ship the copyright, but the generated changelog got lost somehow. As bonus the generated linux-image deb packages are Lenny lintian clean. Cc: Frans Pop <[email protected]> Cc: Andres Salomon <[email protected]> Signed-off-by: maximilian attems <[email protected]> Signed-off-by: Sam Ravnborg <[email protected]>
2009-06-09kbuild, deb-pkg: bump standards versionmaximilian attems1-1/+1
Latest Debian policy is 3.8.1. Even if we are not yet compliant to it strive for the latest. Signed-off-by: maximilian attems <[email protected]> Signed-off-by: Frans Pop <[email protected]> Acked-by: Andres Salomon <[email protected]> Signed-off-by: Sam Ravnborg <[email protected]>
2009-06-09kbuild, deb-pkg: fix Section fieldmaximilian attems1-1/+1
Section "base" has been removed, the base is defined by Priority field. For Squeeze the section should be "kernel", but as that's not yet supported for Sarge and Etch we stay with admin for now. Signed-off-by: maximilian attems <[email protected]> Signed-off-by: Frans Pop <[email protected]> Cc: Andres Salomon <[email protected]> Signed-off-by: Sam Ravnborg <[email protected]>
2009-06-09kbuild, deb-pkg: fix Provides fieldmaximilian attems1-2/+2
kernel-image naming has been dropped for the Lenny release and was only transitional for Etch. As it builds modules it provides linux-modules-$version. Signed-off-by: maximilian attems <[email protected]> Signed-off-by: Frans Pop <[email protected]> Cc: Andres Salomon <[email protected]> Signed-off-by: Sam Ravnborg <[email protected]>
2009-06-09kbuild, deb-pkg: fix generated package namemaximilian attems1-1/+1
The binary package that make deb-pkg creates is a linux-image. To be fixed may also be the addition of $DEB_ARCH. Signed-off-by: maximilian attems <[email protected]> Signed-off-by: Frans Pop <[email protected]> Cc: Andres Salomon <[email protected]> Signed-off-by: Sam Ravnborg <[email protected]>
2009-06-09kbuild, deb-pkg: improve Source fieldFrans Pop1-2/+2
The Source: field is defined as the source package in the package archive from which a binary packages are built. As deb-pkg does not generate a source package, we should avoid to use any existing source packages here. Signed-off-by: Frans Pop <[email protected]> Acked-by: maximilian attems <[email protected]> Cc: Andres Salomon <[email protected]> Signed-off-by: Sam Ravnborg <[email protected]>
2009-06-09kbuild, deb-pkg: improve maintainer identificationmaximilian attems1-3/+19
Try harder to find email and maintainer name. Debian's own devscripts all use DEBEMAIL or DEBFULLNAME prior to an eventual EMAIL or NAME environment variable. Match their logic. "Anonymous" sounds nicer then "Kernel Compiler" if no name is found. Signed-off-by: maximilian attems <[email protected]> Signed-off-by: Frans Pop <[email protected]> Cc: Andres Salomon <[email protected]> Signed-off-by: Sam Ravnborg <[email protected]>
2009-06-09kbuild, deb-pkg: generate debian/copyright fileFrans Pop1-3/+25
On Thursday 23 April 2009, Frans Pop wrote: Add a basic debian/copyright to the binary packages. Based on an earlier patch from Maximilian Attems. Signed-off-by: Frans Pop <[email protected]> Acked-by: maximilian attems <[email protected]> Cc: Andres Salomon <[email protected]> Signed-off-by: Sam Ravnborg <[email protected]>
2009-06-09kbuild, deb-pkg: improve changelog entry and package descriptionsFrans Pop1-4/+4
Signed-off-by: Frans Pop <[email protected]> Acked-by: maximilian attems <[email protected]> Cc: Andres Salomon <[email protected]> Signed-off-by: Sam Ravnborg <[email protected]>
2009-06-09kbuild, deb-pkg: allow alternative hook scripts directory in .deb packagesFrans Pop1-4/+8
Hook scripts in the default directory /etc/kernel are also executed by official Debian kernel packages as well as kernel packages created using make-kpkg. Allow to specify an alternative hook scripts directory by exporting the environment variable KDEB_HOOKDIR. Signed-off-by: Frans Pop <[email protected]> Acked-by: maximilian attems <[email protected]> Cc: Andres Salomon <[email protected]> Signed-off-by: Sam Ravnborg <[email protected]>
2009-06-09kbuild, deb-pkg: allow to specify a custom revision for .deb packagesFrans Pop1-1/+6
Allow to specify a custom revision for the generated .deb by exporting the environment variable KDEB_PKGVERSION. Signed-off-by: Frans Pop <[email protected]> Acked-by: maximilian attems <[email protected]> Cc: Andres Salomon <[email protected]> Signed-off-by: Sam Ravnborg <[email protected]>
2009-06-09kbuild, deb-pkg: pass Debian maintainer script parameters to packaging hook ↵Frans Pop1-1/+4
scripts The Debian packaging scripts created by the deb-pkg target do not pass on the standard Debian maintainer script parameters to hook scripts, which means that those scripts cannot tell whether they are being called during e.g. install vs. upgrade, or removal vs. purge of the package. As there are several variantions in how hook scripts are called from kernel packages, we pass the parameters in the environment variable DEB_MAINT_PARAMS rather than as extra arguments. Bump version of builddep script to 1.3. Signed-off-by: Frans Pop <[email protected]> Acked-by: maximilian attems <[email protected]> Cc: Andres Salomon <[email protected]> Signed-off-by: Sam Ravnborg <[email protected]>
2009-06-09kbuild, deb-pkg: fix 'file not found' error when building .deb package for armFrans Pop1-1/+4
Not all architectures prepend the $(boot) path in $(KBUILD_IMAGE). Allow for that fact in the builddeb script. Example is arm. Signed-off-by: Frans Pop <[email protected]> Acked-by: maximilian attems <[email protected]> Cc: Andres Salomon <[email protected]> Signed-off-by: Sam Ravnborg <[email protected]>
2009-06-09kbuild, deb-pkg: refactor code to reduce duplicationFrans Pop1-17/+20
Factor out code to build package into separate function and only write "source" section for the debian/control file once. Signed-off-by: Frans Pop <[email protected]> Acked-by: maximilian attems <[email protected]> Cc: Andres Salomon <[email protected]> Signed-off-by: Sam Ravnborg <[email protected]>
2009-06-09kbuild, deb-pkg: minor general improvements in builddeb scriptFrans Pop1-11/+10
Minor coding style improvements and typo fix in leading comment. Signed-off-by: Frans Pop <[email protected]> Cc: Andres Salomon <[email protected]> Acked-by: maximilian attems <[email protected]> Signed-off-by: Sam Ravnborg <[email protected]>
2008-11-09kbuild: Fixup deb-pkg target to generate separate firmware debJonathan McDowell1-2/+22
The below is a simplistic fix for "make deb-pkg"; it splits the firmware out to a linux-firmware-image package and adds an (unversioned) Suggests to the linux package for this firmware. Signed-Off-By: Jonathan McDowell <[email protected]> Acked-by: Frans Pop <[email protected]> Signed-off-by: Sam Ravnborg <[email protected]>
2008-02-09Kbuild: Fix deb-pkg target to work with kernel versions ending with ↵Michal Sojka1-1/+2
-<text-without-digit> If CONIFIG_LOCALVERSION is set for example to -loop, the following error message was generated. dpkg-deb - error: Debian revision (`loop') doesn't contain any digits dpkg-deb: 1 errors in control file The patch solves this by adding a numeric revision to package version. Signed-off-by: Michal Sojka <[email protected]> Signed-off-by: Sam Ravnborg <[email protected]>
2007-10-18kbuild: make deb-pkg - add 'Provides:' line[email protected]1-0/+2
http://bugzilla.kernel.org/show_bug.cgi?id=8941 Current Debian's kernel-modules depend on matching linux-image-$version, though Linux's make deb-pkg build a .deb that 'Provides: kernel-image-$version' only. The following patch adds the Debian-compliant 'Provides', leaving the default one; hopely this will make way all happy. Signed-off-by: paolo <[email protected]> Signed-off-by: Sam Ravnborg <[email protected]>
2005-07-14kbuild: Fix bug in make deb-pkg when using seperate source and output ↵Sam Ravnborg1-1/+1
directories From: Ryan Anderson <[email protected]> When running "make O=something deb-pkg", I get a failure that claims I haven't configured my kernel (I have). Running it a second time tells me to run "make mrproper" (include/linux/version.h got built on the first run) Original patch from: From: Ajay Patel <[email protected]> With modifications from: Signed-off-By: Ryan Anderson <[email protected]> Signed-off-by: Sam Ravnborg <[email protected]>
2005-07-14uml: Restore proper descriptions in make deb-pkg targetSam Ravnborg1-2/+26
From: Ryan Anderson <[email protected]> This pulls the description from the Debian user-mode-linux package, and puts $version back in the appropriate places for both descriptions. Signed-off-by: Ryan Anderson <[email protected]> Signed-off-by: Sam Ravnborg <[email protected]>
2005-07-14uml: Make deb-pkg build target build a Debian-style user-mode-linux packageSam Ravnborg1-6/+26
From: Ryan Anderson <[email protected]> Make the deb-pkg build target understand the "um" arch and set up the package and directory structure to match a mainline-Debian style user-mode-linux package. This is primarily so that it stops matching, exactly, the naming convention used by normal, non-UML kernels generated by this command. Installing "linux-2.6.11" and "linux-2.6.11", where one is a UML kernel doesn't do the right thing. This fixes that. Signed-off-by: Ryan Anderson <[email protected]> Signed-off-by: Sam Ravnborg <[email protected]>
2005-04-16Linux-2.6.12-rc2Linus Torvalds1-0/+79
Initial git repository build. I'm not bothering with the full history, even though we have it. We can create a separate "historical" git archive of that later if we want to, and in the meantime it's about 3.2GB when imported into git - space that would just make the early git days unnecessarily complicated, when we don't have a lot of good infrastructure for it. Let it rip!