* Various little modifications.
This commit is contained in:
parent
6497c50622
commit
c726de1585
|
@ -10,8 +10,7 @@ available in the CVS.
|
|||
|
||||
http://cvs.debian.org/debian-cd/
|
||||
|
||||
$ export CVSROOT=anonymous@cvs.debian.org:/cvs/debian-boot
|
||||
$ cvs co debian-cd
|
||||
$ cvs -d :pserver:anonymous@cvs.debian.org:/cvs/debian-boot co debian-cd
|
||||
|
||||
If you want to discuss anything related to the debian-cd development, you
|
||||
can contact me directly or, better, you can mail the
|
||||
|
@ -54,9 +53,6 @@ Log files :
|
|||
TODO list :
|
||||
-----------
|
||||
+ 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)
|
||||
+ possibility to add project/* to the last CD
|
||||
+ check the source files on the mirror (with Sources.gz)
|
||||
|
|
|
@ -28,3 +28,6 @@ libterm-stool-perl
|
|||
libterm-readline-gnu-perl
|
||||
whiptail
|
||||
dialog
|
||||
grub
|
||||
libsasl-modules
|
||||
util-linux-locales
|
||||
|
|
|
@ -26,7 +26,7 @@ fi
|
|||
|
||||
# Get real name of current disks directory
|
||||
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
|
||||
mkdir -p boot1/boot
|
||||
|
|
|
@ -220,6 +220,12 @@ if [ -n "$LOCAL" ]; then
|
|||
dpkg-scanpackages -m "`cat .disk/info`" \
|
||||
dists/$CODENAME/local/binary-$ARCH \
|
||||
/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
|
||||
|
||||
exit 0
|
||||
|
|
Loading…
Reference in New Issue