#
# You must define certain environment variables in this file
#  so that the scripts know where to find things.
#

CWD=`pwd`

# 
# Set your home directory here (do not use $HOME !!!)
#   This is used when coping your desktop files to the
#   USB key.
#
MY_HOME=

#
# The device name of your USB device (e.g. /dev/sda)
#  You can find it by plugging it in then doing
#
#    fdisk -l
#
# If you are unsure remove the USB device and rerun the fdisk -l
# If you get this wrong, your harddisk could be wiped out.
# It is probably "/dev/sda" or "/dev/sdb" or "/dev/sdc", however, on my latest
# machine (HP Pavilion), it is /dev/sdg (see the lsscsi listing below)
#
# [0:0:0:0]    disk    ATA      WDC WD6400AAKS-6 01.0  /dev/sda
# [1:0:0:0]    cd/dvd  HL-DT-ST BDDVDRW GBC-H20L 1.B8  /dev/scd0
# [2:0:0:0]    disk    ATA      WDC WD6400AAKS-6 01.0  /dev/sdb
# [6:0:0:0]    disk    Generic- Compact Flash    1.00  /dev/sdc
# [6:0:0:1]    disk    Generic- SM/xD-Picture    1.00  /dev/sdd
# [6:0:0:2]    disk    Generic- SD/MMC           1.00  /dev/sde
# [6:0:0:3]    disk    Generic- MS/MS-Pro        1.00  /dev/sdf
# [7:0:0:0]    disk    Crucial  Gizmo!           1100  /dev/sdg
#
USB_DEV=

#
# When your USB key is mounted, what is the mount directory?
#
MOUNT_POINT=/media

#
# This is where you downloaded the USB boot image
#
BOOT_IMAGE=${CWD}/kubuntu8.tar.gz

#
# Disk image of boot partition of USB key -- this is where you 
#   unpacked the kubuntu8.tar.bz2 image.  Unpacking the image
#   is not necessary unless you want to change it.
#
DISK_IMAGE=${CWD}/kubuntu8

#
# If you are remastering a Ubuntu or Kubuntu ISO (not normally done)
# Point to the ISO image
#  Used when picking apart a new ISO (i.e. upgrade or something)
#
ISO_IMAGE=

#
# Partition 1 (kubuntu) size
#
SIZE_PART1="+750M"

#
# Partition 2 (casper-rw) size
#
SIZE_PART2="+1000M"

#
# Partition 3 uses whatever is left on the USB key
