blob: 1264b8e2829d49a497a02afb9059f862736700f6 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#!/bin/sh
2#
3# builddeb 1.2
4# Copyright 2003 Wichert Akkerman <wichert@wiggy.net>
5#
6# Simple script to generate a deb package for a Linux kernel. All the
7# complexity of what to do with a kernel after it is installer or removed
8# is left to other scripts and packages: they can install scripts in the
9# /etc/kernel/{pre,post}{inst,rm}.d/ directories that will be called on
10# package install and removal.
11
12set -e
13
14# Some variables and settings used throughout the script
15version=$KERNELRELEASE
Michal Sojkaed2c9fa2008-02-07 17:18:51 +010016revision=`cat .version`
Linus Torvalds1da177e2005-04-16 15:20:36 -070017tmpdir="$objtree/debian/tmp"
Jonathan McDowellbf1b3642008-09-13 17:08:31 +010018fwdir="$objtree/debian/fwtmp"
Sam Ravnborg687c3da2005-07-14 20:24:00 +000019packagename=linux-$version
Jonathan McDowellbf1b3642008-09-13 17:08:31 +010020fwpackagename=linux-firmware-image
Sam Ravnborg687c3da2005-07-14 20:24:00 +000021
22if [ "$ARCH" == "um" ] ; then
23 packagename=user-mode-linux-$version
24fi
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
26# Setup the directory structure
Jonathan McDowellbf1b3642008-09-13 17:08:31 +010027rm -rf "$tmpdir" "$fwdir"
Linus Torvalds1da177e2005-04-16 15:20:36 -070028mkdir -p "$tmpdir/DEBIAN" "$tmpdir/lib" "$tmpdir/boot"
Jonathan McDowellbf1b3642008-09-13 17:08:31 +010029mkdir -p "$fwdir/DEBIAN" "$fwdir/lib"
Sam Ravnborg687c3da2005-07-14 20:24:00 +000030if [ "$ARCH" == "um" ] ; then
31 mkdir -p "$tmpdir/usr/lib/uml/modules/$version" "$tmpdir/usr/share/doc/$packagename" "$tmpdir/usr/bin"
32fi
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
34# Build and install the kernel
Sam Ravnborg687c3da2005-07-14 20:24:00 +000035if [ "$ARCH" == "um" ] ; then
36 $MAKE linux
37 cp System.map "$tmpdir/usr/lib/uml/modules/$version/System.map"
38 cp .config "$tmpdir/usr/share/doc/$packagename/config"
39 gzip "$tmpdir/usr/share/doc/$packagename/config"
40 cp $KBUILD_IMAGE "$tmpdir/usr/bin/linux-$version"
41else
42 cp System.map "$tmpdir/boot/System.map-$version"
43 cp .config "$tmpdir/boot/config-$version"
44 cp $KBUILD_IMAGE "$tmpdir/boot/vmlinuz-$version"
45fi
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
47if grep -q '^CONFIG_MODULES=y' .config ; then
Sam Ravnborga91f98a2005-07-14 20:26:09 +000048 INSTALL_MOD_PATH="$tmpdir" make KBUILD_SRC= modules_install
Sam Ravnborg687c3da2005-07-14 20:24:00 +000049 if [ "$ARCH" == "um" ] ; then
50 mv "$tmpdir/lib/modules/$version"/* "$tmpdir/usr/lib/uml/modules/$version/"
51 rmdir "$tmpdir/lib/modules/$version"
52 fi
Linus Torvalds1da177e2005-04-16 15:20:36 -070053fi
54
55# Install the maintainer scripts
56for script in postinst postrm preinst prerm ; do
57 mkdir -p "$tmpdir/etc/kernel/$script.d"
58 cat <<EOF > "$tmpdir/DEBIAN/$script"
59#!/bin/sh
60
61set -e
62
63test -d /etc/kernel/$script.d && run-parts --arg="$version" /etc/kernel/$script.d
64exit 0
65EOF
66 chmod 755 "$tmpdir/DEBIAN/$script"
67done
68
69name="Kernel Compiler <$(id -nu)@$(hostname -f)>"
70# Generate a simple changelog template
71cat <<EOF > debian/changelog
Michal Sojkaed2c9fa2008-02-07 17:18:51 +010072linux ($version-$revision) unstable; urgency=low
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
74 * A standard release
75
76 -- $name $(date -R)
77EOF
78
79# Generate a control file
Sam Ravnborgdc5962f2005-07-14 20:24:56 +000080if [ "$ARCH" == "um" ]; then
81
Linus Torvalds1da177e2005-04-16 15:20:36 -070082cat <<EOF > debian/control
83Source: linux
84Section: base
85Priority: optional
86Maintainer: $name
87Standards-Version: 3.6.1
88
Sam Ravnborg687c3da2005-07-14 20:24:00 +000089Package: $packagename
bugme-daemon@bugzilla.kernel.org6f67a002007-08-29 07:57:41 -070090Provides: kernel-image-$version, linux-image-$version
Linus Torvalds1da177e2005-04-16 15:20:36 -070091Architecture: any
Sam Ravnborgdc5962f2005-07-14 20:24:56 +000092Description: User Mode Linux kernel, version $version
93 User-mode Linux is a port of the Linux kernel to its own system call
94 interface. It provides a kind of virtual machine, which runs Linux
95 as a user process under another Linux kernel. This is useful for
96 kernel development, sandboxes, jails, experimentation, and
97 many other things.
98 .
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 This package contains the Linux kernel, modules and corresponding other
Sam Ravnborgdc5962f2005-07-14 20:24:56 +0000100 files version $version
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101EOF
102
Sam Ravnborgdc5962f2005-07-14 20:24:56 +0000103else
104cat <<EOF > debian/control
105Source: linux
106Section: base
107Priority: optional
108Maintainer: $name
109Standards-Version: 3.6.1
110
111Package: $packagename
bugme-daemon@bugzilla.kernel.org6f67a002007-08-29 07:57:41 -0700112Provides: kernel-image-$version, linux-image-$version
Jonathan McDowellbf1b3642008-09-13 17:08:31 +0100113Suggests: $fwpackagename
Sam Ravnborgdc5962f2005-07-14 20:24:56 +0000114Architecture: any
115Description: Linux kernel, version $version
116 This package contains the Linux kernel, modules and corresponding other
117 files version $version
118EOF
119fi
120
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121# Fix some ownership and permissions
122chown -R root:root "$tmpdir"
123chmod -R go-w "$tmpdir"
124
Jonathan McDowellbf1b3642008-09-13 17:08:31 +0100125# Do we have firmware? Move it out of the way and build it into a package.
126if [ -e "$tmpdir/lib/firmware" ]; then
127 mv "$tmpdir/lib/firmware" "$fwdir/lib/"
128
129 cat <<EOF >> debian/control
130
131Package: $fwpackagename
132Architecture: all
133Description: Linux kernel firmware, version $version
134 This package contains firmware from the Linux kernel, version $version
135EOF
136
137 dpkg-gencontrol -isp -p$fwpackagename -P"$fwdir"
138 dpkg --build "$fwdir" ..
139fi
140
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141# Perform the final magic
Jonathan McDowellbf1b3642008-09-13 17:08:31 +0100142dpkg-gencontrol -isp -p$packagename
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143dpkg --build "$tmpdir" ..
144
145exit 0
146