You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
livecd-rootfs/live-build/ubuntu-core/hooks/09-move-kernel-to-device-ta...

22 lines
514 B

#!/bin/sh
set -e
echo "Moving kernel into device tarball"
# remove the kernel, its part of the bootimg
HERE=$(pwd)
(cd binary/boot/filesystem.dir && \
tar czf $HERE/device.tar.gz \
boot/vmlinu?-* \
boot/initrd.img-* \
vmlinu? \
initrd.img \
lib/modules/ )
rm -f binary/boot/filesystem.dir/boot/vmlinu?-*
rm -f binary/boot/filesystem.dir/boot/initrd.img-*
rm -f binary/boot/filesystem.dir/initrd.img
rm -f binary/boot/filesystem.dir/vmlinu?
rm -rf binary/boot/filesystem.dir/lib/modules