19 lines
302 B
Bash
Executable File
19 lines
302 B
Bash
Executable File
#!/bin/sh
|
|
# vim: set sw=4 ts=4 sts=4 et :
|
|
|
|
set -e
|
|
|
|
. "${CONFIGDIR:=${PWD}}"/config
|
|
|
|
IMAGESDIR="${1}"
|
|
|
|
mkdir -p "${IMAGESDIR}"
|
|
mksquashfs \
|
|
/mnt/gentoo \
|
|
"${IMAGESDIR}"/rootfs.squashfs \
|
|
-comp gzip \
|
|
-ef "${CONFIGDIR}"/squashfs.exclude \
|
|
-no-exports \
|
|
-noappend \
|
|
-wildcards
|