* Applied patch from Robert Millan <rmh@aybabtu.com> to allow choice of
desktop when building for win32-loader. Closes: #491300.
This commit is contained in:
parent
67c3c92f90
commit
b402ea3ba7
8
CONF.sh
8
CONF.sh
|
@ -103,7 +103,7 @@ fi
|
|||
export MIRROR=/mirror/debian
|
||||
|
||||
# Path of the temporary directory
|
||||
export TDIR=/mirror/tmp
|
||||
export TDIR=/mirror/tmp/test
|
||||
|
||||
# Path where the images will be written
|
||||
export OUT=/mirror/debian-cd-test
|
||||
|
@ -157,6 +157,7 @@ export CONTRIB=1
|
|||
# export MKISOFS=mkisofs
|
||||
# export MKISOFS_OPTS="-r" #For normal users
|
||||
# export MKISOFS_OPTS="-r -F ." #For symlink farmers
|
||||
export MKISOFS=/home/steve/mkisofs
|
||||
|
||||
# ISOLinux support for multiboot on CD1 for i386
|
||||
export ISOLINUX=1
|
||||
|
@ -203,7 +204,7 @@ export NORECOMMENDS=1
|
|||
# 0/unset = Don't do jigdo at all, produce only the full iso image.
|
||||
# 1 = Produce both the iso image and jigdo stuff.
|
||||
# 2 = Produce only the jigdo stuff
|
||||
export DOJIGDO=1
|
||||
export DOJIGDO=2
|
||||
|
||||
# HTTP/FTP URL for directory where you intend to make the templates
|
||||
# available. You should not need to change this; the default value ""
|
||||
|
@ -300,6 +301,9 @@ done
|
|||
# supported for all architectures.
|
||||
#export KERNEL_PARAMS="DEBCONF_PRIORITY=critical"
|
||||
|
||||
# Default desktop (currently only used by win32-loader)
|
||||
#export DESKTOP=kde
|
||||
|
||||
# If set, limits the number of binary CDs to produce.
|
||||
#export MAXCDS=1
|
||||
|
||||
|
|
|
@ -293,6 +293,9 @@ done
|
|||
# supported for all architectures.
|
||||
#export KERNEL_PARAMS="DEBCONF_PRIORITY=critical"
|
||||
|
||||
# Default desktop (currently only used by win32-loader)
|
||||
#export DESKTOP=kde
|
||||
|
||||
# If set, limits the number of binary CDs to produce.
|
||||
#export MAXCDS=1
|
||||
|
||||
|
|
|
@ -77,6 +77,10 @@ debian-cd (3.0.5) UNRELEASED; urgency=low
|
|||
* Disable zd1211-firmware as its dependencies currently
|
||||
break d-i. (See #492205)
|
||||
|
||||
[ Steve McIntyre ]
|
||||
* Applied patch from Robert Millan <rmh@aybabtu.com> to allow choice of
|
||||
desktop when building for win32-loader. Closes: #491300.
|
||||
|
||||
-- Frans Pop <fjp@debian.org> Fri, 18 Jul 2008 17:30:42 +0200
|
||||
|
||||
debian-cd (3.0.4) unstable; urgency=low
|
||||
|
|
|
@ -203,6 +203,9 @@ if [ "$THISTYPE" = "isolinux" ]; then
|
|||
|
||||
if [ -e boot$N/win32-loader.ini ] ; then
|
||||
sed -i "s|install/|$INSTALLDIR/|" boot$N/win32-loader.ini
|
||||
if [ "${DESKTOP}" ] ; then
|
||||
sed -i "s|^\(default_desktop\)=.*|\1=${DESKTOP}|" boot$N/win32-loader.ini
|
||||
fi
|
||||
fi
|
||||
|
||||
cp -f $BASEDIR/data/$DI_CODENAME/isolinux.bin boot$N/$ISOLINUXDIR/
|
||||
|
|
Loading…
Reference in New Issue