Import patches-unapplied version 2.315 to ubuntu/wily-proposed

Imported using git-ubuntu import.

Changelog parent: c9f12e25b1

New changelog entries:
  * live-build/ubuntu-core/hooks/500-move-kernel-to-device-tar.binary,
    live-build/ubuntu-desktop-next/hooks/500-move-kernel-to-device-tar.binary,:
    - deal with vmlinuz .signed when copying kernels
impish
Sebastien Bacher 10 years ago committed by usd-importer
parent c9f12e25b1
commit 426cc7e1e5

8
debian/changelog vendored

@ -1,3 +1,11 @@
livecd-rootfs (2.315) wily; urgency=medium
* live-build/ubuntu-core/hooks/500-move-kernel-to-device-tar.binary,
live-build/ubuntu-desktop-next/hooks/500-move-kernel-to-device-tar.binary,:
- deal with vmlinuz .signed when copying kernels
-- Sebastien Bacher <seb128@ubuntu.com> Thu, 11 Jun 2015 17:53:01 +0200
livecd-rootfs (2.314) wily; urgency=medium livecd-rootfs (2.314) wily; urgency=medium
[ Iain Lane ] [ Iain Lane ]

@ -27,7 +27,11 @@ mkdir -p $TMPDIR/assets/
# new assets handling # new assets handling
# FIXME: # FIXME:
# - how to keep version information (and do we care) # - how to keep version information (and do we care)
cp -ar boot/vmlinu?-* $TMPDIR/assets/vmlinuz if [ -f boot/vmlinu?-*.signed ]; then
cp -ar boot/vmlinu?-*.signed $TMPDIR/assets/vmlinuz
else
cp -ar boot/vmlinu?-* $TMPDIR/assets/vmlinuz
fi
cp -ar boot/initrd.img-* $TMPDIR/assets/initrd.img cp -ar boot/initrd.img-* $TMPDIR/assets/initrd.img
cp -ar boot/abi-* boot/System.map-* $TMPDIR/assets/ cp -ar boot/abi-* boot/System.map-* $TMPDIR/assets/

@ -27,7 +27,11 @@ mkdir -p $TMPDIR/assets/
# new assets handling # new assets handling
# FIXME: # FIXME:
# - how to keep version information (and do we care) # - how to keep version information (and do we care)
cp -ar boot/vmlinu?-* $TMPDIR/assets/vmlinuz if [ -f boot/vmlinu?-*.signed ]; then
cp -ar boot/vmlinu?-*.signed $TMPDIR/assets/vmlinuz
else
cp -ar boot/vmlinu?-* $TMPDIR/assets/vmlinuz
fi
cp -ar boot/initrd.img-* $TMPDIR/assets/initrd.img cp -ar boot/initrd.img-* $TMPDIR/assets/initrd.img
cp -ar boot/abi-* boot/System.map-* $TMPDIR/assets/ cp -ar boot/abi-* boot/System.map-* $TMPDIR/assets/

Loading…
Cancel
Save