- Apply patch from horms@debian.org to fix #258029. Problems with
inclusion of local udebs.
This commit is contained in:
parent
e088707860
commit
293e3bf557
|
@ -7,6 +7,8 @@ debian-cd (2.2.21) UNRELEASED; urgency=low
|
|||
put myself into Uploaders (as well as Santiago Garcia Mantinan & Steve
|
||||
McIntyre). That's because I'm not keeping up well enough with debian-cd
|
||||
and I need more people involved in managing bugs.
|
||||
- Apply patch from Horms <horms@debian.org> to fix some problems with
|
||||
inclusion of local udebs. Closes: #258029
|
||||
* Joey Hess
|
||||
- Exclude all the new amd64 kernel images from cd #1, no space.
|
||||
- Forgot to exclude old kernel-image-2.6.7-1-686-smp from cd #1.
|
||||
|
@ -74,7 +76,7 @@ debian-cd (2.2.21) UNRELEASED; urgency=low
|
|||
libgpg-error0, libtasn1-2: new libraries
|
||||
- console-tools: now installed by debootstrap even on s390
|
||||
|
||||
-- Joey Hess <joeyh@debian.org> Mon, 25 Oct 2004 03:03:36 -0400
|
||||
-- Raphael Hertzog <hertzog@debian.org> Wed, 12 Jan 2005 17:07:56 +0100
|
||||
|
||||
debian-cd (2.2.20) unstable; urgency=medium
|
||||
|
||||
|
|
|
@ -44,6 +44,10 @@ if [ "${NONFREE:-0}" != "0" ]; then
|
|||
mkdir -p dists/$CODENAME/non-free/binary-$ARCH
|
||||
mkdir -p dists/$CODENAME/non-free/source
|
||||
fi
|
||||
|
||||
if [ -n "$LOCAL" -a -e "${LOCALDEBS:-$MIRROR}/dists/$DI_CODENAME/local/debian-installer" ]; then
|
||||
mkdir -p dists/$CODENAME/local/debian-installer/binary-$ARCH
|
||||
fi
|
||||
if [ -e "$MIRROR/dists/$DI_CODENAME/main/debian-installer" ]; then
|
||||
mkdir -p dists/$CODENAME/main/debian-installer/binary-$ARCH
|
||||
fi
|
||||
|
@ -74,3 +78,7 @@ if [ -n "$NONUS" ]; then
|
|||
fi
|
||||
fi
|
||||
|
||||
if [ -n "$LOCAL" ]; then
|
||||
mkdir -p dists/$CODENAME/local/binary-$ARCH
|
||||
mkdir -p dists/$CODENAME/local/source
|
||||
fi
|
||||
|
|
|
@ -221,6 +221,7 @@ if [ -n "$LOCAL" -a -e "${LOCALDEBS:-$MIRROR}/dists/$DI_CODENAME/local/debian-in
|
|||
cat >>$PREFIX.generate-binary-debian-installer <<EOF
|
||||
|
||||
Tree "dists/$CODENAME/local" {
|
||||
FileList "$PREFIX.filelist_local";
|
||||
Sections "debian-installer";
|
||||
Architectures "$ARCH";
|
||||
|
||||
|
|
Loading…
Reference in New Issue