add dpkg.list to assets of the kernel snap

ubuntu/yakkety
Michael Vogt 9 years ago
parent de38cca7b4
commit 5439a48096

6
debian/changelog vendored

@ -1,3 +1,9 @@
livecd-rootfs (2.386) UNRELEASED; urgency=medium
* add dpkg.list to assets of the kernel snap
-- Michael Vogt <michael.vogt@ubuntu.com> Wed, 09 Mar 2016 23:16:55 +0100
livecd-rootfs (2.385) xenial; urgency=medium livecd-rootfs (2.385) xenial; urgency=medium
* add snap building for kernel snaps * add snap building for kernel snaps

@ -491,11 +491,17 @@ EOF
# compress everything # compress everything
cd $TMPDIR cd $TMPDIR
tarname="device.tar.gz" tarname="device.tar.gz"
manifestname="device.manifest"
if [ "$devarch" = "raspi2" ];then if [ "$devarch" = "raspi2" ];then
tarname="raspi2.$tarname" tarname="raspi2.$tarname"
manifestname="$devarch.$manifestname"
fi fi
# create tarfile
tar -c -z -f $HERE/$PREFIX.$tarname system assets hardware.yaml tar -c -z -f $HERE/$PREFIX.$tarname system assets hardware.yaml
# create device specific manifest to track kernel dpkg version
cp assets/dpkg.list $HERE/$PREFIX.$manifestname
# show size of initrd and kernel in the log # show size of initrd and kernel in the log
ls -lh assets/ ls -lh assets/

Loading…
Cancel
Save