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
2019-03-08 12:56:24 +03:00
is_enabled() {
2019-03-08 12:56:25 +03:00
grep -q "^$1=y" include/config/auto.conf
2019-03-08 12:56:24 +03:00
}
if_enabled_echo() {
if is_enabled "$1"; then
echo -n "$2"
elif [ $# -ge 3 ]; then
echo -n "$3"
fi
}
2009-04-23 03:08:44 +04:00
create_package() {
local pname="$1" pdir="$2"
2020-09-21 01:25:54 +03:00
local dpkg_deb_opts
2009-04-23 03:08:44 +04:00
2015-05-28 12:11:14 +03:00
mkdir -m 755 -p "$pdir/DEBIAN"
mkdir -p "$pdir/usr/share/doc/$pname"
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"
2020-09-21 01:25:50 +03:00
gzip -n -9 "$pdir/usr/share/doc/$pname/changelog.Debian"
2010-03-05 20:19:36 +03:00
sh -c "cd '$pdir'; find . -type f ! -path './DEBIAN/*' -printf '%P\0' \
| xargs -r0 md5sum > DEBIAN/md5sums"
2009-04-24 21:08:24 +04:00
2009-04-23 03:08:44 +04:00
# Fix ownership and permissions
2020-09-21 01:25:54 +03:00
if [ "$DEB_RULES_REQUIRES_ROOT" = "no" ]; then
dpkg_deb_opts="--root-owner-group"
else
chown -R root:root "$pdir"
fi
2009-04-23 03:08:44 +04:00
chmod -R go-w "$pdir"
2016-07-22 15:46:52 +03:00
# in case we are in a restrictive umask environment like 0077
chmod -R a+rX "$pdir"
2020-10-26 22:32:16 +03:00
# in case we build in a setuid/setgid directory
chmod -R ug-s "$pdir"
2009-04-23 03:08:44 +04:00
2015-04-16 16:42:46 +03:00
# Create the package
2018-04-05 14:22:29 +03:00
dpkg-gencontrol -p$pname -P"$pdir"
2020-09-21 01:25:54 +03:00
dpkg-deb $dpkg_deb_opts ${KDEB_COMPRESS:+-Z$KDEB_COMPRESS} --build "$pdir" ..
2015-04-16 16:42:46 +03:00
}
2020-01-25 07:12:34 +03:00
deploy_kernel_headers () {
pdir=$1
rm -rf $pdir
(
cd $srctree
find . arch/$SRCARCH -maxdepth 1 -name Makefile\*
find include scripts -type f -o -type l
2020-09-08 07:27:08 +03:00
find arch/$SRCARCH -name Kbuild.platforms -o -name Platform
2020-01-25 07:12:34 +03:00
find $(find arch/$SRCARCH -name include -o -name scripts -type d) -type f
) > debian/hdrsrcfiles
{
2022-04-18 19:50:36 +03:00
if is_enabled CONFIG_OBJTOOL; then
2020-01-25 07:12:34 +03:00
echo tools/objtool/objtool
fi
find arch/$SRCARCH/include Module.symvers include scripts -type f
if is_enabled CONFIG_GCC_PLUGINS; then
find scripts/gcc-plugins -name \*.so
fi
} > debian/hdrobjfiles
destdir=$pdir/usr/src/linux-headers-$version
mkdir -p $destdir
tar -c -f - -C $srctree -T debian/hdrsrcfiles | tar -xf - -C $destdir
tar -c -f - -T debian/hdrobjfiles | tar -xf - -C $destdir
rm -f debian/hdrsrcfiles debian/hdrobjfiles
# copy .config manually to be where it's expected to be
cp $KCONFIG_CONFIG $destdir/.config
mkdir -p $pdir/lib/modules/$version/
ln -s /usr/src/linux-headers-$version $pdir/lib/modules/$version/build
}
2020-01-25 07:12:35 +03:00
deploy_libc_headers () {
pdir=$1
rm -rf $pdir
$MAKE -f $srctree/Makefile headers
$MAKE -f $srctree/Makefile headers_install INSTALL_HDR_PATH=$pdir/usr
# move asm headers to /usr/include/<libc-machine>/asm to match the structure
# used by Debian-based distros (to support multi-arch)
host_arch=$(dpkg-architecture -a$(cat debian/arch) -qDEB_HOST_MULTIARCH)
mkdir $pdir/usr/include/$host_arch
mv $pdir/usr/include/asm $pdir/usr/include/$host_arch/
}
2005-04-17 02:20:36 +04:00
version=$KERNELRELEASE
2020-01-25 07:12:31 +03:00
tmpdir=debian/linux-image
dbg_dir=debian/linux-image-dbg
2009-04-23 03:12:01 +04:00
packagename=linux-image-$version
2013-07-03 18:02:04 +04:00
dbg_packagename=$packagename-dbg
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
2013-07-03 18:02:05 +04:00
# Not all arches have the same installed path in debian
# XXX: have each arch Makefile export a variable of the canonical image install
# path instead
case $ARCH in
um)
installed_image_path="usr/bin/linux-$version"
;;
parisc|mips|powerpc)
installed_image_path="boot/vmlinux-$version"
;;
*)
installed_image_path="boot/vmlinuz-$version"
esac
2019-03-08 12:56:24 +03:00
BUILD_DEBUG=$(if_enabled_echo CONFIG_DEBUG_INFO Yes)
2013-07-03 18:02:04 +04:00
2005-04-17 02:20:36 +04:00
# Setup the directory structure
2020-01-25 07:12:35 +03:00
rm -rf "$tmpdir" "$dbg_dir" debian/files
2010-10-29 17:55:50 +04:00
mkdir -m 755 -p "$tmpdir/DEBIAN"
2015-05-28 12:11:14 +03:00
mkdir -p "$tmpdir/lib" "$tmpdir/boot"
2005-04-17 02:20:36 +04:00
2020-01-25 07:12:33 +03:00
# Install the kernel
2009-04-23 03:08:31 +04:00
if [ "$ARCH" = "um" ] ; then
2015-05-28 12:11:14 +03:00
mkdir -p "$tmpdir/usr/lib/uml/modules/$version" "$tmpdir/usr/bin" "$tmpdir/usr/share/doc/$packagename"
2005-07-15 00:24:00 +04:00
cp System.map "$tmpdir/usr/lib/uml/modules/$version/System.map"
2013-07-03 18:02:03 +04:00
cp $KCONFIG_CONFIG "$tmpdir/usr/share/doc/$packagename/config"
2005-07-15 00:24:00 +04:00
gzip "$tmpdir/usr/share/doc/$packagename/config"
2014-04-28 11:26:18 +04:00
else
2005-07-15 00:24:00 +04:00
cp System.map "$tmpdir/boot/System.map-$version"
2013-07-03 18:02:03 +04:00
cp $KCONFIG_CONFIG "$tmpdir/boot/config-$version"
2013-07-03 18:02:05 +04:00
fi
2018-11-05 10:52:34 +03:00
cp "$($MAKE -s -f $srctree/Makefile image_name)" "$tmpdir/$installed_image_path"
2005-04-17 02:20:36 +04:00
2019-03-08 12:56:24 +03:00
if is_enabled CONFIG_OF_EARLY_FLATTREE; then
2015-02-03 15:16:33 +03:00
# Only some architectures with OF support have this target
2018-11-07 17:36:46 +03:00
if [ -d "${srctree}/arch/$SRCARCH/boot/dts" ]; then
2019-02-14 06:05:14 +03:00
$MAKE -f $srctree/Makefile INSTALL_DTBS_PATH="$tmpdir/usr/lib/$packagename" dtbs_install
2015-02-03 15:16:33 +03:00
fi
fi
2019-03-08 12:56:24 +03:00
if is_enabled CONFIG_MODULES; then
2019-02-14 06:05:14 +03:00
INSTALL_MOD_PATH="$tmpdir" $MAKE -f $srctree/Makefile modules_install
2012-02-15 20:38:26 +04:00
rm -f "$tmpdir/lib/modules/$version/build"
rm -f "$tmpdir/lib/modules/$version/source"
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
2013-07-03 18:02:04 +04:00
if [ -n "$BUILD_DEBUG" ] ; then
2014-08-22 17:51:03 +04:00
for module in $(find $tmpdir/lib/modules/ -name *.ko -printf '%P\n'); do
module=lib/modules/$module
mkdir -p $(dirname $dbg_dir/usr/lib/debug/$module)
# only keep debug symbols in the debug file
$OBJCOPY --only-keep-debug $tmpdir/$module $dbg_dir/usr/lib/debug/$module
# strip original module from debug symbols
$OBJCOPY --strip-debug $tmpdir/$module
# then add a link to those
$OBJCOPY --add-gnu-debuglink=$dbg_dir/usr/lib/debug/$module $tmpdir/$module
done
2015-03-16 11:20:54 +03:00
# resign stripped modules
2019-03-08 12:56:24 +03:00
if is_enabled CONFIG_MODULE_SIG_ALL; then
2019-02-14 06:05:14 +03:00
INSTALL_MOD_PATH="$tmpdir" $MAKE -f $srctree/Makefile modules_sign
2015-03-16 11:20:54 +03:00
fi
2013-07-03 18:02:04 +04:00
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
2013-11-15 07:03:25 +04:00
# kernel packages, as well as kernel packages built using make-kpkg.
# make-kpkg sets $INITRD to indicate whether an initramfs is wanted, and
# so do we; recent versions of dracut and initramfs-tools will obey this.
2009-04-23 03:10:10 +04:00
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
2013-11-15 07:03:25 +04:00
# Tell initramfs builder whether it's wanted
2019-03-08 12:56:24 +03:00
export INITRD=$(if_enabled_echo CONFIG_BLK_DEV_INITRD Yes No)
2013-11-15 07:03:25 +04:00
2013-07-03 18:02:06 +04:00
test -d $debhookdir/$script.d && run-parts --arg="$version" --arg="/$installed_image_path" $debhookdir/$script.d
2005-04-17 02:20:36 +04:00
exit 0
EOF
chmod 755 "$tmpdir/DEBIAN/$script"
done
2012-02-15 20:38:27 +04:00
if [ "$ARCH" != "um" ]; then
2020-10-13 21:38:19 +03:00
if is_enabled CONFIG_MODULES; then
deploy_kernel_headers debian/linux-headers
create_package linux-headers-$version debian/linux-headers
fi
2020-01-25 07:12:34 +03:00
2020-01-25 07:12:35 +03:00
deploy_libc_headers debian/linux-libc-dev
create_package linux-libc-dev debian/linux-libc-dev
2012-02-15 20:38:27 +04:00
fi
2009-04-23 03:08:44 +04:00
create_package "$packagename" "$tmpdir"
2005-04-17 02:20:36 +04:00
2013-07-03 18:02:04 +04:00
if [ -n "$BUILD_DEBUG" ] ; then
# Build debug package
# Different tools want the image in different locations
# perf
mkdir -p $dbg_dir/usr/lib/debug/lib/modules/$version/
cp vmlinux $dbg_dir/usr/lib/debug/lib/modules/$version/
# systemtap
mkdir -p $dbg_dir/usr/lib/debug/boot/
ln -s ../lib/modules/$version/vmlinux $dbg_dir/usr/lib/debug/boot/vmlinux-$version
# kdump-tools
ln -s lib/modules/$version/vmlinux $dbg_dir/usr/lib/debug/vmlinux-$version
create_package "$dbg_packagename" "$dbg_dir"
fi
2005-04-17 02:20:36 +04:00
exit 0