On Tue, 2013-05-07 at 17:46 +0200, Anisse Astier wrote: > Signed-off-by: Anisse Astier <anisse@xxxxxxxxx> > --- > scripts/package/builddeb | 25 ++++++++++++++++++------- > 1 file changed, 18 insertions(+), 7 deletions(-) > > diff --git a/scripts/package/builddeb b/scripts/package/builddeb > index 797484b..73bb551 100644 > --- a/scripts/package/builddeb > +++ b/scripts/package/builddeb > @@ -89,6 +89,18 @@ if [ "$ARCH" = "um" ] ; then > packagename=user-mode-linux-$version > fi > > +# Not all arches have the same installed path in debian > +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 [...] This certainly matches the naming we use in official Debian kernel packages. The intent was, I think, to match what 'make install' would do, but with the version suffix. We've diverged from that slightly in that some MIPS platforms now support compressed kernel images which are installed as vmlinuz. So, you can consider this: Reviewed-by: Ben Hutchings <ben@xxxxxxxxxxxxxxx> However I think we could improve on this by making each architecture Makefile define the canonical installed name of the kernel image. Ben. -- Ben Hutchings For every action, there is an equal and opposite criticism. - Harrison
Attachment:
signature.asc
Description: This is a digitally signed message part