kbuild, deb-pkg: select userland architecture based on UTS_MACHINE
[pandora-kernel.git] / scripts / package / builddeb
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
13 set -e
14
15 create_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         # Attempt to find the correct Debian architecture
29         local forcearch="" debarch=""
30         case "$UTS_MACHINE" in
31         i386|ia64|alpha)
32                 debarch="$UTS_MACHINE" ;;
33         x86_64)
34                 debarch=amd64 ;;
35         sparc*)
36                 debarch=sparc ;;
37         s390*)
38                 debarch=s390 ;;
39         ppc*)
40                 debarch=powerpc ;;
41         parisc*)
42                 debarch=hppa ;;
43         mips*)
44                 debarch=mips$(grep -q CPU_LITTLE_ENDIAN=y .config && echo el) ;;
45         arm*)
46                 debarch=arm$(grep -q CONFIG_AEABI=y .config && echo el) ;;
47         *)
48                 echo "" >&2
49                 echo "** ** **  WARNING  ** ** **" >&2
50                 echo "" >&2
51                 echo "Your architecture doesn't have it's equivalent" >&2
52                 echo "Debian userspace architecture defined!" >&2
53                 echo "Falling back to using your current userspace instead!" >&2
54                 echo "Please add support for $UTS_MACHINE to ${0} ..." >&2
55                 echo "" >&2
56         esac
57         if [ -n "$debarch" ] ; then
58                 forcearch="-DArchitecture=$debarch"
59         fi
60
61         # Create the package
62         dpkg-gencontrol -isp $forcearch -p$pname -P"$pdir"
63         dpkg --build "$pdir" ..
64 }
65
66 # Some variables and settings used throughout the script
67 version=$KERNELRELEASE
68 revision=$(cat .version)
69 if [ -n "$KDEB_PKGVERSION" ]; then
70         packageversion=$KDEB_PKGVERSION
71 else
72         packageversion=$version-$revision
73 fi
74 tmpdir="$objtree/debian/tmp"
75 fwdir="$objtree/debian/fwtmp"
76 packagename=linux-image-$version
77 fwpackagename=linux-firmware-image
78
79 if [ "$ARCH" = "um" ] ; then
80         packagename=user-mode-linux-$version
81 fi
82
83 # Setup the directory structure
84 rm -rf "$tmpdir" "$fwdir"
85 mkdir -m 755 -p "$tmpdir/DEBIAN"
86 mkdir -p  "$tmpdir/lib" "$tmpdir/boot" "$tmpdir/usr/share/doc/$packagename"
87 mkdir -m 755 -p "$fwdir/DEBIAN"
88 mkdir -p "$fwdir/lib" "$fwdir/usr/share/doc/$fwpackagename"
89 if [ "$ARCH" = "um" ] ; then
90         mkdir -p "$tmpdir/usr/lib/uml/modules/$version" "$tmpdir/usr/bin"
91 fi
92
93 # Build and install the kernel
94 if [ "$ARCH" = "um" ] ; then
95         $MAKE linux
96         cp System.map "$tmpdir/usr/lib/uml/modules/$version/System.map"
97         cp .config "$tmpdir/usr/share/doc/$packagename/config"
98         gzip "$tmpdir/usr/share/doc/$packagename/config"
99         cp $KBUILD_IMAGE "$tmpdir/usr/bin/linux-$version"
100 else 
101         cp System.map "$tmpdir/boot/System.map-$version"
102         cp .config "$tmpdir/boot/config-$version"
103         # Not all arches include the boot path in KBUILD_IMAGE
104         if [ -e $KBUILD_IMAGE ]; then
105                 cp $KBUILD_IMAGE "$tmpdir/boot/vmlinuz-$version"
106         else
107                 cp arch/$ARCH/boot/$KBUILD_IMAGE "$tmpdir/boot/vmlinuz-$version"
108         fi
109 fi
110
111 if grep -q '^CONFIG_MODULES=y' .config ; then
112         INSTALL_MOD_PATH="$tmpdir" make KBUILD_SRC= modules_install
113         if [ "$ARCH" = "um" ] ; then
114                 mv "$tmpdir/lib/modules/$version"/* "$tmpdir/usr/lib/uml/modules/$version/"
115                 rmdir "$tmpdir/lib/modules/$version"
116         fi
117 fi
118
119 # Install the maintainer scripts
120 # Note: hook scripts under /etc/kernel are also executed by official Debian
121 # kernel packages, as well as kernel packages built using make-kpkg
122 debhookdir=${KDEB_HOOKDIR:-/etc/kernel}
123 for script in postinst postrm preinst prerm ; do
124         mkdir -p "$tmpdir$debhookdir/$script.d"
125         cat <<EOF > "$tmpdir/DEBIAN/$script"
126 #!/bin/sh
127
128 set -e
129
130 # Pass maintainer script parameters to hook scripts
131 export DEB_MAINT_PARAMS="\$*"
132
133 test -d $debhookdir/$script.d && run-parts --arg="$version" $debhookdir/$script.d
134 exit 0
135 EOF
136         chmod 755 "$tmpdir/DEBIAN/$script"
137 done
138
139 # Try to determine maintainer and email values
140 if [ -n "$DEBEMAIL" ]; then
141        email=$DEBEMAIL
142 elif [ -n "$EMAIL" ]; then
143        email=$EMAIL
144 else
145        email=$(id -nu)@$(hostname -f)
146 fi
147 if [ -n "$DEBFULLNAME" ]; then
148        name=$DEBFULLNAME
149 elif [ -n "$NAME" ]; then
150        name=$NAME
151 else
152        name="Anonymous"
153 fi
154 maintainer="$name <$email>"
155
156 # Generate a simple changelog template
157 cat <<EOF > debian/changelog
158 linux-upstream ($packageversion) unstable; urgency=low
159
160   * Custom built Linux kernel.
161
162  -- $maintainer  $(date -R)
163 EOF
164
165 # Generate copyright file
166 cat <<EOF > debian/copyright
167 This is a packacked upstream version of the Linux kernel.
168
169 The sources may be found at most Linux ftp sites, including:
170 ftp://ftp.kernel.org/pub/linux/kernel
171
172 Copyright: 1991 - 2009 Linus Torvalds and others.
173
174 The git repository for mainline kernel development is at:
175 git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git
176
177     This program is free software; you can redistribute it and/or modify
178     it under the terms of the GNU General Public License as published by
179     the Free Software Foundation; version 2 dated June, 1991.
180
181 On Debian GNU/Linux systems, the complete text of the GNU General Public
182 License version 2 can be found in \`/usr/share/common-licenses/GPL-2'.
183 EOF
184
185 # Generate a control file
186 cat <<EOF > debian/control
187 Source: linux-upstream
188 Section: kernel
189 Priority: optional
190 Maintainer: $maintainer
191 Standards-Version: 3.8.4
192 Homepage: http://www.kernel.org/
193 EOF
194
195 if [ "$ARCH" = "um" ]; then
196         cat <<EOF >> debian/control
197
198 Package: $packagename
199 Provides: linux-image, linux-image-2.6, linux-modules-$version
200 Architecture: any
201 Description: User Mode Linux kernel, version $version
202  User-mode Linux is a port of the Linux kernel to its own system call
203  interface.  It provides a kind of virtual machine, which runs Linux
204  as a user process under another Linux kernel.  This is useful for
205  kernel development, sandboxes, jails, experimentation, and
206  many other things.
207  .
208  This package contains the Linux kernel, modules and corresponding other
209  files, version: $version.
210 EOF
211
212 else
213         cat <<EOF >> debian/control
214
215 Package: $packagename
216 Provides: linux-image, linux-image-2.6, linux-modules-$version
217 Suggests: $fwpackagename
218 Architecture: any
219 Description: Linux kernel, version $version
220  This package contains the Linux kernel, modules and corresponding other
221  files, version: $version.
222 EOF
223
224 fi
225
226 # Do we have firmware? Move it out of the way and build it into a package.
227 if [ -e "$tmpdir/lib/firmware" ]; then
228         mv "$tmpdir/lib/firmware" "$fwdir/lib/"
229
230         cat <<EOF >> debian/control
231
232 Package: $fwpackagename
233 Architecture: all
234 Description: Linux kernel firmware, version $version
235  This package contains firmware from the Linux kernel, version $version.
236 EOF
237
238         create_package "$fwpackagename" "$fwdir"
239 fi
240
241 create_package "$packagename" "$tmpdir"
242
243 exit 0