cookutils view cookiso.conf @ rev 558

Makefile: Fixed permissions of tazdev.conf.
author Christopher Rogers <slaxemulator@gmail.com>
date Thu Nov 22 16:24:45 2012 +0000 (2012-11-22)
parents cab55ddc0418
children
line source
1 # cookiso.conf: cookiso (SliTaz Live Tool)
2 # configuration file.
3 #
5 # this is to make SLITAZ_RELEASE variable works
6 . /etc/slitaz/slitaz.conf
8 # Name of the ISO image to generate.
9 ISO_NAME="slitaz-$SLITAZ_RELEASE"
10 #ISO_NAME="slitaz-cooking-`date +%Y%m%d`"
12 # ISO image volume name.
13 VOLUM_NAME="SliTaz LiveCD"
15 # Name of the preparer.
16 PREPARED="$USER"
18 # Tazlito work directory with flavors, distro and packages files.
19 WORK_DIR="$SLITAZ"
21 # Path to the packages repository and the packages.list.
22 PACKAGES_REPOSITORY="$WORK_DIR/packages"
24 # Path to the distro tree to gen-distro from a list of packages.
25 DISTRO="$WORK_DIR/distro"
27 # Path to the LiveCD flavors files (http://hg.slitaz.org/flavors)
28 FLAVORS_REPOSITORY=$WORK_DIR/flavors
30 # Path to the directory containing additional files
31 # to copy into the rootfs and rootcd of the LiveCD.
32 ADDFILES="$DISTRO/addfiles"
34 # To enable slitaz-modular
35 MODULAR=""
37 # part of slitaz-modular
38 OVERLAY="$ADDFILES/rootfs"
40 # Set the rootfs and rootcd path with $DISTRO
41 # configuration variable.
42 if [ "$MODULAR" ]; then
43 ROOTFS=$DISTRO/modular
44 else
45 ROOTFS=$DISTRO/rootfs
46 fi
47 ROOTCD=$DISTRO/rootcd
49 # Qemu emulator options for the command: emu-iso
50 QEMU_OPTS="-m 256"