Commit c95182bf9bd2df55739b187df8e972cb6cbee895

Authored by Anisse Astier
Committed by Michal Marek
1 parent 9de7017644

deb-pkg: add a hook argument to match debian hooks parameters

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>
Signed-off-by: Michal Marek <mmarek@suse.cz>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

scripts/package/builddeb
... ... @@ -184,7 +184,7 @@
184 184 # Pass maintainer script parameters to hook scripts
185 185 export DEB_MAINT_PARAMS="\$*"
186 186  
187   -test -d $debhookdir/$script.d && run-parts --arg="$version" $debhookdir/$script.d
  187 +test -d $debhookdir/$script.d && run-parts --arg="$version" --arg="/$installed_image_path" $debhookdir/$script.d
188 188 exit 0
189 189 EOF
190 190 chmod 755 "$tmpdir/DEBIAN/$script"