kbuild, deb-pkg: Fix build with paranoid umask
[deliverable/linux.git] / scripts / package / builddeb
CommitLineData
1da177e4
LT
1#!/bin/sh
2#
4964451a 3# builddeb 1.3
1da177e4
LT
4# Copyright 2003 Wichert Akkerman <wichert@wiggy.net>
5#
6# Simple script to generate a deb package for a Linux kernel. All the
4f66199b 7# complexity of what to do with a kernel after it is installed or removed
1da177e4 8# is left to other scripts and packages: they can install scripts in the
fe233cb6
FP
9# /etc/kernel/{pre,post}{inst,rm}.d/ directories (or an alternative location
10# specified in KDEB_HOOKDIR) that will be called on package install and
11# removal.
1da177e4
LT
12
13set -e
14
3e2ab256
FP
15create_package() {
16 local pname="$1" pdir="$2"
17
9461f666 18 cp debian/copyright "$pdir/usr/share/doc/$pname/"
1ab18486 19 cp debian/changelog "$pdir/usr/share/doc/$pname/changelog.Debian"
20 gzip -9 "$pdir/usr/share/doc/$pname/changelog.Debian"
b59a1225
FJ
21 sh -c "cd '$pdir'; find . -type f ! -path './DEBIAN/*' -printf '%P\0' \
22 | xargs -r0 md5sum > DEBIAN/md5sums"
9461f666 23
3e2ab256
FP
24 # Fix ownership and permissions
25 chown -R root:root "$pdir"
26 chmod -R go-w "$pdir"
27
28 # Create the package
29 dpkg-gencontrol -isp -p$pname -P"$pdir"
30 dpkg --build "$pdir" ..
31}
32
1da177e4
LT
33# Some variables and settings used throughout the script
34version=$KERNELRELEASE
4f66199b 35revision=$(cat .version)
c72c75db
FP
36if [ -n "$KDEB_PKGVERSION" ]; then
37 packageversion=$KDEB_PKGVERSION
38else
39 packageversion=$version-$revision
40fi
1da177e4 41tmpdir="$objtree/debian/tmp"
bf1b3644 42fwdir="$objtree/debian/fwtmp"
f7a2c31f 43packagename=linux-image-$version
bf1b3644 44fwpackagename=linux-firmware-image
687c3dac 45
4f66199b 46if [ "$ARCH" = "um" ] ; then
687c3dac
SR
47 packagename=user-mode-linux-$version
48fi
1da177e4
LT
49
50# Setup the directory structure
bf1b3644 51rm -rf "$tmpdir" "$fwdir"
e86c2412 52mkdir -m 755 -p "$tmpdir/DEBIAN"
53mkdir -p "$tmpdir/lib" "$tmpdir/boot" "$tmpdir/usr/share/doc/$packagename"
54mkdir -m 755 -p "$fwdir/DEBIAN"
55mkdir -p "$fwdir/lib" "$fwdir/usr/share/doc/$fwpackagename"
4f66199b 56if [ "$ARCH" = "um" ] ; then
9461f666 57 mkdir -p "$tmpdir/usr/lib/uml/modules/$version" "$tmpdir/usr/bin"
687c3dac 58fi
1da177e4
LT
59
60# Build and install the kernel
4f66199b 61if [ "$ARCH" = "um" ] ; then
687c3dac
SR
62 $MAKE linux
63 cp System.map "$tmpdir/usr/lib/uml/modules/$version/System.map"
64 cp .config "$tmpdir/usr/share/doc/$packagename/config"
65 gzip "$tmpdir/usr/share/doc/$packagename/config"
66 cp $KBUILD_IMAGE "$tmpdir/usr/bin/linux-$version"
67else
68 cp System.map "$tmpdir/boot/System.map-$version"
69 cp .config "$tmpdir/boot/config-$version"
a89b433b 70 # Not all arches include the boot path in KBUILD_IMAGE
242c5ab0
GJ
71 if [ -e $KBUILD_IMAGE ]; then
72 cp $KBUILD_IMAGE "$tmpdir/boot/vmlinuz-$version"
73 else
a89b433b
FP
74 cp arch/$ARCH/boot/$KBUILD_IMAGE "$tmpdir/boot/vmlinuz-$version"
75 fi
687c3dac 76fi
1da177e4
LT
77
78if grep -q '^CONFIG_MODULES=y' .config ; then
a91f98a2 79 INSTALL_MOD_PATH="$tmpdir" make KBUILD_SRC= modules_install
4f66199b 80 if [ "$ARCH" = "um" ] ; then
687c3dac
SR
81 mv "$tmpdir/lib/modules/$version"/* "$tmpdir/usr/lib/uml/modules/$version/"
82 rmdir "$tmpdir/lib/modules/$version"
83 fi
1da177e4
LT
84fi
85
86# Install the maintainer scripts
fe233cb6
FP
87# Note: hook scripts under /etc/kernel are also executed by official Debian
88# kernel packages, as well as kernel packages built using make-kpkg
89debhookdir=${KDEB_HOOKDIR:-/etc/kernel}
1da177e4 90for script in postinst postrm preinst prerm ; do
fe233cb6 91 mkdir -p "$tmpdir$debhookdir/$script.d"
1da177e4
LT
92 cat <<EOF > "$tmpdir/DEBIAN/$script"
93#!/bin/sh
94
95set -e
96
4964451a 97# Pass maintainer script parameters to hook scripts
241ad11f 98export DEB_MAINT_PARAMS="\$*"
4964451a 99
fe233cb6 100test -d $debhookdir/$script.d && run-parts --arg="$version" $debhookdir/$script.d
1da177e4
LT
101exit 0
102EOF
103 chmod 755 "$tmpdir/DEBIAN/$script"
104done
105
edec611d 106# Try to determine maintainer and email values
107if [ -n "$DEBEMAIL" ]; then
108 email=$DEBEMAIL
109elif [ -n "$EMAIL" ]; then
110 email=$EMAIL
111else
112 email=$(id -nu)@$(hostname -f)
113fi
114if [ -n "$DEBFULLNAME" ]; then
115 name=$DEBFULLNAME
116elif [ -n "$NAME" ]; then
117 name=$NAME
118else
119 name="Anonymous"
120fi
121maintainer="$name <$email>"
122
1da177e4
LT
123# Generate a simple changelog template
124cat <<EOF > debian/changelog
4bf4cd49 125linux-upstream ($packageversion) unstable; urgency=low
1da177e4 126
a83ca277 127 * Custom built Linux kernel.
1da177e4 128
edec611d 129 -- $maintainer $(date -R)
1da177e4
LT
130EOF
131
9461f666
FP
132# Generate copyright file
133cat <<EOF > debian/copyright
134This is a packacked upstream version of the Linux kernel.
135
136The sources may be found at most Linux ftp sites, including:
137ftp://ftp.kernel.org/pub/linux/kernel
138
139Copyright: 1991 - 2009 Linus Torvalds and others.
140
141The git repository for mainline kernel development is at:
142git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git
143
144 This program is free software; you can redistribute it and/or modify
145 it under the terms of the GNU General Public License as published by
146 the Free Software Foundation; version 2 dated June, 1991.
147
148On Debian GNU/Linux systems, the complete text of the GNU General Public
149License version 2 can be found in \`/usr/share/common-licenses/GPL-2'.
150EOF
151
1da177e4 152# Generate a control file
3e2ab256 153cat <<EOF > debian/control
4bf4cd49 154Source: linux-upstream
aa42abed 155Section: kernel
dc5962fd 156Priority: optional
edec611d 157Maintainer: $maintainer
2d7204ac 158Standards-Version: 3.8.4
ee6eed80 159Homepage: http://www.kernel.org/
3e2ab256
FP
160EOF
161
162if [ "$ARCH" = "um" ]; then
163 cat <<EOF >> debian/control
dc5962fd
SR
164
165Package: $packagename
8ebc2fe9 166Provides: linux-image, linux-image-2.6, linux-modules-$version
dc5962fd
SR
167Architecture: any
168Description: User Mode Linux kernel, version $version
169 User-mode Linux is a port of the Linux kernel to its own system call
170 interface. It provides a kind of virtual machine, which runs Linux
171 as a user process under another Linux kernel. This is useful for
172 kernel development, sandboxes, jails, experimentation, and
173 many other things.
174 .
175 This package contains the Linux kernel, modules and corresponding other
a83ca277 176 files, version: $version.
dc5962fd
SR
177EOF
178
179else
3e2ab256 180 cat <<EOF >> debian/control
1da177e4 181
687c3dac 182Package: $packagename
8ebc2fe9 183Provides: linux-image, linux-image-2.6, linux-modules-$version
bf1b3644 184Suggests: $fwpackagename
1da177e4 185Architecture: any
dc5962fd 186Description: Linux kernel, version $version
1da177e4 187 This package contains the Linux kernel, modules and corresponding other
a83ca277 188 files, version: $version.
1da177e4 189EOF
4f66199b 190
dc5962fd 191fi
1da177e4 192
bf1b3644
JM
193# Do we have firmware? Move it out of the way and build it into a package.
194if [ -e "$tmpdir/lib/firmware" ]; then
195 mv "$tmpdir/lib/firmware" "$fwdir/lib/"
196
197 cat <<EOF >> debian/control
198
199Package: $fwpackagename
200Architecture: all
201Description: Linux kernel firmware, version $version
a83ca277 202 This package contains firmware from the Linux kernel, version $version.
bf1b3644
JM
203EOF
204
3e2ab256 205 create_package "$fwpackagename" "$fwdir"
bf1b3644
JM
206fi
207
3e2ab256 208create_package "$packagename" "$tmpdir"
1da177e4
LT
209
210exit 0
This page took 0.462461 seconds and 5 git commands to generate.