]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/commit
kbuild/mkspec: fix grub2 installkernel issue
authorJiri Kosina <jkosina@suse.cz>
Fri, 26 Feb 2016 15:15:17 +0000 (16:15 +0100)
committerMichal Marek <mmarek@suse.com>
Fri, 26 Feb 2016 15:22:32 +0000 (16:22 +0100)
commitc8b08ca558c0067bc9e15ce3f1e70af260410bb2
treeb59dbcd6c29ab0a6d0c8acb4d7f6ad6775065610
parentc5eda8fd10c64720d5232189f812a3b1cc983b8b
kbuild/mkspec: fix grub2 installkernel issue

mkspec is copying built kernel to temporrary location

/boot/vmlinuz-$KERNELRELEASE-rpm

and runs installkernel on it. This however directly leads to grub2
menuentry for this suffixed binary being generated as well during the run
of installkernel script.

Later in the process the temporary -rpm suffixed files are removed, and
therefore we end up with spurious (and non-functional) grub2 menu entries
for each installed kernel RPM.

Fix that by using a different temporary name (prefixed by '.'), so that
the binary is not recognized as an actual kernel binary and no menuentry
is created for it.

Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Fixes: 3c9c7a14b627 ("rpm-pkg: add %post section to create initramfs and grub hooks")
Signed-off-by: Michal Marek <mmarek@suse.com>
scripts/package/mkspec