Message ID | 1371203217-19572-5-git-send-email-anisse@astier.eu (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
On Fri, Jun 14, 2013 at 11:46:57AM +0200, Anisse Astier wrote: > We now provide the installed image path to the kernel hooks. > > This should allow the package to better integrate with debian hooks, and > should not be too disruptive of hooks supporting only one parameter. > > Signed-off-by: Anisse Astier <anisse@astier.eu> > Reviewed-by: Ben Hutchings <ben@decadent.org.uk> Acked-by: maximilian attems <max@stro.at> > --- > scripts/package/builddeb | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/scripts/package/builddeb b/scripts/package/builddeb > index 0dbada8..06cd0c7 100644 > --- a/scripts/package/builddeb > +++ b/scripts/package/builddeb > @@ -184,7 +184,7 @@ set -e > # Pass maintainer script parameters to hook scripts > export DEB_MAINT_PARAMS="\$*" > > -test -d $debhookdir/$script.d && run-parts --arg="$version" $debhookdir/$script.d > +test -d $debhookdir/$script.d && run-parts --arg="$version" --arg="/$installed_image_path" $debhookdir/$script.d > exit 0 > EOF > chmod 755 "$tmpdir/DEBIAN/$script" > -- > 1.8.3.rc1 > > > -- > To UNSUBSCRIBE, email to debian-kernel-REQUEST@lists.debian.org > with a subject of "unsubscribe". Trouble? Contact listmaster@lists.debian.org > Archive: http://lists.debian.org/1371203217-19572-5-git-send-email-anisse@astier.eu > -- To unsubscribe from this list: send the line "unsubscribe linux-kbuild" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/scripts/package/builddeb b/scripts/package/builddeb index 0dbada8..06cd0c7 100644 --- a/scripts/package/builddeb +++ b/scripts/package/builddeb @@ -184,7 +184,7 @@ set -e # Pass maintainer script parameters to hook scripts export DEB_MAINT_PARAMS="\$*" -test -d $debhookdir/$script.d && run-parts --arg="$version" $debhookdir/$script.d +test -d $debhookdir/$script.d && run-parts --arg="$version" --arg="/$installed_image_path" $debhookdir/$script.d exit 0 EOF chmod 755 "$tmpdir/DEBIAN/$script"