Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=fvbe.git;a=commitdiff;h=cb677034d1544c7a19adadb5b259a0739e2a3665
commit cb677034d1544c7a19adadb5b259a0739e2a3665 Author: crazy <[email protected]> Date: Wed Apr 27 12:29:52 2016 +0200 create-rootfs - added some checks for apps we need to create the isos diff --git a/bin/create-rootfs b/bin/create-rootfs index 0fa0335..33d13fc 100755 --- a/bin/create-rootfs +++ b/bin/create-rootfs @@ -9,6 +9,16 @@ if [ "$(id -u)" -ne 0 ]; then exit 1 fi +if [ ! -e /usr/bin/mksquashfs ]; then + echo "mksquashfs is missing" + exit 1 +} + +if [ ! -e /usr/bin/xorriso ]; then + echo "xorriso is missing" + exit 1 +fi + if [ "$FVBE_ROOTFS_REPOSITORY" = "current" ]; then FDB=frugalware-current.fdb MIRROR="http://ftp.frugalware.org/pub/frugalware/frugalware-current/frugalware-$FVBE_ARCH" _______________________________________________ Frugalware-git mailing list [email protected] http://frugalware.org/mailman/listinfo/frugalware-git
