cookutils diff cookiso.conf @ rev 538

libcookiso.sh: Fixed some mistakes.
author Christopher Rogers <slaxemulator@gmail.com>
date Sun Sep 23 10:29:05 2012 +0000 (2012-09-23)
parents a1d274eeaf00
children 48d59c7cd0b6
line diff
     1.1 --- a/cookiso.conf	Fri Aug 24 22:05:20 2012 +0000
     1.2 +++ b/cookiso.conf	Sun Sep 23 10:29:05 2012 +0000
     1.3 @@ -31,5 +31,20 @@
     1.4  # to copy into the rootfs and rootcd of the LiveCD.
     1.5  ADDFILES="$DISTRO/addfiles"
     1.6  
     1.7 +# To enable slitaz-modular
     1.8 +MODULAR=""
     1.9 +
    1.10 +# part of slitaz-modular
    1.11 +OVERLAY="$ADDFILES/rootfs"
    1.12 +
    1.13 +# Set the rootfs and rootcd path with $DISTRO
    1.14 +# configuration variable.
    1.15 +if [ "$MODULAR" ]; then
    1.16 +	ROOTFS=$DISTRO/modular
    1.17 +else
    1.18 +	ROOTFS=$DISTRO/rootfs
    1.19 +fi
    1.20 +ROOTCD=$DISTRO/rootcd
    1.21 +
    1.22  # Qemu emulator options for the command: emu-iso
    1.23  QEMU_OPTS="-m 256"