22 lines
486 B
Plaintext
Raw Permalink Normal View History

#!/bin/bash -ex
# vi: ts=4 noexpandtab
#
# Generate a squashfs root and manifest
if [ -n "$SUBARCH" ]; then
echo "Skipping rootfs build for subarch flavor build"
exit 0
fi
# This is the directory created by create-root-dir.binary
rootfs_dir=rootfs.dir
2018-06-07 16:24:29 -07:00
squashfs_f="$PWD/livecd.ubuntu-cpc.squashfs"
2018-06-07 16:24:29 -07:00
cp $rootfs_dir.manifest $squashfs_f.manifest
cp $rootfs_dir.filelist $squashfs_f.filelist
2018-06-07 16:24:29 -07:00
(cd $rootfs_dir &&
mksquashfs . $squashfs_f \
-no-progress -xattrs -comp xz )