From 647718ddf6d355e5c2b53cd3d5317df540996314 Mon Sep 17 00:00:00 2001 From: Natanael Copa Date: Fri, 19 Jan 2018 01:33:11 +0000 Subject: update-kernel: handle -vanilla suffix in System.map, config and vmlinuz Previously the vanilla kernel did not add any suffix to System.map, config and vmlinuz for the vanilla kernel, but it does now. Fix update-kernel to handle both cases. Note also that /lib/modules/$ver still does not have any -vanilla suffix. --- update-kernel.in | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/update-kernel.in b/update-kernel.in index dc78782..0d20371 100644 --- a/update-kernel.in +++ b/update-kernel.in @@ -259,7 +259,11 @@ mkinitfs $MKINITFS_ARGS -q -b $ROOT -F "$features base squashfs" \ -o "$STAGING/initramfs-$FLAVOR" "$KVER" for file in System.map config vmlinuz; do - cp "$BOOT/$file$KVER_FLAVOR" $STAGING + if [ -f "$BOOT/$file-$FLAVOR" ]; then + cp "$BOOT/$file-$FLAVOR" $STAGING + else + cp "$BOOT/$file" $STAGING + fi done if [ "$MNTDIR" ]; then -- cgit v1.2.3