2005-04-16 15:20:36 -07:00
#!/bin/sh
#
# builddeb 1.2
# Copyright 2003 Wichert Akkerman <wichert@wiggy.net>
#
# Simple script to generate a deb package for a Linux kernel. All the
2009-04-23 01:08:31 +02:00
# complexity of what to do with a kernel after it is installed or removed
2005-04-16 15:20:36 -07:00
# is left to other scripts and packages: they can install scripts in the
# /etc/kernel/{pre,post}{inst,rm}.d/ directories that will be called on
# package install and removal.
set -e
2009-04-23 01:08:44 +02:00
create_package() {
local pname="$1" pdir="$2"
# 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-16 15:20:36 -07:00
# Some variables and settings used throughout the script
version=$KERNELRELEASE
2009-04-23 01:08:31 +02:00
revision=$(cat .version)
2005-04-16 15:20:36 -07:00
tmpdir="$objtree/debian/tmp"
2008-09-13 17:08:31 +01:00
fwdir="$objtree/debian/fwtmp"
2005-07-14 20:24:00 +00:00
packagename=linux-$version
2008-09-13 17:08:31 +01:00
fwpackagename=linux-firmware-image
2005-07-14 20:24:00 +00:00
2009-04-23 01:08:31 +02:00
if [ "$ARCH" = "um" ] ; then
2005-07-14 20:24:00 +00:00
packagename=user-mode-linux-$version
fi
2005-04-16 15:20:36 -07:00
# Setup the directory structure
2008-09-13 17:08:31 +01:00
rm -rf "$tmpdir" "$fwdir"
2005-04-16 15:20:36 -07:00
mkdir -p "$tmpdir/DEBIAN" "$tmpdir/lib" "$tmpdir/boot"
2008-09-13 17:08:31 +01:00
mkdir -p "$fwdir/DEBIAN" "$fwdir/lib"
2009-04-23 01:08:31 +02:00
if [ "$ARCH" = "um" ] ; then
2005-07-14 20:24:00 +00:00
mkdir -p "$tmpdir/usr/lib/uml/modules/$version" "$tmpdir/usr/share/doc/$packagename" "$tmpdir/usr/bin"
fi
2005-04-16 15:20:36 -07:00
# Build and install the kernel
2009-04-23 01:08:31 +02:00
if [ "$ARCH" = "um" ] ; then
2005-07-14 20:24:00 +00: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"
cp $KBUILD_IMAGE "$tmpdir/boot/vmlinuz-$version"
fi
2005-04-16 15:20:36 -07:00
if grep -q '^CONFIG_MODULES=y' .config ; then
2005-07-14 20:26:09 +00:00
INSTALL_MOD_PATH="$tmpdir" make KBUILD_SRC= modules_install
2009-04-23 01:08:31 +02:00
if [ "$ARCH" = "um" ] ; then
2005-07-14 20:24:00 +00:00
mv "$tmpdir/lib/modules/$version"/* "$tmpdir/usr/lib/uml/modules/$version/"
rmdir "$tmpdir/lib/modules/$version"
fi
2005-04-16 15:20:36 -07:00
fi
# Install the maintainer scripts
for script in postinst postrm preinst prerm ; do
mkdir -p "$tmpdir/etc/kernel/$script.d"
cat <<EOF > "$tmpdir/DEBIAN/$script"
#!/bin/sh
set -e
test -d /etc/kernel/$script.d && run-parts --arg="$version" /etc/kernel/$script.d
exit 0
EOF
chmod 755 "$tmpdir/DEBIAN/$script"
done
name="Kernel Compiler <$(id -nu)@$(hostname -f)>"
# Generate a simple changelog template
cat <<EOF > debian/changelog
2008-02-07 17:18:51 +01:00
linux ($version-$revision) unstable; urgency=low
2005-04-16 15:20:36 -07:00
* A standard release
-- $name $(date -R)
EOF
# Generate a control file
2009-04-23 01:08:44 +02:00
cat <<EOF > debian/control
2005-07-14 20:24:56 +00:00
Source: linux
Section: base
Priority: optional
Maintainer: $name
Standards-Version: 3.6.1
2009-04-23 01:08:44 +02:00
EOF
if [ "$ARCH" = "um" ]; then
cat <<EOF >> debian/control
2005-07-14 20:24:56 +00:00
Package: $packagename
2007-08-29 07:57:41 -07:00
Provides: kernel-image-$version, linux-image-$version
2005-07-14 20:24:56 +00: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
files version $version
EOF
else
2009-04-23 01:08:44 +02:00
cat <<EOF >> debian/control
2005-04-16 15:20:36 -07:00
2005-07-14 20:24:00 +00:00
Package: $packagename
2007-08-29 07:57:41 -07:00
Provides: kernel-image-$version, linux-image-$version
2008-09-13 17:08:31 +01:00
Suggests: $fwpackagename
2005-04-16 15:20:36 -07:00
Architecture: any
2005-07-14 20:24:56 +00:00
Description: Linux kernel, version $version
2005-04-16 15:20:36 -07:00
This package contains the Linux kernel, modules and corresponding other
2005-07-14 20:24:56 +00:00
files version $version
2005-04-16 15:20:36 -07:00
EOF
2009-04-23 01:08:31 +02:00
2005-07-14 20:24:56 +00:00
fi
2005-04-16 15:20:36 -07:00
2008-09-13 17:08:31 +01: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
This package contains firmware from the Linux kernel, version $version
EOF
2009-04-23 01:08:44 +02:00
create_package "$fwpackagename" "$fwdir"
2008-09-13 17:08:31 +01:00
fi
2009-04-23 01:08:44 +02:00
create_package "$packagename" "$tmpdir"
2005-04-16 15:20:36 -07:00
exit 0