2005-04-17 02:20:36 +04:00
#!/bin/sh
#
2009-04-23 03:09:25 +04:00
# builddeb 1.3
2005-04-17 02:20:36 +04:00
# Copyright 2003 Wichert Akkerman <wichert@wiggy.net>
#
# Simple script to generate a deb package for a Linux kernel. All the
2009-04-23 03:08:31 +04:00
# complexity of what to do with a kernel after it is installed or removed
2005-04-17 02:20:36 +04:00
# is left to other scripts and packages: they can install scripts in the
2009-04-23 03:10:10 +04:00
# /etc/kernel/{pre,post}{inst,rm}.d/ directories (or an alternative location
# specified in KDEB_HOOKDIR) that will be called on package install and
# removal.
2005-04-17 02:20:36 +04:00
set -e
2009-04-23 03:08:44 +04:00
create_package() {
local pname="$1" pdir="$2"
2009-04-24 21:08:24 +04:00
cp debian/copyright "$pdir/usr/share/doc/$pname/"
2009-06-26 22:04:36 +04:00
cp debian/changelog "$pdir/usr/share/doc/$pname/changelog.Debian"
gzip -9 "$pdir/usr/share/doc/$pname/changelog.Debian"
2009-04-24 21:08:24 +04:00
2009-04-23 03:08:44 +04:00
# Fix ownership and permissions
chown -R root:root "$pdir"
chmod -R go-w "$pdir"
# Create the package
dpkg-gencontrol -isp -p$pname -P"$pdir"
dpkg --build "$pdir" ..
}
2005-04-17 02:20:36 +04:00
# Some variables and settings used throughout the script
version=$KERNELRELEASE
2009-04-23 03:08:31 +04:00
revision=$(cat .version)
2009-04-23 03:09:44 +04:00
if [ -n "$KDEB_PKGVERSION" ]; then
packageversion=$KDEB_PKGVERSION
else
packageversion=$version-$revision
fi
2005-04-17 02:20:36 +04:00
tmpdir="$objtree/debian/tmp"
2008-09-13 20:08:31 +04:00
fwdir="$objtree/debian/fwtmp"
2009-04-23 03:12:01 +04:00
packagename=linux-image-$version
2008-09-13 20:08:31 +04:00
fwpackagename=linux-firmware-image
2005-07-15 00:24:00 +04:00
2009-04-23 03:08:31 +04:00
if [ "$ARCH" = "um" ] ; then
2005-07-15 00:24:00 +04:00
packagename=user-mode-linux-$version
fi
2005-04-17 02:20:36 +04:00
# Setup the directory structure
2008-09-13 20:08:31 +04:00
rm -rf "$tmpdir" "$fwdir"
2009-04-24 21:08:24 +04:00
mkdir -p "$tmpdir/DEBIAN" "$tmpdir/lib" "$tmpdir/boot" "$tmpdir/usr/share/doc/$packagename"
mkdir -p "$fwdir/DEBIAN" "$fwdir/lib" "$fwdir/usr/share/doc/$fwpackagename"
2009-04-23 03:08:31 +04:00
if [ "$ARCH" = "um" ] ; then
2009-04-24 21:08:24 +04:00
mkdir -p "$tmpdir/usr/lib/uml/modules/$version" "$tmpdir/usr/bin"
2005-07-15 00:24:00 +04:00
fi
2005-04-17 02:20:36 +04:00
# Build and install the kernel
2009-04-23 03:08:31 +04:00
if [ "$ARCH" = "um" ] ; then
2005-07-15 00:24:00 +04:00
$MAKE linux
cp System.map "$tmpdir/usr/lib/uml/modules/$version/System.map"
cp .config "$tmpdir/usr/share/doc/$packagename/config"
gzip "$tmpdir/usr/share/doc/$packagename/config"
cp $KBUILD_IMAGE "$tmpdir/usr/bin/linux-$version"
else
cp System.map "$tmpdir/boot/System.map-$version"
cp .config "$tmpdir/boot/config-$version"
2009-04-23 03:09:04 +04:00
# Not all arches include the boot path in KBUILD_IMAGE
if ! cp $KBUILD_IMAGE "$tmpdir/boot/vmlinuz-$version"; then
cp arch/$ARCH/boot/$KBUILD_IMAGE "$tmpdir/boot/vmlinuz-$version"
fi
2005-07-15 00:24:00 +04:00
fi
2005-04-17 02:20:36 +04:00
if grep -q '^CONFIG_MODULES=y' .config ; then
2005-07-15 00:26:09 +04:00
INSTALL_MOD_PATH="$tmpdir" make KBUILD_SRC= modules_install
2009-04-23 03:08:31 +04:00
if [ "$ARCH" = "um" ] ; then
2005-07-15 00:24:00 +04:00
mv "$tmpdir/lib/modules/$version"/* "$tmpdir/usr/lib/uml/modules/$version/"
rmdir "$tmpdir/lib/modules/$version"
fi
2005-04-17 02:20:36 +04:00
fi
# Install the maintainer scripts
2009-04-23 03:10:10 +04:00
# Note: hook scripts under /etc/kernel are also executed by official Debian
# kernel packages, as well as kernel packages built using make-kpkg
debhookdir=${KDEB_HOOKDIR:-/etc/kernel}
2005-04-17 02:20:36 +04:00
for script in postinst postrm preinst prerm ; do
2009-04-23 03:10:10 +04:00
mkdir -p "$tmpdir$debhookdir/$script.d"
2005-04-17 02:20:36 +04:00
cat <<EOF > "$tmpdir/DEBIAN/$script"
#!/bin/sh
set -e
2009-04-23 03:09:25 +04:00
# Pass maintainer script parameters to hook scripts
2009-07-05 22:17:34 +04:00
export DEB_MAINT_PARAMS="\$*"
2009-04-23 03:09:25 +04:00
2009-04-23 03:10:10 +04:00
test -d $debhookdir/$script.d && run-parts --arg="$version" $debhookdir/$script.d
2005-04-17 02:20:36 +04:00
exit 0
EOF
chmod 755 "$tmpdir/DEBIAN/$script"
done
2009-04-23 03:11:20 +04:00
# Try to determine maintainer and email values
if [ -n "$DEBEMAIL" ]; then
email=$DEBEMAIL
elif [ -n "$EMAIL" ]; then
email=$EMAIL
else
email=$(id -nu)@$(hostname -f)
fi
if [ -n "$DEBFULLNAME" ]; then
name=$DEBFULLNAME
elif [ -n "$NAME" ]; then
name=$NAME
else
name="Anonymous"
fi
maintainer="$name <$email>"
2005-04-17 02:20:36 +04:00
# Generate a simple changelog template
cat <<EOF > debian/changelog
2009-04-23 03:11:43 +04:00
linux-upstream ($packageversion) unstable; urgency=low
2005-04-17 02:20:36 +04:00
2009-04-23 03:10:25 +04:00
* Custom built Linux kernel.
2005-04-17 02:20:36 +04:00
2009-04-23 03:11:20 +04:00
-- $maintainer $(date -R)
2005-04-17 02:20:36 +04:00
EOF
2009-04-24 21:08:24 +04:00
# Generate copyright file
cat <<EOF > debian/copyright
This is a packacked upstream version of the Linux kernel.
The sources may be found at most Linux ftp sites, including:
ftp://ftp.kernel.org/pub/linux/kernel
Copyright: 1991 - 2009 Linus Torvalds and others.
The git repository for mainline kernel development is at:
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; version 2 dated June, 1991.
On Debian GNU/Linux systems, the complete text of the GNU General Public
License version 2 can be found in \`/usr/share/common-licenses/GPL-2'.
EOF
2005-04-17 02:20:36 +04:00
# Generate a control file
2009-04-23 03:08:44 +04:00
cat <<EOF > debian/control
2009-04-23 03:11:43 +04:00
Source: linux-upstream
2009-04-23 03:12:41 +04:00
Section: admin
2005-07-15 00:24:56 +04:00
Priority: optional
2009-04-23 03:11:20 +04:00
Maintainer: $maintainer
2009-04-23 03:12:58 +04:00
Standards-Version: 3.8.1
2009-04-23 03:08:44 +04:00
EOF
if [ "$ARCH" = "um" ]; then
cat <<EOF >> debian/control
2005-07-15 00:24:56 +04:00
Package: $packagename
2009-04-23 03:12:21 +04:00
Provides: linux-image, linux-image-2.6, linux-modules-$version
2005-07-15 00:24:56 +04:00
Architecture: any
Description: User Mode Linux kernel, version $version
User-mode Linux is a port of the Linux kernel to its own system call
interface. It provides a kind of virtual machine, which runs Linux
as a user process under another Linux kernel. This is useful for
kernel development, sandboxes, jails, experimentation, and
many other things.
.
This package contains the Linux kernel, modules and corresponding other
2009-04-23 03:10:25 +04:00
files, version: $version.
2005-07-15 00:24:56 +04:00
EOF
else
2009-04-23 03:08:44 +04:00
cat <<EOF >> debian/control
2005-04-17 02:20:36 +04:00
2005-07-15 00:24:00 +04:00
Package: $packagename
2009-04-23 03:12:21 +04:00
Provides: linux-image, linux-image-2.6, linux-modules-$version
2008-09-13 20:08:31 +04:00
Suggests: $fwpackagename
2005-04-17 02:20:36 +04:00
Architecture: any
2005-07-15 00:24:56 +04:00
Description: Linux kernel, version $version
2005-04-17 02:20:36 +04:00
This package contains the Linux kernel, modules and corresponding other
2009-04-23 03:10:25 +04:00
files, version: $version.
2005-04-17 02:20:36 +04:00
EOF
2009-04-23 03:08:31 +04:00
2005-07-15 00:24:56 +04:00
fi
2005-04-17 02:20:36 +04:00
2008-09-13 20:08:31 +04:00
# Do we have firmware? Move it out of the way and build it into a package.
if [ -e "$tmpdir/lib/firmware" ]; then
mv "$tmpdir/lib/firmware" "$fwdir/lib/"
cat <<EOF >> debian/control
Package: $fwpackagename
Architecture: all
Description: Linux kernel firmware, version $version
2009-04-23 03:10:25 +04:00
This package contains firmware from the Linux kernel, version $version.
2008-09-13 20:08:31 +04:00
EOF
2009-04-23 03:08:44 +04:00
create_package "$fwpackagename" "$fwdir"
2008-09-13 20:08:31 +04:00
fi
2009-04-23 03:08:44 +04:00
create_package "$packagename" "$tmpdir"
2005-04-17 02:20:36 +04:00
exit 0