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