1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185
|
#! /bin/sh
set -e
## Wrapper script for build.sh
## See README.easy-build for instructions how to use this script.
## See also CONF.sh for the meaning of variables used here.
show_usage() {
echo "Usage: $(basename $0) [OPTIONS] BC|NETINST|CD|DVD [<ARCH> ...]"
echo " Options:"
echo " -d gnome|kde|lxde|xfce|light|all : desktop variant (task) to use"
echo " -V <variant> : extra image variants to enable"
echo " -h : help"
}
# Set configuration file to be used for the build and source it
export CF=./CONF.sh
. $CF
export DEBIAN_CD_CONF_SOURCED=true
unset UPDATE_LOCAL
## Parse the parameters passed to the script
if [ $# -eq 0 ]; then
show_usage
exit 1
fi
desktop=
VARIANTS=
while getopts d:hV: OPT; do
case $OPT in
d)
case $OPTARG in
# Note: "gnome" is the special gnome task, not the generic task
gnome|kde|lxde|xfce|light|all)
desktop=$2
;;
*)
show_usage
exit 1
;;
esac ;;
V)
VARIANTS="${VARIANTS:+$VARIANTS }$OPTARG"
;;
h)
show_usage
exit 0
;;
\?)
show_usage
exit 1
;;
esac
done
shift $(($OPTIND - 1))
export VARIANTS
export DISKTYPE="$1"
shift
# The architecture(s) for which to build the CD/DVD image
if [ "$1" ]; then
ARCHES="$@"
else
ARCHES=i386
fi
## For what release to build images
# The suite the installed system will be based on
export CODENAME=wheezy
# The suite from which the udebs for the installer will be taken (normally
# the same as CODENAME)
export DI_CODENAME=wheezy
## The debian-installer images to use. This must match the suite (DI_CODENAME)
## from which udebs will be taken.
## Use *only one* of the next four settings. The "%ARCH%" placeholder in the
## 2nd and 4th options will be magically expanded at runtime.
## See also: tools/boot/<codename>/boot-$ARCH scripts.
# Use official images from the local mirror
export DI_DIST=$DI_CODENAME
# or, use official images from an outside mirror
#export DI_WWW_HOME="http://ftp.nl.debian.org/debian/dists/$DI_CODENAME/main/installer-%ARCH%/current/images/"
# or, use daily built d-i images (most from http://people.debian.org)
#export DI_WWW_HOME=default
# or, use custom / locally built images
#export DI_DIR="$HOME/d-i_images/%ARCH%"
## Other options
# Include local packages in the build
#export LOCAL=1
# Automatically update the Packages file(s) for the "local" repository?
#UPDATE_LOCAL=1
# Number of CD/DVDs to build; comment out to build full set
MAX_CDS=1
MAX_DVDS=1
# Only create the ISO files; don't create jigdo files
#export MAXISOS=0
export MAXJIGDOS=0
## Options that include CODENAME should be set here if needed, not in CONF.sh
# Include proposed-updates
#export PROPOSED_UPDATES=$CODENAME-proposed-updates
#export UDEB_INCLUDE="$BASEDIR"/data/$CODENAME/udeb_include
#export UDEB_EXCLUDE="$BASEDIR"/data/$CODENAME/udeb_exclude
#export BASE_INCLUDE="$BASEDIR"/data/$CODENAME/base_include
#export BASE_EXCLUDE="$BASEDIR"/data/$CODENAME/base_exclude
#export SPLASHPNG="$BASEDIR/data/$CODENAME/splash-img.png"
#export RELEASE_NOTES_LOCATION="http://www.debian.org/releases/$CODENAME"
## The rest of the script should just work without any changes
# Set variables that determine the type of image to be built
case $DISKTYPE in
BC)
export INSTALLER_CD=1
;;
NETINST)
export INSTALLER_CD=2
;;
CD)
unset INSTALLER_CD
[ -z "$MAX_CDS" ] || export MAXCDS=$MAX_CDS
;;
DVD)
export INSTALLER_CD=3
[ -z "$MAX_DVDS" ] || export MAXCDS=$MAX_DVDS
;;
*)
show_usage
exit 1
;;
esac
# By default a GNOME CD/DVD is built, but other desktops are supported too
if [ "$desktop" ]; then
if [ ! -e tasks/$CODENAME/task.list.$desktop ]; then
echo "Error: desktop '$desktop' is not supported for $CODENAME"
exit 1
fi
if [ "$desktop" = all ] && [ $DISKTYPE = CD ]; then
echo
echo "WARNING: CD1 by itself can never support installing all desktops!"
echo
fi
if [ $DISKTYPE != BC ] && [ $DISKTYPE != NETINST ]; then
export TASK=Debian-$desktop
fi
if [ "$CODENAME" = etch ]; then
KERNEL_PARAMS="tasks=\"$desktop-desktop, standard\""
else
KERNEL_PARAMS="desktop=$desktop"
fi
DESKTOP=$desktop
export KERNEL_PARAMS DESKTOP
fi
if [ "$LOCAL" ] && [ "$UPDATE_LOCAL" ]; then
echo "Updating Packages files for local repository..."
for arch in $ARCHES; do
./tools/Packages-gen $CODENAME $arch
./tools/Packages-gen -i $DI_CODENAME $arch
done
echo
fi
echo "Starting the actual debian-cd build..."
./build.sh "$ARCHES"
|