Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=fvbe.git;a=commitdiff;h=063cca9988291c4ca2d1958adc3704c9bba35dc1
commit 063cca9988291c4ca2d1958adc3704c9bba35dc1 Author: DeX77 <[email protected]> Date: Wed Aug 17 10:32:44 2016 +0200 * make variables overridable at cmdline diff --git a/fvbe-skel.conf b/fvbe-skel.conf index 48f285a..8e849f8 100644 --- a/fvbe-skel.conf +++ b/fvbe-skel.conf @@ -1,56 +1,56 @@ # the working root directory various tools need -FVBE_ROOT="$(pwd)/root" +: ${FVBE_ROOT:="$(pwd)/root"} # the UI to compile fwsetup with -FVBE_SETUP_UI="newt" +: ${FVBE_SETUP_UI:="newt"} # the locale to use at runtime -FVBE_LOCALE="en_US.utf8" +: ${FVBE_LOCALE:="en_US.utf8"} # the console keyboard layout to use at runtime -FVBE_LAYOUT="us" +: ${FVBE_LAYOUT:="us"} # the console font to use at runtime -FVBE_FONT="ter-v16b" +: ${FVBE_FONT:="ter-v16b"} # the architecture to generate for -FVBE_ARCH="x86_64" +: ${FVBE_ARCH:="x86_64"} # the initial size (in gibibytes) -FVBE_ROOTFS_SIZE="2" +: ${FVBE_ROOTFS_SIZE:="2"} # the pacman-g2 repo to use -FVBE_ROOTFS_REPOSITORY="current" +: ${FVBE_ROOTFS_REPOSITORY:="current"} # the packages or package groups to install -FVBE_ROOTFS_PACKAGES="scriptlet-core base valgrind openssh" +: ${FVBE_ROOTFS_PACKAGES:="scriptlet-core base valgrind openssh"} # the hostname to use at runtime -FVBE_ROOTFS_HOSTNAME="fvbe" +: ${FVBE_ROOTFS_HOSTNAME:="fvbe"} # the pretty hostname to use at runtime -FVBE_ROOTFS_PRETTY_HOSTNAME="Frugalware Versatile Bootable Environment" +: ${FVBE_ROOTFS_PRETTY_HOSTNAME:="Frugalware Versatile Bootable Environment"} # should we remove unimportant files to save space? -FVBE_ROOTFS_CLEAN="yes" +: ${FVBE_ROOTFS_CLEAN:="yes"} # the compression method to use -FVBE_ROOTFS_COMPRESS="xz" +: ${FVBE_ROOTFS_COMPRESS:="xz"} # release of ISO we are building -FVBE_ISO_RELEASE="1.9pre0" +: ${FVBE_ISO_RELEASE:="1.9pre0"} # type of ISO we are building -FVBE_ISO_TYPE="basic" +: ${FVBE_ISO_TYPE:="basic"} # package groups to include on the ISO -FVBE_ISO_PACKAGES="base" +: ${FVBE_ISO_PACKAGES:="base"} # specify if we are to use video or serial IO mode -FVBE_ISO_IO_MODE="video" +: ${FVBE_ISO_IO_MODE:="video"} # use this to configure the serial port for grub -FVBE_ISO_IO_SERIAL_GRUB="serial --unit=0 --speed=115200" +: ${FVBE_ISO_IO_SERIAL_GRUB:="serial --unit=0 --speed=115200"} # use this to configure the serial port for linux -FVBE_ISO_IO_SERIAL_LINUX="console=ttyS0,115200" +: ${FVBE_ISO_IO_SERIAL_LINUX:="console=ttyS0,115200"} _______________________________________________ Frugalware-git mailing list [email protected] http://frugalware.org/mailman/listinfo/frugalware-git
