Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4964451a authored by Frans Pop's avatar Frans Pop Committed by Sam Ravnborg
Browse files

kbuild, deb-pkg: pass Debian maintainer script parameters to packaging hook scripts



The Debian packaging scripts created by the deb-pkg target do not pass
on the standard Debian maintainer script parameters to hook scripts,
which means that those scripts cannot tell whether they are being called
during e.g. install vs. upgrade, or removal vs. purge of the package.

As there are several variantions in how hook scripts are called from
kernel packages, we pass the parameters in the environment variable
DEB_MAINT_PARAMS rather than as extra arguments.

Bump version of builddep script to 1.3.

Signed-off-by: default avatarFrans Pop <elendil@planet.nl>
Acked-by: default avatarmaximilian attems <max@stro.at>
Cc: Andres Salomon <dilinger@debian.org>
Signed-off-by: default avatarSam Ravnborg <sam@ravnborg.org>
parent a89b433b
Loading
Loading
Loading
Loading
+4 −1
Original line number Original line Diff line number Diff line
#!/bin/sh
#!/bin/sh
#
#
# builddeb 1.2
# builddeb 1.3
# Copyright 2003 Wichert Akkerman <wichert@wiggy.net>
# Copyright 2003 Wichert Akkerman <wichert@wiggy.net>
#
#
# Simple script to generate a deb package for a Linux kernel. All the
# Simple script to generate a deb package for a Linux kernel. All the
@@ -75,6 +75,9 @@ for script in postinst postrm preinst prerm ; do


set -e
set -e


# Pass maintainer script parameters to hook scripts
export DEB_MAINT_PARAMS="\$@"

test -d /etc/kernel/$script.d && run-parts --arg="$version" /etc/kernel/$script.d
test -d /etc/kernel/$script.d && run-parts --arg="$version" /etc/kernel/$script.d
exit 0
exit 0
EOF
EOF