23 lines
512 B
23 lines
512 B
#!/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
|
|
|
|
. config/functions
|
|
|
|
# This is the directory created by create-root-dir.binary
|
|
rootfs_dir=rootfs.dir
|
|
|
|
squashfs_f="$PWD/livecd.ubuntu-cpc.squashfs"
|
|
|
|
cp $rootfs_dir.manifest $squashfs_f.manifest
|
|
# fstab is omitted from the squashfs
|
|
grep -v '^/etc/fstab$' $rootfs_dir.filelist >$squashfs_f.filelist
|
|
|
|
create_squashfs $rootfs_dir $squashfs_f
|