* Various little modifications.

This commit is contained in:
Raphaël Hertzog 2001-08-16 16:37:23 +00:00
parent 6497c50622
commit c726de1585
4 changed files with 11 additions and 6 deletions

View File

@ -10,8 +10,7 @@ available in the CVS.
http://cvs.debian.org/debian-cd/ http://cvs.debian.org/debian-cd/
$ export CVSROOT=anonymous@cvs.debian.org:/cvs/debian-boot $ cvs -d :pserver:anonymous@cvs.debian.org:/cvs/debian-boot co debian-cd
$ cvs co debian-cd
If you want to discuss anything related to the debian-cd development, you If you want to discuss anything related to the debian-cd development, you
can contact me directly or, better, you can mail the can contact me directly or, better, you can mail the
@ -54,9 +53,6 @@ Log files :
TODO list : TODO list :
----------- -----------
+ put the doc directory only on the first binary CD + put the doc directory only on the first binary CD
+ be able to use an alternate location for the boot disks
(in order to use i18ned boot disks and to more easily
test debian-cd with CVS version of the boot-floppies)
+ a way to force the inclusion of packages (even broken) + a way to force the inclusion of packages (even broken)
+ possibility to add project/* to the last CD + possibility to add project/* to the last CD
+ check the source files on the mirror (with Sources.gz) + check the source files on the mirror (with Sources.gz)

View File

@ -28,3 +28,6 @@ libterm-stool-perl
libterm-readline-gnu-perl libterm-readline-gnu-perl
whiptail whiptail
dialog dialog
grub
libsasl-modules
util-linux-locales

View File

@ -26,7 +26,7 @@ fi
# Get real name of current disks directory # Get real name of current disks directory
DISKSDIR=$CDDIR/dists/$CODENAME/main/disks-$ARCH DISKSDIR=$CDDIR/dists/$CODENAME/main/disks-$ARCH
DISKSVER=$(readlink $DISKSDIR/current) DISKSVER=$(if ! readlink $DISKSDIR/current; then echo current; fi)
# Put CD boot image into place # Put CD boot image into place
mkdir -p boot1/boot mkdir -p boot1/boot

View File

@ -220,6 +220,12 @@ if [ -n "$LOCAL" ]; then
dpkg-scanpackages -m "`cat .disk/info`" \ dpkg-scanpackages -m "`cat .disk/info`" \
dists/$CODENAME/local/binary-$ARCH \ dists/$CODENAME/local/binary-$ARCH \
/dev/null > $PREFIX.Packages-local /dev/null > $PREFIX.Packages-local
if [ -d pool/local ]
then
dpkg-scanpackages -m "`cat .disk/info`" \
pool/local /dev/null >> $PREFIX.Packages-local
fi
fi fi
exit 0 exit 0