merged changes from debian-cd trunk to debian-edu branch
remove debian-edu task since it is linked into place from a generated file in the debian-edu CD build system
This commit is contained in:
parent
f270a74ade
commit
c004f12da1
23
CONF.sh
23
CONF.sh
|
@ -48,8 +48,8 @@ unset SPLASHPNG || true
|
|||
# Where I am (hoping I'm in the debian-cd dir)
|
||||
export BASEDIR=`pwd`
|
||||
|
||||
# Building woody cd set ...
|
||||
export CODENAME=woody
|
||||
# Building sarge cd set ...
|
||||
export CODENAME=sarge
|
||||
|
||||
# By default use Debian installer packages from $CODENAME
|
||||
if [ ! "$DI_CODENAME" ]
|
||||
|
@ -57,8 +57,14 @@ then
|
|||
export DI_CODENAME=$CODENAME
|
||||
fi
|
||||
|
||||
# If set, controls where the d-i components are downloaded from.
|
||||
# This may be an url, or "default", which will make it use the default url
|
||||
# for the daily d-i builds. If not set, uses the official d-i images from
|
||||
# the Debian mirror.
|
||||
#export DI_WWW_HOME=default
|
||||
|
||||
# Version number, "2.2 r0", "2.2 r1" etc.
|
||||
export DEBVERSION="3.0"
|
||||
export DEBVERSION="3.1"
|
||||
|
||||
# Official or non-official set.
|
||||
# NOTE: THE "OFFICIAL" DESIGNATION IS ONLY ALLOWED FOR IMAGES AVAILABLE
|
||||
|
@ -158,9 +164,9 @@ export DEFBINSIZE=630
|
|||
export DEFSRCSIZE=635
|
||||
|
||||
# We don't want certain packages to take up space on CD1...
|
||||
#export EXCLUDE="$BASEDIR"/tasks/exclude-potato
|
||||
export EXCLUDE="$BASEDIR"/tasks/exclude-sarge
|
||||
# ...but they are okay for other CDs (UNEXCLUDEx == may be included on CD >= x)
|
||||
#export UNEXCLUDE2="$BASEDIR"/tasks/unexclude-CD2-potato
|
||||
export UNEXCLUDE2="$BASEDIR"/tasks/unexclude-CD2-sarge
|
||||
# Any packages listed in EXCLUDE but not in any UNEXCLUDE will be
|
||||
# excluded completely.
|
||||
|
||||
|
@ -169,7 +175,7 @@ export DEFSRCSIZE=635
|
|||
|
||||
# Set this if the recommended packages should be skipped when adding
|
||||
# package on the CD. The default is 'false'.
|
||||
#export NORECOMMENDS=1
|
||||
export NORECOMMENDS=1
|
||||
|
||||
# Set this if the suggested packages should be skipped when adding
|
||||
# package on the CD. The default is 'true'.
|
||||
|
@ -272,3 +278,8 @@ export PUBLISH_PATH="/home/jigdo-area/"
|
|||
|
||||
# If set, overrides the boot picture used.
|
||||
#export SPLASHPNG="$BASEDIR/data/$CODENAME/splash-img.png"
|
||||
|
||||
# Used by build.sh to determine what to build, this is the name of a target
|
||||
# in the Makefile. Use bin-official_images to build only binary CDs. The
|
||||
# default, official_images, builds everything.
|
||||
#IMAGETARGET=official_images
|
||||
|
|
21
Makefile
21
Makefile
|
@ -71,7 +71,7 @@ JIGDOSCRIPT=$(BASEDIR)/tools/jigdo_header
|
|||
endif
|
||||
|
||||
ifndef UDEB_INCLUDE
|
||||
# Netinst/businesscard CD should have udeb_include file by default
|
||||
# Netinst/businesscard CD have different udeb_include files
|
||||
ifeq ($(INSTALLER_CD),1)
|
||||
UDEB_INCLUDE=$(BASEDIR)/data/$(DI_CODENAME)/$(ARCH)_businesscard_udeb_include
|
||||
endif
|
||||
|
@ -79,6 +79,11 @@ ifeq ($(INSTALLER_CD),2)
|
|||
UDEB_INCLUDE=$(BASEDIR)/data/$(DI_CODENAME)/$(ARCH)_netinst_udeb_include
|
||||
endif
|
||||
endif
|
||||
# Default udeb_include files.
|
||||
ifndef UDEB_INCLUDE
|
||||
UDEB_INCLUDE=$(BASEDIR)/data/$(DI_CODENAME)/$(ARCH)_udeb_include
|
||||
endif
|
||||
|
||||
|
||||
## Internal variables
|
||||
apt=$(BASEDIR)/tools/apt-selection
|
||||
|
@ -202,13 +207,13 @@ unstable-map:
|
|||
# CLeans the current arch tree (but not packages selection info)
|
||||
clean: ok bin-clean src-clean
|
||||
bin-clean:
|
||||
$(Q)rm -rf $(BDIR)/CD[1234567890]
|
||||
$(Q)rm -rf $(BDIR)/CD[1234567890]*
|
||||
$(Q)rm -rf $(BDIR)/*_NONUS
|
||||
$(Q)rm -f $(BDIR)/*.filelist*
|
||||
$(Q)rm -f $(BDIR)/packages-stamp $(BDIR)/bootable-stamp \
|
||||
$(BDIR)/upgrade-stamp $(BDIR)/secured-stamp
|
||||
src-clean:
|
||||
$(Q)rm -rf $(SDIR)/CD[1234567890]
|
||||
$(Q)rm -rf $(SDIR)/CD[1234567890]*
|
||||
$(Q)rm -rf $(SDIR)/*_NONUS
|
||||
$(Q)rm -rf $(SDIR)/sources-stamp $(SDIR)/secured-stamp
|
||||
|
||||
|
@ -1031,23 +1036,23 @@ conf:
|
|||
mirrorcheck: ok apt-update
|
||||
$(Q)$(apt) cache dumpavail | $(mirrorcheck)
|
||||
|
||||
update-popcon: tasks/popularity-contest-$(CODENAME)
|
||||
tasks/popularity-contest-$(CODENAME):
|
||||
update-popcon:
|
||||
rm -f popcon-inst
|
||||
( \
|
||||
echo '/*' ; \
|
||||
echo ' Popularity Contest results' ; \
|
||||
echo ' See the README for details on updating.' ; \
|
||||
echo '' ; \
|
||||
echo ' Last update: $$''Date''$$' ; \
|
||||
echo ' Last update: $(shell date)' ; \
|
||||
echo '*/' ; \
|
||||
echo '' ; \
|
||||
) > $@
|
||||
) > tasks/popularity-contest-$(CODENAME)
|
||||
wget --output-document popcon-inst \
|
||||
http://popcon.debian.org/main/by_inst \
|
||||
http://popcon.debian.org/contrib/by_inst
|
||||
grep -h '^[^#]' popcon-inst | egrep -v '(Total|-----)' | \
|
||||
sort -rn -k3,3 -k7,7 -k4,4 | awk '{print $$2}' >> $@
|
||||
sort -rn -k3,3 -k7,7 -k4,4 | grep -v kernel-source | \
|
||||
awk '{print $$2}' >> tasks/popularity-contest-$(CODENAME)
|
||||
rm -f popcon-inst
|
||||
|
||||
# Little trick to simplify things
|
||||
|
|
6
build.sh
6
build.sh
|
@ -7,6 +7,10 @@ if [ -z "$CF" ] ; then
|
|||
fi
|
||||
. $CF
|
||||
|
||||
if [ -z "$COMPLETE" ] ; then
|
||||
export COMPLETE=1
|
||||
fi
|
||||
|
||||
if [ -n "$1" ] ; then
|
||||
export ARCH=$1
|
||||
fi
|
||||
|
@ -51,7 +55,7 @@ for CD in 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15; do
|
|||
done
|
||||
|
||||
FULL_SIZE=`echo "($DEFSRCSIZE - $size) * 1024 * 1024" | bc`
|
||||
make list COMPLETE=1 $SIZE_ARGS SRCSIZELIMIT=$FULL_SIZE
|
||||
make list $SIZE_ARGS SRCSIZELIMIT=$FULL_SIZE
|
||||
echo " ... building the images"
|
||||
if [ -z "$IMAGETARGET" ] ; then
|
||||
IMAGETARGET="official_images"
|
||||
|
|
|
@ -12,23 +12,27 @@ anna
|
|||
di-utils-shell
|
||||
di-utils-reboot
|
||||
lowmemcheck
|
||||
# build/pkg-lists/cdrom/common, in d-i cvs
|
||||
# build/pkg-lists/cdrom/common, in d-i cvs (also included in the
|
||||
# root+cd-drivers floppies)
|
||||
busybox-cvs-udeb
|
||||
rootskel-locale
|
||||
languagechooser
|
||||
countrychooser
|
||||
iso-3166-udeb
|
||||
hw-detect
|
||||
cdrom-detect
|
||||
cdrom-retriever
|
||||
load-installer
|
||||
load-cdrom
|
||||
cdrom-checker
|
||||
bogl-bterm-udeb
|
||||
di-utils-terminfo
|
||||
cdebconf-priority
|
||||
cdebconf-newt-udeb
|
||||
usb-discover
|
||||
file-preseed
|
||||
nano-udeb
|
||||
floppy-retriever
|
||||
libfribidi0-udeb
|
||||
# Already on the initrd, thanks to library reduction.
|
||||
libdebconfclient0-udeb
|
||||
# A reduced version is on the initrd. Nothing currently needs the full
|
||||
|
@ -51,7 +55,6 @@ libgtk+2.0-directfb0-udeb
|
|||
libpango1.0-udeb
|
||||
libpng12-0-udeb
|
||||
ttf-freefont-udeb
|
||||
zlib1g-udeb
|
||||
# This udeb is not in good shape and is largely supersceded by
|
||||
# cdebconf-newt-udeb
|
||||
cdebconf-slang-udeb
|
||||
|
@ -62,10 +65,9 @@ dhcp3-client-udeb
|
|||
pump-udeb
|
||||
# This package is only useful in the d-i-demo.
|
||||
di-utils-exit-installer
|
||||
# These loader udebs are not currently used on this CDs. That may change,
|
||||
# but for now load-installer is used.
|
||||
# No need for these loaders.
|
||||
load-installer
|
||||
download-installer
|
||||
load-cdrom
|
||||
load-floppy
|
||||
# Only useful in the hd-media initrd.
|
||||
iso-scan
|
||||
|
|
|
@ -1,15 +1,15 @@
|
|||
# These udebs are in the d-i cdrom initrd and the hd-media initrd.
|
||||
# These udebs are in the d-i cdrom initrd and the cd-drivers+root floppies.
|
||||
# As such, there is no reason to keep another copy of them on the CD
|
||||
# in udeb form.
|
||||
isa-pnp-modules-*
|
||||
socket-modules-*
|
||||
console-keymaps-at
|
||||
console-keymaps-usb
|
||||
floppy-modules-*
|
||||
discover-data-udeb
|
||||
discover-udeb
|
||||
discover1-data-udeb
|
||||
discover1-udeb
|
||||
fat-modules-*
|
||||
cdrom-core-modules-*
|
||||
cdrom-modules-*
|
||||
ide-modules-*
|
||||
|
@ -25,18 +25,9 @@ userdevfs
|
|||
# The speakup kernel modules are not useful unless the access images are
|
||||
# provided.
|
||||
*-speakup-di
|
||||
# These packages are for the old partitioning system, and should not be
|
||||
# included as they confuse users.
|
||||
# Note that partconf-find-partitions is used by lvmcfg-utils, so is not
|
||||
# excluded likewise, partconf-mkfstab is used by autopartkit.
|
||||
partconf
|
||||
partitioner
|
||||
# This is obsolete.
|
||||
discover2-data-udeb
|
||||
|
||||
|
||||
# autopartkit does not work with lvm2, so exclude that and things that
|
||||
# depend on it.
|
||||
# depend on it for debian-edu.
|
||||
lvm2-udeb
|
||||
lvmcfg-utils
|
||||
lvmcfg
|
||||
|
|
|
@ -2,3 +2,5 @@ netcfg
|
|||
ethdetect
|
||||
pcmcia-cs-udeb
|
||||
wireless-tools-udeb
|
||||
debian-edu-install-udeb
|
||||
debian-edu-profile-udeb
|
||||
|
|
|
@ -2,7 +2,7 @@ partition=1
|
|||
timeout=600
|
||||
message=/boot/debian.txt
|
||||
default=linux
|
||||
append="cdrom devfs=mount rw ramdisk_size=8192"
|
||||
append="cdrom devfs=mount rw"
|
||||
initrd=/boot/initrd.gz
|
||||
root=/dev/rd/0
|
||||
|
||||
|
|
|
@ -1,2 +0,0 @@
|
|||
debian-edu-install-udeb
|
||||
debian-edu-profile-udeb
|
|
@ -3,20 +3,20 @@ Welcome to Debian GNU/Linux ${DEBIAN_VERSION}!
|
|||
This is a Debian installation ${MEDIA_TYPE},
|
||||
built on ${BUILD_DATE}.
|
||||
|
||||
In addition to the default 'install' option,
|
||||
there is 'install-safe' which you should try if
|
||||
the system fails to boot at all (the typical
|
||||
symptom is a white screen which doesn't go away).
|
||||
The default option is 'install'. For maximum
|
||||
control, you can use the 'expert' option.
|
||||
|
||||
For maximum control, you can use the 'expert'
|
||||
and 'expert-safe' options.
|
||||
If the system fails to boot at all (the typical
|
||||
symptom is a white screen which doesn't go away),
|
||||
use 'install video=ofonly' or 'expert video=ofonly'.
|
||||
|
||||
The plain options are for the powerpc family of
|
||||
processors (from 601 to G4). The -power3 options
|
||||
are for IBM Power3 boxes, and the -power4 options
|
||||
are for IBM Power4 and Apple G5 boxes.
|
||||
processors (from 601 to G4). The *-power3 options
|
||||
are for IBM Power3 boxes, and the *-power4 options
|
||||
are for IBM Power4 and Apple G5 boxes. Press the tab
|
||||
key for a list of options, or type 'help' for help.
|
||||
|
||||
************************************
|
||||
If in doubt, just choose 'install', and if that
|
||||
doesn't work, try 'install-safe'.
|
||||
doesn't work, try 'install video=ofonly'.
|
||||
************************************
|
||||
|
|
|
@ -15,7 +15,7 @@ image=/install/powerpc/vmlinux
|
|||
alias=install
|
||||
initrd=/install/powerpc/initrd.gz
|
||||
append="devfs=mount,dall init=/linuxrc"
|
||||
initrd-size=8192
|
||||
initrd-size=10240
|
||||
read-only
|
||||
|
||||
image=/install/powerpc/vmlinux
|
||||
|
@ -23,24 +23,7 @@ image=/install/powerpc/vmlinux
|
|||
alias=expert
|
||||
initrd=/install/powerpc/initrd.gz
|
||||
append="DEBCONF_PRIORITY=low devfs=mount,dall init=/linuxrc"
|
||||
initrd-size=8192
|
||||
read-only
|
||||
|
||||
# some machines have wonky framebuffer support
|
||||
image=/install/powerpc/vmlinux
|
||||
label=install-safe-powerpc
|
||||
alias=install-safe
|
||||
initrd=/install/powerpc/initrd.gz
|
||||
initrd-size=8192
|
||||
append="devfs=mount,dall video=ofonly init=/linuxrc"
|
||||
read-only
|
||||
|
||||
image=/install/powerpc/vmlinux
|
||||
label=expert-safe-powerpc
|
||||
alias=expert-safe
|
||||
initrd=/install/powerpc/initrd.gz
|
||||
initrd-size=8192
|
||||
append="DEBCONF_PRIORITY=low devfs=mount,dall video=ofonly init=/linuxrc"
|
||||
initrd-size=10240
|
||||
read-only
|
||||
|
||||
# Power3 subarch
|
||||
|
@ -48,29 +31,14 @@ image=/install/power3/vmlinux
|
|||
label=install-power3
|
||||
initrd=/install/power3/initrd.gz
|
||||
append="devfs=mount,dall init=/linuxrc"
|
||||
initrd-size=8192
|
||||
initrd-size=10240
|
||||
read-only
|
||||
|
||||
image=/install/power3/vmlinux
|
||||
label=expert-power3
|
||||
initrd=/install/power3/initrd.gz
|
||||
append="DEBCONF_PRIORITY=low devfs=mount,dall init=/linuxrc"
|
||||
initrd-size=8192
|
||||
read-only
|
||||
|
||||
# some machines have wonky framebuffer support
|
||||
image=/install/power3/vmlinux
|
||||
label=install-safe-power3
|
||||
initrd=/install/power3/initrd.gz
|
||||
initrd-size=8192
|
||||
append="devfs=mount,dall video=ofonly init=/linuxrc"
|
||||
read-only
|
||||
|
||||
image=/install/power3/vmlinux
|
||||
label=expert-safe-power3
|
||||
initrd=/install/power3/initrd.gz
|
||||
initrd-size=8192
|
||||
append="DEBCONF_PRIORITY=low devfs=mount,dall video=ofonly init=/linuxrc"
|
||||
initrd-size=10240
|
||||
read-only
|
||||
|
||||
# Power 4 subarch
|
||||
|
@ -78,123 +46,61 @@ image=/install/power4/vmlinux
|
|||
label=install-power4
|
||||
initrd=/install/power4/initrd.gz
|
||||
append="devfs=mount,dall init=/linuxrc"
|
||||
initrd-size=8192
|
||||
initrd-size=10240
|
||||
read-only
|
||||
|
||||
image=/install/power4/vmlinux
|
||||
label=expert-power4
|
||||
initrd=/install/power4/initrd.gz
|
||||
append="DEBCONF_PRIORITY=low devfs=mount,dall init=/linuxrc"
|
||||
initrd-size=8192
|
||||
initrd-size=10240
|
||||
read-only
|
||||
|
||||
# some machines have wonky framebuffer support
|
||||
image=/install/power4/vmlinux
|
||||
label=install-safe-power4
|
||||
initrd=/install/power4/initrd.gz
|
||||
initrd-size=8192
|
||||
append="devfs=mount,dall video=ofonly init=/linuxrc"
|
||||
read-only
|
||||
|
||||
image=/install/power4/vmlinux
|
||||
label=expert-safe-power4
|
||||
initrd=/install/power4/initrd.gz
|
||||
initrd-size=8192
|
||||
append="DEBCONF_PRIORITY=low devfs=mount,dall video=ofonly init=/linuxrc"
|
||||
read-only
|
||||
|
||||
# ... and now massive clone-and-hack for 2.6 ...
|
||||
# ... and now massive clone-and-hack for 2.4 ...
|
||||
|
||||
# Powerpc subarch
|
||||
image=/install/powerpc/2.6/vmlinux
|
||||
label=install-powerpc-2.6
|
||||
alias=install-2.6
|
||||
initrd=/install/powerpc/2.6/initrd.gz
|
||||
image=/install/powerpc/2.4/vmlinux
|
||||
label=install-powerpc-2.4
|
||||
alias=install-2.4
|
||||
initrd=/install/powerpc/2.4/initrd.gz
|
||||
append="devfs=mount,dall init=/linuxrc"
|
||||
initrd-size=8192
|
||||
read-only
|
||||
|
||||
image=/install/powerpc/2.6/vmlinux
|
||||
label=expert-powerpc-2.6
|
||||
alias=expert-2.6
|
||||
initrd=/install/powerpc/2.6/initrd.gz
|
||||
image=/install/powerpc/2.4/vmlinux
|
||||
label=expert-powerpc-2.4
|
||||
alias=expert-2.4
|
||||
initrd=/install/powerpc/2.4/initrd.gz
|
||||
append="DEBCONF_PRIORITY=low devfs=mount,dall init=/linuxrc"
|
||||
initrd-size=8192
|
||||
read-only
|
||||
|
||||
# some machines have wonky framebuffer support
|
||||
image=/install/powerpc/2.6/vmlinux
|
||||
label=install-safe-powerpc-2.6
|
||||
alias=install-safe-2.6
|
||||
initrd=/install/powerpc/2.6/initrd.gz
|
||||
initrd-size=8192
|
||||
append="devfs=mount,dall video=ofonly init=/linuxrc"
|
||||
read-only
|
||||
|
||||
image=/install/powerpc/2.6/vmlinux
|
||||
label=expert-safe-powerpc-2.6
|
||||
alias=expert-safe-2.6
|
||||
initrd=/install/powerpc/2.6/initrd.gz
|
||||
initrd-size=8192
|
||||
append="DEBCONF_PRIORITY=low devfs=mount,dall video=ofonly init=/linuxrc"
|
||||
read-only
|
||||
|
||||
# Power3 subarch
|
||||
image=/install/power3/2.6/vmlinux
|
||||
label=install-power3-2.6
|
||||
initrd=/install/power3/2.6/initrd.gz
|
||||
image=/install/power3/2.4/vmlinux
|
||||
label=install-power3-2.4
|
||||
initrd=/install/power3/2.4/initrd.gz
|
||||
append="devfs=mount,dall init=/linuxrc"
|
||||
initrd-size=8192
|
||||
read-only
|
||||
|
||||
image=/install/power3/2.6/vmlinux
|
||||
label=expert-power3-2.6
|
||||
initrd=/install/power3/2.6/initrd.gz
|
||||
image=/install/power3/2.4/vmlinux
|
||||
label=expert-power3-2.4
|
||||
initrd=/install/power3/2.4/initrd.gz
|
||||
append="DEBCONF_PRIORITY=low devfs=mount,dall init=/linuxrc"
|
||||
initrd-size=8192
|
||||
read-only
|
||||
|
||||
# some machines have wonky framebuffer support
|
||||
image=/install/power3/2.6/vmlinux
|
||||
label=install-safe-power3-2.6
|
||||
initrd=/install/power3/2.6/initrd.gz
|
||||
initrd-size=8192
|
||||
append="devfs=mount,dall video=ofonly init=/linuxrc"
|
||||
read-only
|
||||
|
||||
image=/install/power3/2.6/vmlinux
|
||||
label=expert-safe-power3-2.6
|
||||
initrd=/install/power3/2.6/initrd.gz
|
||||
initrd-size=8192
|
||||
append="DEBCONF_PRIORITY=low devfs=mount,dall video=ofonly init=/linuxrc"
|
||||
read-only
|
||||
|
||||
# Power 4 subarch
|
||||
image=/install/power4/2.6/vmlinux
|
||||
label=install-power4-2.6
|
||||
initrd=/install/power4/2.6/initrd.gz
|
||||
image=/install/power4/2.4/vmlinux
|
||||
label=install-power4-2.4
|
||||
initrd=/install/power4/2.4/initrd.gz
|
||||
append="devfs=mount,dall init=/linuxrc"
|
||||
initrd-size=8192
|
||||
read-only
|
||||
|
||||
image=/install/power4/2.6/vmlinux
|
||||
label=expert-power4-2.6
|
||||
initrd=/install/power4/2.6/initrd.gz
|
||||
image=/install/power4/2.4/vmlinux
|
||||
label=expert-power4-2.4
|
||||
initrd=/install/power4/2.4/initrd.gz
|
||||
append="DEBCONF_PRIORITY=low devfs=mount,dall init=/linuxrc"
|
||||
initrd-size=8192
|
||||
read-only
|
||||
|
||||
# some machines have wonky framebuffer support
|
||||
image=/install/power4/2.6/vmlinux
|
||||
label=install-safe-power4-2.6
|
||||
initrd=/install/power4/2.6/initrd.gz
|
||||
initrd-size=8192
|
||||
append="devfs=mount,dall video=ofonly init=/linuxrc"
|
||||
read-only
|
||||
|
||||
image=/install/power4/2.6/vmlinux
|
||||
label=expert-safe-power4-2.6
|
||||
initrd=/install/power4/2.6/initrd.gz
|
||||
initrd-size=8192
|
||||
append="DEBCONF_PRIORITY=low devfs=mount,dall video=ofonly init=/linuxrc"
|
||||
read-only
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
#
|
||||
# This file will have to be sourced where needed
|
||||
#
|
||||
|
||||
# Unset all optional variables first to start from a clean state
|
||||
unset NONUS || true
|
||||
unset FORCENONUSONCD1 || true
|
||||
|
@ -22,23 +26,30 @@ unset NOSUGGESTS || true
|
|||
unset DOJIGDO || true
|
||||
unset JIGDOCMD || true
|
||||
unset JIGDOTEMPLATEURL || true
|
||||
unset JIGDOFALLBACKURLS || true
|
||||
unset JIGDOINCLUDEURLS || true
|
||||
unset JIGDOSCRIPT || true
|
||||
unset DEFBINSIZE || true
|
||||
unset DEFSRCSIZE || true
|
||||
unset FASTSUMS || true
|
||||
unset PUBLISH_URL || true
|
||||
unset PUBLISH_NONUS_URL || true
|
||||
unset PUBLISH_PATH || true
|
||||
unset UDEB_INCLUDE || true
|
||||
unset UDEB_EXCLUDE || true
|
||||
unset BASE_INCLUDE || true
|
||||
unset BASE_EXCLUDE || true
|
||||
unset INSTALLER_CD || true
|
||||
unset DI_CODENAME || true
|
||||
unset MAXCDS || true
|
||||
unset SPLASHPNG || true
|
||||
|
||||
|
||||
# The debian-cd dir
|
||||
export BASEDIR=/usr/share/debian-cd
|
||||
# Where I am (hoping I'm in the debian-cd dir)
|
||||
export BASEDIR=`pwd`
|
||||
|
||||
# Building woody cd set ...
|
||||
export CODENAME=woody
|
||||
# Building sarge cd set ...
|
||||
export CODENAME=sarge
|
||||
|
||||
# By default use Debian installer packages from $CODENAME
|
||||
if [ ! "$DI_CODENAME" ]
|
||||
|
@ -46,8 +57,14 @@ then
|
|||
export DI_CODENAME=$CODENAME
|
||||
fi
|
||||
|
||||
# If set, controls where the d-i components are downloaded from.
|
||||
# This may be an url, or "default", which will make it use the default url
|
||||
# for the daily d-i builds. If not set, uses the official d-i images from
|
||||
# the Debian mirror.
|
||||
#export DI_WWW_HOME=default
|
||||
|
||||
# Version number, "2.2 r0", "2.2 r1" etc.
|
||||
export DEBVERSION="3.0"
|
||||
export DEBVERSION="3.1"
|
||||
|
||||
# Official or non-official set.
|
||||
# NOTE: THE "OFFICIAL" DESIGNATION IS ONLY ALLOWED FOR IMAGES AVAILABLE
|
||||
|
@ -65,7 +82,7 @@ export ARCH=`dpkg --print-installation-architecture`
|
|||
# images, however. Also, if you are using an NFS partition for
|
||||
# some part of this, you must use this option.
|
||||
# Paths to the mirrors
|
||||
export MIRROR=/home/ftp/debian
|
||||
export MIRROR=/ftp/debian
|
||||
|
||||
# Comment the following line if you don't have/want non-US
|
||||
#export NONUS=/ftp/debian-non-US
|
||||
|
@ -76,14 +93,14 @@ export MIRROR=/home/ftp/debian
|
|||
#export FORCENONUSONCD1=1
|
||||
|
||||
# Path of the temporary directory
|
||||
export TDIR=/home/ftp/tmp
|
||||
export TDIR=/ftp/tmp
|
||||
|
||||
# Path where the images will be written
|
||||
export OUT=/home/ftp/debian-cd
|
||||
export OUT=/rack/debian-cd
|
||||
|
||||
# Where we keep the temporary apt stuff.
|
||||
# This cannot reside on an NFS mount.
|
||||
export APTTMP=/home/ftp/tmp/apt
|
||||
export APTTMP=/ftp/tmp/apt
|
||||
|
||||
# Do I want to have NONFREE merged in the CD set
|
||||
# export NONFREE=1
|
||||
|
@ -147,9 +164,9 @@ export DEFBINSIZE=630
|
|||
export DEFSRCSIZE=635
|
||||
|
||||
# We don't want certain packages to take up space on CD1...
|
||||
#export EXCLUDE="$BASEDIR"/tasks/exclude-potato
|
||||
export EXCLUDE="$BASEDIR"/tasks/exclude-sarge
|
||||
# ...but they are okay for other CDs (UNEXCLUDEx == may be included on CD >= x)
|
||||
#export UNEXCLUDE2="$BASEDIR"/tasks/unexclude-CD2-potato
|
||||
export UNEXCLUDE2="$BASEDIR"/tasks/unexclude-CD2-sarge
|
||||
# Any packages listed in EXCLUDE but not in any UNEXCLUDE will be
|
||||
# excluded completely.
|
||||
|
||||
|
@ -158,7 +175,7 @@ export DEFSRCSIZE=635
|
|||
|
||||
# Set this if the recommended packages should be skipped when adding
|
||||
# package on the CD. The default is 'false'.
|
||||
#export NORECOMMENDS=1
|
||||
export NORECOMMENDS=1
|
||||
|
||||
# Set this if the suggested packages should be skipped when adding
|
||||
# package on the CD. The default is 'true'.
|
||||
|
@ -179,18 +196,47 @@ export DEFSRCSIZE=635
|
|||
# Note: building the cache takes hours, so keep it around for the next run
|
||||
#export JIGDOCMD="/usr/local/bin/jigdo-file --cache=$HOME/jigdo-cache.db"
|
||||
#
|
||||
# HTTP/FTP URL for directory where you intend to make the templates available.
|
||||
# %ARCH%, if present, will be replaced by $ARCH (or "source"). This only goes
|
||||
# in the .jigdo files, which you can edit easily if you want.
|
||||
# No trailing slash.
|
||||
#export JIGDOTEMPLATEURL="http://this-guy-didnt-configure-debiancd-correctly.com/debian-cd/templates/3.0BETA/%ARCH%"
|
||||
# HTTP/FTP URL for directory where you intend to make the templates
|
||||
# available. You should not need to change this; the default value ""
|
||||
# means "template in same dir as the .jigdo file", which is usually
|
||||
# correct. If it is non-empty, it needs a trailing slash. "%ARCH%"
|
||||
# will be substituted by the current architecture.
|
||||
#export JIGDOTEMPLATEURL=""
|
||||
#
|
||||
# Name of a directory on disc to create data for a fallback server in.
|
||||
# Should later be made available by you at the URL given in
|
||||
# JIGDOFALLBACKURLS. In the directory, two subdirs named "Debian" and
|
||||
# "Non-US" will be created, and filled with hard links to the actual
|
||||
# files in your FTP archive. Because of the hard links, the dir must
|
||||
# be on the same partition as the FTP archive! If unset, no fallback
|
||||
# data is created, which may cause problems - see README.
|
||||
#export JIGDOFALLBACKPATH="$(OUT)/snapshot/"
|
||||
#
|
||||
# Space-separated list of label->URL mappings for "jigdo fallback
|
||||
# server(s)" to add to .jigdo file. If unset, no fallback URL is
|
||||
# added, which may cause problems - see README.
|
||||
#export JIGDOFALLBACKURLS="Debian=http://myserver/snapshot/Debian/ Non-US=http://myserver/snapshot/Non-US/"
|
||||
#
|
||||
# Space-separated list of "include URLs" to add to the .jigdo file.
|
||||
# The included files are used to provide an up-to-date list of Debian
|
||||
# mirrors to the jigdo _GUI_application_ (_jigdo-lite_ doesn't support
|
||||
# "[Include ...]").
|
||||
export JIGDOINCLUDEURLS="http://cdimage.debian.org/debian-cd/debian-servers.jigdo"
|
||||
#
|
||||
# $JIGDOTEMPLATEURL and $JIGDOINCLUDEURLS are passed to
|
||||
# "tools/jigdo_header", which is used by default to generate the
|
||||
# [Image] and [Servers] sections of the .jigdo file. You can provide
|
||||
# your own script if you need the .jigdo file to contain different
|
||||
# data.
|
||||
#export JIGDOSCRIPT="myscript"
|
||||
|
||||
# If set, use the md5sums from the main archive, rather than calculating
|
||||
# them locally
|
||||
#export FASTSUMS=1
|
||||
|
||||
# a couple of things used by publish_cds, so it can tweak the jigdo files,
|
||||
# and knows where to put the results
|
||||
# A couple of things used only by publish_cds, so it can tweak the
|
||||
# jigdo files, and knows where to put the results.
|
||||
# You need to run publish_cds manually, it is not run by the Makefile.
|
||||
export PUBLISH_URL="http://cdimage.debian.org/jigdo-area"
|
||||
export PUBLISH_NONUS_URL="http://non-US.cdimage.debian.org/jigdo-area"
|
||||
export PUBLISH_PATH="/home/jigdo-area/"
|
||||
|
@ -210,8 +256,8 @@ export PUBLISH_PATH="/home/jigdo-area/"
|
|||
# File with list of packages to include when running debootstrap from
|
||||
# the first stage installer (currently only supported in
|
||||
# debian-installer). One package per line. Lines starting with '#'
|
||||
# are comments. The package order is important, when will be
|
||||
# installed in the given order.
|
||||
# are comments. The package order is important, as the packages will
|
||||
# be installed in the given order.
|
||||
#export BASE_INCLUDE="$BASEDIR"/data/$CODENAME/base_include
|
||||
|
||||
# File with list of packages to exclude as above.
|
||||
|
@ -232,3 +278,8 @@ export PUBLISH_PATH="/home/jigdo-area/"
|
|||
|
||||
# If set, overrides the boot picture used.
|
||||
#export SPLASHPNG="$BASEDIR/data/$CODENAME/splash-img.png"
|
||||
|
||||
# Used by build.sh to determine what to build, this is the name of a target
|
||||
# in the Makefile. Use bin-official_images to build only binary CDs. The
|
||||
# default, official_images, builds everything.
|
||||
#IMAGETARGET=official_images
|
||||
|
|
|
@ -1,7 +1,54 @@
|
|||
debian-cd (2.2.18) UNRELEASED; urgency=low
|
||||
debian-cd (2.2.20) UNRELEASED; urgency=low
|
||||
|
||||
* Remove debian-keyring.tar.gz from the doc dir.
|
||||
* Don't include Contents-$ARCH.gz on netinst/businesscard CD.
|
||||
* Joey Hess
|
||||
- Remove bogus init=/linuxrc, we have not had a linuxrc in d-i for a long
|
||||
time and I don't know how that managed to work.
|
||||
- Update path to ia64 cdrom/boot.img.
|
||||
- Tweaked exclude-udebs-i386, removing fat-modules as it's not available
|
||||
otherwise if booting from floppy, and removing excludes of partconf,
|
||||
partitioner, and discover2-data-udeb, which are not in unstable for i386
|
||||
any longer.
|
||||
- Updated exclude-udebs to match the current CD initrd package list.
|
||||
* Stephen R. Marenka
|
||||
- Add support for m68k reorganization.
|
||||
- Bump m68k 2.4 kernels to 2.4.27.
|
||||
* Petter Reinholdtsen
|
||||
- New variable SPLASHPNG pointing to replacement splash image on i386.
|
||||
|
||||
-- Joey Hess <joeyh@debian.org> Mon, 30 Aug 2004 15:23:19 -0400
|
||||
|
||||
debian-cd (2.2.19) unstable; urgency=medium
|
||||
|
||||
* Steve McIntyre
|
||||
- (Hopefully this time) Final medium-urgency upload to get a
|
||||
recent debian-cd in before the sarge release. A few bugfixes needed:
|
||||
- Removed silly build-dep-indep on mkisofs. Closes: #258018
|
||||
- Fixed typo in tools/boot/sarge/boot-i386. Closes: #267026
|
||||
* Santiago Garcia
|
||||
- Change build.sh to allow building non complete CDs, like netinsts.
|
||||
|
||||
-- Steve McIntyre <93sam@debian.org> Fri, 20 Aug 2004 14:59:11 +0100
|
||||
|
||||
debian-cd (2.2.18) unstable; urgency=medium
|
||||
|
||||
* Steve McIntyre
|
||||
- Final medium-urgency upload to get a recent debian-cd in before
|
||||
the sarge release.
|
||||
- Update default version to sarge/3.1 for a sarge release.
|
||||
- Sarge is going to have more than 9 CDs; make sure we clean up all of
|
||||
the working dirs.
|
||||
- Removed the -T option to mkisofs. We don't need the TRANS.TBL files
|
||||
any more, and we should save the space.
|
||||
- Added support for SIZE_MULT_x when calculating full disc
|
||||
sizes. Best use is on m68k and powerpc images where HFS hybrid
|
||||
metadata seems to add ~10% to the size of the image.
|
||||
- Various updates to update-cd to cope with changes r0->r2.
|
||||
- Updated copy of CONF.sh in debian directory to match the working copy in .
|
||||
- Small lintian fixes.
|
||||
* Raphael Hertzog
|
||||
- Add missing Build-Depends-Indep. Closes: #258018
|
||||
- Remove debian-keyring.tar.gz from the doc dir.
|
||||
- Don't include Contents-$ARCH.gz on netinst/businesscard CD.
|
||||
* Joey Hess
|
||||
- Include sarge installation manual on sarge CDs.
|
||||
- Remove install/doc, and just use doc/install.
|
||||
|
@ -35,33 +82,38 @@ debian-cd (2.2.18) UNRELEASED; urgency=low
|
|||
- Only exclude udebs from the CD that are in both the cd initrd and the
|
||||
hd-media initrd, since both use the CD. This adds back floppy-modules
|
||||
and firewire-core-modules.
|
||||
- Add new default udeb_include files (for to full CDs and DVDs) that
|
||||
include ethdetect and netcfg, to make network configuration happen in
|
||||
first stage, since the second stage cannot currently do any.
|
||||
Closes: #240458
|
||||
- Include debian-installer+kernel into Debian_sarge task to ensure all
|
||||
debs as well as udebs used by d-i are included.
|
||||
- Exclude newer versions of i386 kernels to save space. Leave 2.6.x-386
|
||||
kernels on the CD.
|
||||
- Update task-essential-sarge to tasksel 2.05. Fix the generator to work
|
||||
with post-2002 tasksels.
|
||||
- Update task-full-sarge and task.list to tasksel 2.05. The task.list was
|
||||
manually ordered to give desktop task priority, followed by servers,
|
||||
followed by languages.
|
||||
- NORECOMMENDS should be used for sarge official CD sets (getting full
|
||||
tasks is more important), and is on by default.
|
||||
- Add libfribidi0 to generate_di+k_list, needed for BIDI.
|
||||
- Switch CONF.sh to sarge.
|
||||
- Uncomment exclude lines.
|
||||
- Remove the boot.bat script and redundant and incorrect README.tools.
|
||||
The alternative is to maintain and document them.
|
||||
- Exclude kernel sources from popcon results, old data skews this badly.
|
||||
- Remove old kernel sources from interesting-fromcd23, and various other
|
||||
removals and updates.
|
||||
- Update the task lists and popcon again.
|
||||
- Stop excluding 686 and 686-smp kernels, as these are probably the most
|
||||
popular, and they fit on CD#1 now.
|
||||
- Add "--" end of installer kernel params markers to the isolinux.cfg.
|
||||
* Petter Reinholdtsen
|
||||
- Regenereated tasks/popularity-contest-sarge based on the current data.
|
||||
- Avoid kernel versions 2.4.24 and 2.6.3 on the first i386 CD, as we
|
||||
are currently using 2.4.25.
|
||||
- Remove packages not in testing from exclude-sarge:
|
||||
kernel-image-2.2.20, kernel-image-2.2.20-compact,
|
||||
kernel-image-2.2.20-idepci, kernel-image-2.2.20-reiserfs,
|
||||
kernel-image-2.4.18-bf2.4, kernel-image-2.4.20-3-386,
|
||||
kernel-image-2.4.20-3-586tsc, kernel-image-2.4.20-3-686,
|
||||
kernel-image-2.4.20-3-686-smp, kernel-image-2.4.20-3-k6,
|
||||
kernel-image-2.4.20-3-k7, kernel-image-2.4.20-3-k7-smp,
|
||||
kernel-image-2.4.22-1-386, kernel-image-2.4.22-1-586tsc,
|
||||
kernel-image-2.4.22-1-686, kernel-image-2.4.22-1-686-smp,
|
||||
kernel-image-2.4.22-1-k6, kernel-image-2.4.22-1-k7,
|
||||
kernel-image-2.4.22-1-k7-smp, kernel-image-2.4.22-speakup,
|
||||
kernel-image-2.4.22-xfs-386, kernel-image-2.4.22-xfs-686-smp,
|
||||
kernel-image-2.4.23-1-386, kernel-image-2.4.23-1-586tsc,
|
||||
kernel-image-2.4.23-1-686, kernel-image-2.4.23-1-686-smp,
|
||||
kernel-image-2.4.23-1-k6, kernel-image-2.4.23-1-k7,
|
||||
kernel-image-2.4.23-1-k7-smp, kernel-image-2.6.0-1-386,
|
||||
kernel-image-2.6.0-1-686, kernel-image-2.6.0-1-686-smp,
|
||||
kernel-image-2.6.0-1-k7, kernel-image-2.6.0-1-k7-smp,
|
||||
kernel-image-2.6.0-test11-1-386,
|
||||
kernel-image-2.6.0-test9-1-386,
|
||||
kernel-pcmcia-modules-2.4.22-xfs-386,
|
||||
kernel-pcmcia-modules-2.4.22-xfs-686-smp,
|
||||
kernel-source-2.2.20, timidity-patches, tcl8.2 and tk8.2.
|
||||
- Remove packages not in testing from exclude-sarge.
|
||||
- Update list2cds to allow #-comments in the exclude file.
|
||||
- Try to create $(OUT) instead of just bailing out if it is missing.
|
||||
- Missing b-f documentation is not a fatal error. Keep
|
||||
|
@ -72,14 +124,14 @@ debian-cd (2.2.18) UNRELEASED; urgency=low
|
|||
possible to use debian-installer with Woody CDs.
|
||||
- Avoid illegal dash (-) in cpp architecture defines. Patch
|
||||
from Colin Watson.
|
||||
- New variable SPLASHPNG pointing to replacement splash image on i386.
|
||||
* Stephen R. Marenka
|
||||
- Update m68k support for sarge.
|
||||
- Fix m68k/amiga icons.
|
||||
- Add 2.2 kernel-based cdrom initrd.
|
||||
- Redo mz68k subarch boot/install for sarge.
|
||||
- Redo m68k subarch boot/install for sarge.
|
||||
- Bump all subarchs to 2.4 kernel, except mac.
|
||||
- Add bvme6000 boot code.
|
||||
- Workaround boot/install for non-DI_WWW_HOME case.
|
||||
* Santiago Garcia
|
||||
- Update isolinux.bin to the version we are shipping with Sarge.
|
||||
- Update debian-installer tasks.
|
||||
|
@ -98,6 +150,10 @@ debian-cd (2.2.18) UNRELEASED; urgency=low
|
|||
- Add 2.6 support to powerpc cds.
|
||||
- Add yaboot to powerpc netinst cds as debootstrap no longer adds it.
|
||||
- Update boot-sparc not to depend on a kernel version.
|
||||
- Remove ramdisk_size param of silo.conf.
|
||||
- Add initrd-tools to sparc di+k list.
|
||||
- Generate PPC CD 1 with -chrp-boot. Closes: #252667
|
||||
- Increase max catalog size on PPC DVDs. Closes: #252652
|
||||
* Bdale Garbee
|
||||
- shorten the command line in post-boot-hppa for sarge, as palo can't
|
||||
handle a command line longer than 127 chars right now
|
||||
|
@ -112,6 +168,22 @@ debian-cd (2.2.18) UNRELEASED; urgency=low
|
|||
- Add exclude-udebs-powerpc list with packages already in the initrd,
|
||||
along the same lines as exclude-udebs-i386. Saves about 11 megabytes.
|
||||
- Add bootable CD support for arm, following Vince Sanders' advice.
|
||||
- Include kernel-image-2.4-* metapackages for ia64.
|
||||
- Unexclude zlib1g-udeb, needed for ssh support in d-i.
|
||||
- Make sure quik is on the powerpc netinst CD; debootstrap no longer
|
||||
installs it.
|
||||
- Bump initrd-size to 10MB for powerpc 2.4. Current d-i initrds exceed
|
||||
that.
|
||||
- Remove -safe options from powerpc yaboot menu, as they caused
|
||||
combinatorial explosion. Instead, document video=ofonly in boot.msg.
|
||||
- Clarify powerpc boot.msg a bit.
|
||||
- Cope with debian-installer powerpc image rearrangement.
|
||||
* Sven Luther
|
||||
- fixed powerpc list so it includes the 2.6 kernels too as well as the
|
||||
power3 and power4 2.4 kernels.
|
||||
* Steve Langasek
|
||||
- Add alpha and mipsel bootloaders to debian-installer+kernel,
|
||||
so debootstrap doesn't have to install them
|
||||
|
||||
-- Raphael Hertzog <hertzog@debian.org> Thu, 25 Mar 2004 07:33:23 +0100
|
||||
|
||||
|
@ -367,7 +439,7 @@ debian-cd (2.2.10) unstable; urgency=low
|
|||
* first test of multi-boot cdimage for i386 disk #1
|
||||
You must export MULTIBOOT="yes" in CONF.sh to enable this feature. -jwest
|
||||
* Removed "ide" boot floppy's flavor. Closes: #120415
|
||||
* Added support for s390 (Jochen Röhrig <jr@debian.org>).
|
||||
* Added support for s390 (Jochen Röhrig <jr@debian.org>).
|
||||
* Documentation about the fact the environment variables may
|
||||
pollute your environment after a debian-cd run. Closes: #123289
|
||||
|
||||
|
|
|
@ -2,8 +2,9 @@ Source: debian-cd
|
|||
Section: admin
|
||||
Priority: extra
|
||||
Maintainer: Raphael Hertzog <hertzog@debian.org>
|
||||
Build-Depends-Indep: debhelper (>= 4)
|
||||
Standards-Version: 3.6.0
|
||||
Uploaders: Steve McIntyre <93sam@debian.org>
|
||||
Build-Depends-Indep: debhelper (>= 4), sysutils
|
||||
Standards-Version: 3.6.1.0
|
||||
|
||||
Package: debian-cd
|
||||
Architecture: all
|
||||
|
|
|
@ -11,14 +11,6 @@ not supported.
|
|||
|
||||
-----
|
||||
|
||||
Popularity contest results:
|
||||
|
||||
wget http://popcon.debian.org/main/by_inst
|
||||
wget http://popcon.debian.org/contrib/by_inst
|
||||
grep -h '^[^#]' by_inst* | egrep -v '(Total|-----)' | sort -rn -k3,3 -k7,7 -k4,4 | awk '{print $2}'
|
||||
|
||||
-----
|
||||
|
||||
THE "USEFUL CD 1 PROJECT" RATIONALE J.A. Bezemer, Jan-Apr 2001
|
||||
costar@panic.et.tudelft.nl
|
||||
|
||||
|
|
|
@ -1,8 +0,0 @@
|
|||
education-common
|
||||
education-networked
|
||||
education-main-server
|
||||
education-workstation
|
||||
education-thin-client-server
|
||||
education-laptop
|
||||
education-standalone
|
||||
education-standalone-extras
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,129 @@
|
|||
/* These files + the ones needed by debootstrap are the ones needed for
|
||||
* debian-installer to be able to complete the installation of the base.
|
||||
* at least at this pre-sarge days.
|
||||
*
|
||||
* This list can be generated with the command:
|
||||
* ../tools/generate_di+k_list
|
||||
*
|
||||
* Last update: Wed Aug 4 15:44:40 MDT 2004
|
||||
*/
|
||||
|
||||
#include <debian-installer>
|
||||
eject
|
||||
locales
|
||||
lvm10
|
||||
libdevmapper1.00
|
||||
lvm-common
|
||||
lvm2
|
||||
mdadm
|
||||
aptitude
|
||||
jfbterm
|
||||
unifont
|
||||
hotplug
|
||||
usbutils
|
||||
iso-codes
|
||||
console-cyrillic
|
||||
console-terminus
|
||||
pcmcia-cs
|
||||
wireless-tools
|
||||
xfsprogs
|
||||
jfsutils
|
||||
reiserfsprogs
|
||||
libfribidi0
|
||||
#ifdef ARCH_i386
|
||||
discover
|
||||
discover1
|
||||
grub
|
||||
lilo
|
||||
kernel-image-2.4.26-1-386
|
||||
kernel-pcmcia-modules-2.4.26-1-386
|
||||
#endif
|
||||
#ifdef ARCH_alpha
|
||||
aboot
|
||||
aboot-base
|
||||
discover1
|
||||
kernel-image-2.4-generic
|
||||
kernel-image-2.4-smp
|
||||
kernel-image-2.4.26-1-generic
|
||||
kernel-image-2.4.26-1-smp
|
||||
kernel-image-2.6-generic
|
||||
kernel-image-2.6-smp
|
||||
kernel-image-2.6.6-1-generic
|
||||
kernel-image-2.6.6-1-smp
|
||||
kernel-image-netbootable
|
||||
#endif
|
||||
#ifdef ARCH_hppa
|
||||
discover1
|
||||
kernel-image-2.4.26-32-smp
|
||||
kernel-image-2.4.26-64
|
||||
kernel-image-2.4.26-64-smp
|
||||
kernel-image-netbootable
|
||||
#endif
|
||||
#ifdef ARCH_ia64
|
||||
discover1
|
||||
initrd-tools
|
||||
kernel-image-2.4.26-1-itanium
|
||||
kernel-image-2.4.26-1-itanium-smp
|
||||
kernel-image-2.4.26-1-mckinley
|
||||
kernel-image-2.4.26-1-mckinley-smp
|
||||
kernel-image-2.4-itanium
|
||||
kernel-image-2.4-itanium-smp
|
||||
kernel-image-2.4-mckinley
|
||||
kernel-image-2.4-mckinley-smp
|
||||
#endif
|
||||
#ifdef ARCH_mips
|
||||
arcboot
|
||||
kernel-image-2.4.26-r4k-ip22
|
||||
kernel-image-2.4.26-r5k-ip22
|
||||
#endif
|
||||
#ifdef ARCH_mipsel
|
||||
delo
|
||||
kernel-image-2.4.26-r3k-kn02
|
||||
kernel-image-2.4.26-r4k-kn04
|
||||
#endif
|
||||
#ifdef ARCH_powerpc
|
||||
discover1
|
||||
quik
|
||||
yaboot
|
||||
mkvmlinuz
|
||||
module-init-tools
|
||||
initrd-tools
|
||||
kernel-image-2.6.7-powerpc
|
||||
kernel-image-2.6.7-power3
|
||||
kernel-image-2.6.7-power4
|
||||
kernel-image-2.4.25-power3-pmac
|
||||
kernel-image-2.4.25-power3-chrp-rs6k
|
||||
kernel-image-2.4.25-power4-pmac
|
||||
kernel-image-2.4.25-power4-chrp-rs6k
|
||||
kernel-image-2.4.25-powerpc-pmac
|
||||
kernel-image-2.4.25-powerpc-small-pmac
|
||||
kernel-image-2.4.25-powerpc-prep
|
||||
kernel-image-2.4.25-powerpc-chrp
|
||||
kernel-image-2.4.25-powerpc-chrp-rs6k
|
||||
kernel-image-2.4.25-apus
|
||||
#endif
|
||||
#ifdef ARCH_sparc
|
||||
discover1
|
||||
initrd-tools
|
||||
kernel-image-2.4-sparc32
|
||||
kernel-image-2.4-sparc32-smp
|
||||
kernel-image-2.4-sparc64
|
||||
kernel-image-2.4-sparc64-smp
|
||||
kernel-image-2.4.26-sparc32
|
||||
kernel-image-2.4.26-sparc32-smp
|
||||
kernel-image-2.4.26-sparc64
|
||||
kernel-image-2.4.26-sparc64-smp
|
||||
#endif
|
||||
#ifdef ARCH_m68k
|
||||
kernel-image-2.2.25-atari
|
||||
kernel-image-2.2.25-bvme6000
|
||||
kernel-image-2.2.25-mac
|
||||
kernel-image-2.2.25-mvme147
|
||||
kernel-image-2.2.25-mvme16x
|
||||
kernel-image-2.4.27-amiga
|
||||
kernel-image-2.4.27-atari
|
||||
kernel-image-2.4.27-bvme6000
|
||||
kernel-image-2.4.27-mvme147
|
||||
kernel-image-2.4.27-mvme16x
|
||||
kernel-image-2.4.27-q40
|
||||
#endif
|
|
@ -41,11 +41,17 @@ kernel-image-2.4.25-1-k6
|
|||
kernel-image-2.4.25-1-k7
|
||||
kernel-image-2.4.25-1-k7-smp
|
||||
kernel-image-2.4.26-1-586tsc
|
||||
kernel-image-2.4.26-1-686
|
||||
kernel-image-2.4.26-1-686-smp
|
||||
kernel-image-2.4.26-1-k6
|
||||
kernel-image-2.4.26-1-k7
|
||||
kernel-image-2.4.26-1-k7-smp
|
||||
kernel-image-2.4.27-1-586tsc
|
||||
kernel-image-2.4.27-1-k6
|
||||
kernel-image-2.4.27-1-k7
|
||||
kernel-image-2.4.27-1-k7-smp
|
||||
kernel-image-2.4.28-1-586tsc
|
||||
kernel-image-2.4.28-1-k6
|
||||
kernel-image-2.4.28-1-k7
|
||||
kernel-image-2.4.28-1-k7-smp
|
||||
kernel-image-2.6-386
|
||||
kernel-image-2.6-686
|
||||
kernel-image-2.6-686-smp
|
||||
|
@ -66,11 +72,12 @@ kernel-image-2.6.6-1-686
|
|||
kernel-image-2.6.6-1-686-smp
|
||||
kernel-image-2.6.6-1-k7
|
||||
kernel-image-2.6.6-1-k7-smp
|
||||
kernel-image-2.6.7-1-386
|
||||
kernel-image-2.6.7-1-686
|
||||
kernel-image-2.6.7-1-686-smp
|
||||
kernel-image-2.6.7-1-k7
|
||||
kernel-image-2.6.7-1-k7-smp
|
||||
kernel-image-2.6.8-1-k7
|
||||
kernel-image-2.6.8-1-k7-smp
|
||||
kernel-image-2.6.9-1-k7
|
||||
kernel-image-2.6.9-1-k7-smp
|
||||
kernel-pcmcia-modules-2.4-386
|
||||
kernel-pcmcia-modules-2.4-586tsc
|
||||
kernel-pcmcia-modules-2.4-686
|
||||
|
@ -93,11 +100,17 @@ kernel-pcmcia-modules-2.4.25-1-k6
|
|||
kernel-pcmcia-modules-2.4.25-1-k7
|
||||
kernel-pcmcia-modules-2.4.25-1-k7-smp
|
||||
kernel-pcmcia-modules-2.4.26-1-586tsc
|
||||
kernel-pcmcia-modules-2.4.26-1-686
|
||||
kernel-pcmcia-modules-2.4.26-1-686-smp
|
||||
kernel-pcmcia-modules-2.4.26-1-k6
|
||||
kernel-pcmcia-modules-2.4.26-1-k7
|
||||
kernel-pcmcia-modules-2.4.26-1-k7-smp
|
||||
kernel-pcmcia-modules-2.4.27-1-586tsc
|
||||
kernel-pcmcia-modules-2.4.27-1-k6
|
||||
kernel-pcmcia-modules-2.4.27-1-k7
|
||||
kernel-pcmcia-modules-2.4.27-1-k7-smp
|
||||
kernel-pcmcia-modules-2.4.28-1-586tsc
|
||||
kernel-pcmcia-modules-2.4.28-1-k6
|
||||
kernel-pcmcia-modules-2.4.28-1-k7
|
||||
kernel-pcmcia-modules-2.4.28-1-k7-smp
|
||||
python2.1
|
||||
smail
|
||||
tcl8.0
|
||||
|
|
|
@ -1,18 +1,19 @@
|
|||
|
||||
/* Generally useful/interesting (and mostly small) packages that
|
||||
would've ended up on CD 2 or 3 if we hadn't prevented it. */
|
||||
many people expect on one of the first CDs even if there's no room for
|
||||
everything from popcon. */
|
||||
|
||||
dpkg-repack
|
||||
grep-dctrl
|
||||
hddtemp
|
||||
martmontools
|
||||
irda-tools
|
||||
hwtools
|
||||
acpid
|
||||
apmd
|
||||
noflushd
|
||||
gpm
|
||||
anacron
|
||||
mc
|
||||
iproute
|
||||
iptables
|
||||
host
|
||||
bzip2
|
||||
unzip
|
||||
|
@ -32,69 +33,30 @@ kdm
|
|||
pdmenu
|
||||
slay
|
||||
vlock
|
||||
xosview
|
||||
cvs
|
||||
wget
|
||||
masqmail
|
||||
fetchmailconf
|
||||
ntp-simple
|
||||
elinks
|
||||
w3m
|
||||
konqueror
|
||||
mtr
|
||||
netcat
|
||||
rsync
|
||||
licq
|
||||
centericq
|
||||
pstotext
|
||||
wv
|
||||
a2ps
|
||||
xkeycaps
|
||||
gimp1.2
|
||||
cupsys
|
||||
sane
|
||||
xsane
|
||||
xscreensaver
|
||||
xli
|
||||
xmix
|
||||
bplay
|
||||
splay
|
||||
xmp
|
||||
mikmod
|
||||
playmidi
|
||||
smpeg-gtv
|
||||
mp3blaster
|
||||
id3
|
||||
xmms
|
||||
cd-discid
|
||||
cdrdao
|
||||
xcolorsel
|
||||
xtoolwait
|
||||
cdrecord
|
||||
mkisofs
|
||||
gphoto2
|
||||
octave
|
||||
csh
|
||||
ee
|
||||
kernel-source-2.4.21
|
||||
kernel-source-2.2.25
|
||||
pcmcia-source
|
||||
mysql-client
|
||||
xfonts-base-transcoded
|
||||
g77
|
||||
ddd
|
||||
ccmalloc
|
||||
diffstat
|
||||
electric-fence
|
||||
memprof
|
||||
libgc6-dev
|
||||
libltdl3
|
||||
libltdl3-dev
|
||||
stl-manual
|
||||
bible-kjv
|
||||
bible-kjv-text
|
||||
verse
|
||||
dictd
|
||||
dict-vera
|
||||
dict-jargon
|
||||
mozilla
|
||||
koffice
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -2,7 +2,7 @@
|
|||
*
|
||||
* Generated with:
|
||||
|
||||
grep-dctrl -s Essential -n -e '.*' /usr/share/tasksel/debian-tasks.desc | sed -e 's? *??' | grep -v ^$ | sort | uniq
|
||||
grep-dctrl -s Key -n -e '.*' /usr/share/tasksel/debian-tasks.desc | sed -e 's? *??' | grep -v ^$ | sort | uniq
|
||||
|
||||
* If the list is too big for the first CD, then we'll have to sort it
|
||||
* better, but hopefully this will never be needed since the goal of that
|
||||
|
@ -11,132 +11,37 @@ grep-dctrl -s Essential -n -e '.*' /usr/share/tasksel/debian-tasks.desc | sed -e
|
|||
* Last updated: $Date$
|
||||
*/
|
||||
|
||||
ami
|
||||
apache
|
||||
apmd
|
||||
ark
|
||||
apache2-mpm-prefork
|
||||
bind9
|
||||
binutils
|
||||
canna
|
||||
chinput
|
||||
console-cyrillic
|
||||
cpanel
|
||||
cpp
|
||||
eog
|
||||
esound
|
||||
evolution
|
||||
exim
|
||||
g++
|
||||
g77
|
||||
galeon
|
||||
gcc
|
||||
gconf
|
||||
gdb
|
||||
gedit
|
||||
gftp
|
||||
gimp
|
||||
gmc
|
||||
gnome
|
||||
gnome-admin
|
||||
gnome-applets
|
||||
gnome-audio
|
||||
gnome-bin
|
||||
gnome-control-center
|
||||
gnome-core
|
||||
gnome-help
|
||||
gnome-media
|
||||
gnome-panel
|
||||
gnome-session
|
||||
gnome-terminal
|
||||
gnome-utils
|
||||
hanterm
|
||||
imlib-base
|
||||
inn2
|
||||
isdnutils
|
||||
cupsys
|
||||
cupsys-bsd
|
||||
cupsys-client
|
||||
exim4
|
||||
gnome-desktop-environment
|
||||
jfbterm
|
||||
kab
|
||||
karm
|
||||
kate
|
||||
kcalc
|
||||
kcharselect
|
||||
kcoloredit
|
||||
kcron
|
||||
kde
|
||||
kdebase
|
||||
kdebase-audiolibs
|
||||
kdebase-doc
|
||||
kdebase-libs
|
||||
kdelibs3
|
||||
kdepasswd
|
||||
kdewallpapers
|
||||
kdf
|
||||
kdict
|
||||
kdm
|
||||
kedit
|
||||
kfind
|
||||
kfract
|
||||
kghostview
|
||||
khexedit
|
||||
kiconedit
|
||||
kit
|
||||
kjots
|
||||
kmail
|
||||
knewsticker
|
||||
knode
|
||||
knotes
|
||||
koffice
|
||||
konqueror
|
||||
konsole
|
||||
korn
|
||||
kpackage
|
||||
kpaint
|
||||
kpm
|
||||
kruler
|
||||
kscreensaver
|
||||
ksirc
|
||||
ksnapshot
|
||||
ksysv
|
||||
kterm
|
||||
ktimer
|
||||
kuser
|
||||
kview
|
||||
language-env
|
||||
libarts
|
||||
libkmid
|
||||
libkonq3
|
||||
locales
|
||||
lpr
|
||||
make
|
||||
manpages-de
|
||||
manpages-es
|
||||
manpages-fr
|
||||
manpages-it
|
||||
manpages-ja
|
||||
manpages-ko
|
||||
manpages-pl
|
||||
manpages-pt
|
||||
manpages-ru
|
||||
manpages-tr
|
||||
manpages-zh
|
||||
nautilus
|
||||
nfs-kernel-server
|
||||
pan
|
||||
pcmcia-cs
|
||||
postgresql
|
||||
ppp
|
||||
pppoe
|
||||
python
|
||||
rxvt-ml
|
||||
samba
|
||||
sawfish-gnome
|
||||
secpolicy
|
||||
strace
|
||||
tcl8.3-dev
|
||||
tetex-base
|
||||
tetex-bin
|
||||
tetex-extra
|
||||
tk8.3-dev
|
||||
user-es
|
||||
xchat-gnome
|
||||
xcin
|
||||
xfonts-intl-japanese
|
||||
x-window-system
|
||||
x-window-system-core
|
||||
xcin
|
||||
xfonts-thai
|
||||
xiterm+thai
|
||||
zhcon
|
||||
|
|
|
@ -17,220 +17,275 @@ rm dumpavail
|
|||
*
|
||||
*/
|
||||
|
||||
x-window-system
|
||||
ppp
|
||||
pppconfig
|
||||
isdnutils
|
||||
fetchmail
|
||||
pppoe
|
||||
anacron
|
||||
diald
|
||||
leafnode
|
||||
lftp
|
||||
wvdial
|
||||
wwwoffle
|
||||
apmd
|
||||
pcmcia-cs
|
||||
anacron
|
||||
irda-common
|
||||
irda-tools
|
||||
netenv
|
||||
noflushd
|
||||
toshutils
|
||||
gnome-help
|
||||
gnome-panel
|
||||
gnome-session
|
||||
gnome-utils
|
||||
sawfish-gnome
|
||||
esound
|
||||
gnome-control-center
|
||||
menu
|
||||
mozilla-psm
|
||||
imlib-base
|
||||
x-window-system
|
||||
x-window-system-core
|
||||
ark
|
||||
kab
|
||||
karm
|
||||
kcalc
|
||||
kcharselect
|
||||
kdepasswd
|
||||
kdf
|
||||
kedit
|
||||
kfind
|
||||
khexedit
|
||||
kjots
|
||||
knotes
|
||||
kpm
|
||||
ktimer
|
||||
kdelibs3
|
||||
kdebase-libs
|
||||
libkonq3
|
||||
kdebase
|
||||
kdewallpapers
|
||||
konsole
|
||||
kcoloredit
|
||||
kfract
|
||||
kghostview
|
||||
kiconedit
|
||||
kpaint
|
||||
kruler
|
||||
ksnapshot
|
||||
kview
|
||||
kcron
|
||||
kpackage
|
||||
ksysv
|
||||
kuser
|
||||
secpolicy
|
||||
kdict
|
||||
kit
|
||||
kmail
|
||||
knewsticker
|
||||
knode
|
||||
korn
|
||||
ksirc
|
||||
koffice
|
||||
doc-linux-ja-html
|
||||
fortune-mod
|
||||
gdm
|
||||
gimp1.2
|
||||
gnome-applets
|
||||
kate
|
||||
gimp-help-sv
|
||||
gnome
|
||||
xscreensaver
|
||||
gnome-desktop-environment
|
||||
hspell-gui
|
||||
imhangul
|
||||
imhangul-status-applet
|
||||
kde
|
||||
kdebase-audiolibs
|
||||
kdebase-doc
|
||||
kdepim-libs
|
||||
kdm
|
||||
konqueror
|
||||
korganizer
|
||||
kscreensaver
|
||||
libarts
|
||||
libkmid
|
||||
mozilla
|
||||
apache
|
||||
kde-i18n-ca
|
||||
kde-i18n-da
|
||||
kde-i18n-de
|
||||
kde-i18n-el
|
||||
kde-i18n-es
|
||||
kde-i18n-fr
|
||||
kde-i18n-he
|
||||
kde-i18n-it
|
||||
kde-i18n-ja
|
||||
kde-i18n-lt
|
||||
kde-i18n-nb
|
||||
kde-i18n-nn
|
||||
kde-i18n-pl
|
||||
kde-i18n-ptbr
|
||||
kde-i18n-ru
|
||||
kde-i18n-sv
|
||||
kde-i18n-tr
|
||||
kde-i18n-uk
|
||||
kde-i18n-zhcn
|
||||
kde-i18n-zhtw
|
||||
kinput2-canna-wnn
|
||||
koffice-i18n-ca
|
||||
koffice-i18n-da
|
||||
koffice-i18n-el
|
||||
koffice-i18n-he
|
||||
koffice-i18n-it
|
||||
koffice-i18n-sv
|
||||
koffice-i18n-tr
|
||||
kterm
|
||||
menu
|
||||
mlterm
|
||||
mozilla-browser
|
||||
mozilla-firefox-locale-uk
|
||||
mozilla-locale-auto
|
||||
mozilla-locale-ca
|
||||
mozilla-locale-da
|
||||
mozilla-locale-de-at
|
||||
mozilla-locale-el
|
||||
mozilla-locale-it
|
||||
mozilla-locale-ja
|
||||
mozilla-locale-ptbr
|
||||
mozilla-psm
|
||||
mozilla-thunderbird-locale-uk
|
||||
myspell-en-gb
|
||||
myspell-en-us
|
||||
nabi
|
||||
openoffice.org
|
||||
openoffice.org-bin
|
||||
openoffice.org-help-de
|
||||
openoffice.org-help-el
|
||||
openoffice.org-help-en
|
||||
openoffice.org-help-es
|
||||
openoffice.org-help-fr
|
||||
openoffice.org-help-it
|
||||
openoffice.org-help-ja
|
||||
openoffice.org-help-ko
|
||||
openoffice.org-help-sv
|
||||
openoffice.org-help-zh-cn
|
||||
openoffice.org-help-zh-tw
|
||||
openoffice.org-l10n-ca
|
||||
openoffice.org-l10n-da
|
||||
openoffice.org-l10n-de
|
||||
openoffice.org-l10n-el
|
||||
openoffice.org-l10n-es
|
||||
openoffice.org-l10n-fr
|
||||
openoffice.org-l10n-he
|
||||
openoffice.org-l10n-it
|
||||
openoffice.org-l10n-ja
|
||||
openoffice.org-l10n-ko
|
||||
openoffice.org-l10n-nb
|
||||
openoffice.org-l10n-nn
|
||||
openoffice.org-l10n-pl
|
||||
openoffice.org-l10n-pt-br
|
||||
openoffice.org-l10n-ru
|
||||
openoffice.org-l10n-sv
|
||||
openoffice.org-l10n-th
|
||||
openoffice.org-l10n-tr
|
||||
openoffice.org-l10n-zh-cn
|
||||
openoffice.org-l10n-zh-tw
|
||||
ttf-baekmuk
|
||||
ttf-freefont
|
||||
ttf-kochi-gothic
|
||||
ttf-kochi-mincho
|
||||
ttf-thryomanes
|
||||
ttf-unfonts
|
||||
x-window-system-core
|
||||
xfonts-a12k12
|
||||
xfonts-ayu
|
||||
xfonts-baekmuk
|
||||
xfonts-biznet-iso-8859-2-100dpi
|
||||
xfonts-biznet-iso-8859-2-75dpi
|
||||
xfonts-biznet-iso-8859-2-base
|
||||
xfonts-bolkhov-cp1251-75dpi
|
||||
xfonts-bolkhov-cp1251-misc
|
||||
xfonts-bolkhov-koi8r-75dpi
|
||||
xfonts-bolkhov-koi8r-misc
|
||||
xfonts-bolkhov-koi8u-75dpi
|
||||
xfonts-bolkhov-koi8u-misc
|
||||
xfonts-cronyx-cp1251-100dpi
|
||||
xfonts-cronyx-isocyr-100dpi
|
||||
xfonts-cronyx-isocyr-75dpi
|
||||
xfonts-cronyx-isocyr-misc
|
||||
xfonts-cronyx-koi8r-100dpi
|
||||
xfonts-cronyx-koi8u-100dpi
|
||||
xfonts-cyrillic
|
||||
xfonts-intl-european
|
||||
xfonts-intl-japanese
|
||||
xfonts-intl-japanese-big
|
||||
xfonts-kaname
|
||||
xfonts-kappa20
|
||||
xfonts-marumoji
|
||||
xfonts-mona
|
||||
xfonts-mplus
|
||||
xfonts-shinonome
|
||||
xfonts-terminus
|
||||
xmanpages-ja
|
||||
xprt-xprintorg
|
||||
xxkb
|
||||
analog
|
||||
procmail
|
||||
exim
|
||||
mailx
|
||||
apache2-doc
|
||||
apache2-mpm-prefork
|
||||
libapache2-mod-perl2
|
||||
libapache2-mod-php4
|
||||
libapache2-mod-python
|
||||
exim4
|
||||
exim4-config
|
||||
exim4-daemon-light
|
||||
mailagent
|
||||
mailx
|
||||
mutt
|
||||
procmail
|
||||
qpopper
|
||||
spamassassin
|
||||
uw-imapd
|
||||
cupsys
|
||||
cupsys-bsd
|
||||
cupsys-client
|
||||
cupsys-driver-gimpprint
|
||||
foomatic-db-engine
|
||||
foomatic-db-hpijs
|
||||
foomatic-filters-ppds
|
||||
foomatic-gui
|
||||
samba
|
||||
samba-doc
|
||||
smbclient
|
||||
smbfs
|
||||
swat
|
||||
libecpg4
|
||||
pgaccess
|
||||
postgresql
|
||||
postgresql-client
|
||||
libecpg3
|
||||
pgaccess
|
||||
postgresql-contrib
|
||||
postgresql-doc
|
||||
samba
|
||||
nfs-kernel-server
|
||||
bind9
|
||||
bind9-doc
|
||||
dlint
|
||||
dnsutils
|
||||
lwresd
|
||||
netatalk
|
||||
samba-doc
|
||||
smbclient
|
||||
smbfs
|
||||
swat
|
||||
gs
|
||||
nfs-kernel-server
|
||||
samba
|
||||
lpr
|
||||
magicfilter
|
||||
samba-doc
|
||||
smbclient
|
||||
smbfs
|
||||
swat
|
||||
emacs20
|
||||
manpages
|
||||
telnet
|
||||
tcsh
|
||||
traceroute
|
||||
finger
|
||||
bsdgames
|
||||
fingerd
|
||||
ftpd
|
||||
man-db
|
||||
mtr
|
||||
netcat
|
||||
nethack
|
||||
pdksh
|
||||
screen
|
||||
ssh
|
||||
talk
|
||||
talkd
|
||||
telnetd
|
||||
ytalk
|
||||
zsh
|
||||
inn2
|
||||
gnuplot
|
||||
gperiodic
|
||||
grace
|
||||
octave2.0
|
||||
pdl
|
||||
plotutils
|
||||
r-base
|
||||
rasmol
|
||||
yorick
|
||||
psutils
|
||||
tetex-base
|
||||
tetex-extra
|
||||
tetex-bin
|
||||
bibindex
|
||||
bibtool
|
||||
dvidvi
|
||||
gv
|
||||
lacheck
|
||||
latex2html
|
||||
lyx
|
||||
mpage
|
||||
pstoedit
|
||||
tetex-doc
|
||||
untex
|
||||
xfig
|
||||
junior-arcade
|
||||
junior-art
|
||||
junior-doc
|
||||
junior-games-card
|
||||
junior-games-gl
|
||||
junior-games-net
|
||||
junior-games-sim
|
||||
junior-games-text
|
||||
junior-internet
|
||||
junior-math
|
||||
junior-programming
|
||||
junior-puzzle
|
||||
junior-sound
|
||||
junior-system
|
||||
junior-toys
|
||||
junior-typing
|
||||
armagetron
|
||||
bsdgames
|
||||
koules
|
||||
lincity-x
|
||||
nethack
|
||||
xgalaga
|
||||
xscavenger
|
||||
xtris
|
||||
manpages-fr
|
||||
aspell-pt-br
|
||||
ibrazilian
|
||||
kde-i18n-ptbr
|
||||
manpages-pt
|
||||
mozilla-locale-ptbr
|
||||
myspell-pt-br
|
||||
openoffice.org-l10n-pt-br
|
||||
util-linux-locales
|
||||
kde-i18n-ptbr
|
||||
mozilla-locale-ptbr
|
||||
openoffice.org-l10n-pt-br
|
||||
aspell-ca
|
||||
icatalan
|
||||
kde-i18n-ca
|
||||
koffice-i18n-ca
|
||||
language-env
|
||||
doc-debian-fr
|
||||
ifrench-gut
|
||||
wfrench
|
||||
xfonts-intl-european
|
||||
xtel
|
||||
locales
|
||||
manpages-de
|
||||
mozilla-locale-ca
|
||||
myspell-ca
|
||||
openoffice.org-l10n-ca
|
||||
util-linux-locales
|
||||
wcatalan
|
||||
kde-i18n-ca
|
||||
koffice-i18n-ca
|
||||
mozilla-locale-ca
|
||||
openoffice.org-l10n-ca
|
||||
bg5ps
|
||||
cce
|
||||
chdrv
|
||||
chinput
|
||||
cpanel
|
||||
debian-zh-faq-s
|
||||
fortune-zh
|
||||
jfbterm
|
||||
kde-i18n-zhcn
|
||||
kon2
|
||||
language-env
|
||||
ding
|
||||
doc-linux-de
|
||||
ingerman
|
||||
trans-de-en
|
||||
user-de
|
||||
wngerman
|
||||
locales
|
||||
manpages-es
|
||||
user-es
|
||||
manpages-zh
|
||||
openoffice.org-help-zh-cn
|
||||
openoffice.org-l10n-zh-cn
|
||||
psfontmgr
|
||||
pydict
|
||||
rxvt-ml
|
||||
stardic
|
||||
tfm-arphic-gbsn00lp
|
||||
tfm-arphic-gkai00mp
|
||||
ttf-arphic-gbsn00lp
|
||||
ttf-arphic-gkai00mp
|
||||
unifont
|
||||
x-ttcidfont-conf
|
||||
xcin
|
||||
xfonts-intl-chinese
|
||||
xfonts-intl-chinese-big
|
||||
yh
|
||||
yiyantang
|
||||
zh-autoconvert
|
||||
zhcon
|
||||
kde-i18n-zhcn
|
||||
openoffice.org-help-zh-cn
|
||||
openoffice.org-l10n-zh-cn
|
||||
bg5ps
|
||||
chdrv
|
||||
chinput
|
||||
cpanel
|
||||
debian-zh-faq-t
|
||||
fortune-zh
|
||||
kde-i18n-zhtw
|
||||
language-env
|
||||
doc-linux-es
|
||||
ispanish
|
||||
wspanish
|
||||
manpages-zh
|
||||
openoffice.org-help-zh-tw
|
||||
openoffice.org-l10n-zh-tw
|
||||
psfontmgr
|
||||
pydict
|
||||
rxvt-ml
|
||||
stardic
|
||||
tfm-arphic-bkai00mp
|
||||
tfm-arphic-bsmi00lp
|
||||
ttf-arphic-bkai00mp
|
||||
ttf-arphic-bsmi00lp
|
||||
ttfprint
|
||||
unifont
|
||||
x-ttcidfont-conf
|
||||
xcin
|
||||
xfonts-intl-chinese
|
||||
yh
|
||||
yiyantang
|
||||
zh-autoconvert
|
||||
zhcon
|
||||
kde-i18n-zhtw
|
||||
openoffice.org-help-zh-tw
|
||||
openoffice.org-l10n-zh-tw
|
||||
console-cyrillic
|
||||
language-env
|
||||
konwert
|
||||
language-env
|
||||
xfonts-bolkhov-cp1251-75dpi
|
||||
xfonts-bolkhov-cp1251-misc
|
||||
xfonts-bolkhov-koi8r-75dpi
|
||||
|
@ -245,190 +300,329 @@ xfonts-cronyx-koi8r-100dpi
|
|||
xfonts-cronyx-koi8u-100dpi
|
||||
xfonts-cyrillic
|
||||
xxkb
|
||||
locales
|
||||
manpages-pl
|
||||
xfonts-bolkhov-cp1251-75dpi
|
||||
xfonts-bolkhov-cp1251-misc
|
||||
xfonts-bolkhov-koi8r-75dpi
|
||||
xfonts-bolkhov-koi8r-misc
|
||||
xfonts-bolkhov-koi8u-75dpi
|
||||
xfonts-bolkhov-koi8u-misc
|
||||
xfonts-cronyx-cp1251-100dpi
|
||||
xfonts-cronyx-isocyr-100dpi
|
||||
xfonts-cronyx-isocyr-75dpi
|
||||
xfonts-cronyx-isocyr-misc
|
||||
xfonts-cronyx-koi8r-100dpi
|
||||
xfonts-cronyx-koi8u-100dpi
|
||||
xfonts-cyrillic
|
||||
xxkb
|
||||
aspell-da
|
||||
idanish
|
||||
kde-i18n-da
|
||||
koffice-i18n-da
|
||||
language-env
|
||||
mozilla-locale-da
|
||||
openoffice.org-l10n-da
|
||||
util-linux-locales
|
||||
wdanish
|
||||
kde-i18n-da
|
||||
koffice-i18n-da
|
||||
mozilla-locale-da
|
||||
openoffice.org-l10n-da
|
||||
doc-debian-fr
|
||||
doc-linux-fr-text
|
||||
ifrench-gut
|
||||
kde-i18n-fr
|
||||
language-env
|
||||
manpages-fr
|
||||
myspell-fr-gut
|
||||
openoffice.org-help-fr
|
||||
openoffice.org-l10n-fr
|
||||
wfrench
|
||||
xfonts-intl-european
|
||||
kde-i18n-fr
|
||||
openoffice.org-help-fr
|
||||
openoffice.org-l10n-fr
|
||||
xfonts-intl-european
|
||||
ding
|
||||
doc-linux-de
|
||||
ingerman
|
||||
kde-i18n-de
|
||||
language-env
|
||||
manpages-de
|
||||
mozilla-locale-de-at
|
||||
myspell-de-at
|
||||
myspell-de-ch
|
||||
myspell-de-de
|
||||
openoffice.org-help-de
|
||||
openoffice.org-l10n-de
|
||||
trans-de-en
|
||||
wngerman
|
||||
kde-i18n-de
|
||||
mozilla-locale-de-at
|
||||
openoffice.org-help-de
|
||||
openoffice.org-l10n-de
|
||||
kde-i18n-el
|
||||
koffice-i18n-el
|
||||
language-env
|
||||
mozilla-locale-el
|
||||
openoffice.org-help-el
|
||||
openoffice.org-l10n-el
|
||||
ttf-freefont
|
||||
ttf-thryomanes
|
||||
xfonts-intl-european
|
||||
kde-i18n-el
|
||||
koffice-i18n-el
|
||||
mozilla-locale-el
|
||||
openoffice.org-help-el
|
||||
openoffice.org-l10n-el
|
||||
ttf-freefont
|
||||
ttf-thryomanes
|
||||
xfonts-intl-european
|
||||
bidiv
|
||||
culmus
|
||||
hspell
|
||||
hspell-gui
|
||||
kde-i18n-he
|
||||
koffice-i18n-he
|
||||
libfribidi0
|
||||
openoffice.org-l10n-he
|
||||
hspell-gui
|
||||
kde-i18n-he
|
||||
koffice-i18n-he
|
||||
openoffice.org-l10n-he
|
||||
apt-howto-it
|
||||
aspell-it
|
||||
debian-reference-it
|
||||
doc-linux-it
|
||||
doc-linux-it-text
|
||||
fortunes-it
|
||||
iitalian
|
||||
kde-i18n-it
|
||||
koffice-i18n-it
|
||||
language-env
|
||||
maint-guide-it
|
||||
manpages-it
|
||||
mozilla-locale-it
|
||||
myspell-it
|
||||
openoffice.org-help-it
|
||||
openoffice.org-l10n-it
|
||||
witalian
|
||||
xfonts-intl-european
|
||||
kde-i18n-it
|
||||
koffice-i18n-it
|
||||
mozilla-locale-it
|
||||
openoffice.org-help-it
|
||||
openoffice.org-l10n-it
|
||||
xfonts-intl-european
|
||||
canna
|
||||
canna-utils
|
||||
doc-debian-ja
|
||||
doc-linux-ja-html
|
||||
doc-linux-ja-text
|
||||
egg
|
||||
ja-trans
|
||||
jfbterm
|
||||
kde-i18n-ja
|
||||
kinput2-canna-wnn
|
||||
kterm
|
||||
language-env
|
||||
lv
|
||||
manpages-ja
|
||||
manpages-ja-dev
|
||||
mlterm
|
||||
mozilla-locale-ja
|
||||
nkf
|
||||
openoffice.org-help-ja
|
||||
openoffice.org-l10n-ja
|
||||
ttf-kochi-gothic
|
||||
ttf-kochi-mincho
|
||||
xfonts-a12k12
|
||||
xfonts-ayu
|
||||
xfonts-intl-japanese
|
||||
xfonts-intl-japanese-big
|
||||
xfonts-kaname
|
||||
xfonts-kappa20
|
||||
xfonts-marumoji
|
||||
xfonts-mona
|
||||
xfonts-mplus
|
||||
xfonts-shinonome
|
||||
xmanpages-ja
|
||||
doc-linux-ja-html
|
||||
kde-i18n-ja
|
||||
kinput2-canna-wnn
|
||||
kterm
|
||||
mlterm
|
||||
mozilla-locale-ja
|
||||
openoffice.org-help-ja
|
||||
openoffice.org-l10n-ja
|
||||
ttf-kochi-gothic
|
||||
ttf-kochi-mincho
|
||||
xfonts-a12k12
|
||||
xfonts-ayu
|
||||
xfonts-intl-japanese
|
||||
xfonts-intl-japanese-big
|
||||
xfonts-kaname
|
||||
xfonts-kappa20
|
||||
xfonts-marumoji
|
||||
xfonts-mona
|
||||
xfonts-mplus
|
||||
xfonts-shinonome
|
||||
xmanpages-ja
|
||||
doc-debian-ko
|
||||
doc-linux-text-ko
|
||||
imhangul
|
||||
imhangul-status-applet
|
||||
jfbterm
|
||||
language-env
|
||||
manpages-ko
|
||||
mozilla-locale-auto
|
||||
nabi
|
||||
openoffice.org-help-ko
|
||||
openoffice.org-l10n-ko
|
||||
ttf-baekmuk
|
||||
ttf-unfonts
|
||||
xfonts-baekmuk
|
||||
imhangul
|
||||
imhangul-status-applet
|
||||
mozilla-locale-auto
|
||||
nabi
|
||||
openoffice.org-help-ko
|
||||
openoffice.org-l10n-ko
|
||||
ttf-baekmuk
|
||||
ttf-unfonts
|
||||
xfonts-baekmuk
|
||||
ilithuanian
|
||||
kde-i18n-lt
|
||||
language-env
|
||||
myspell-lt
|
||||
kde-i18n-lt
|
||||
aspell-no
|
||||
inorwegian
|
||||
kde-i18n-nb
|
||||
kde-i18n-nn
|
||||
language-env
|
||||
locales
|
||||
myspell-nb
|
||||
myspell-nn
|
||||
openoffice.org-l10n-nb
|
||||
openoffice.org-l10n-nn
|
||||
util-linux-locales
|
||||
wnorwegian
|
||||
kde-i18n-nb
|
||||
kde-i18n-nn
|
||||
openoffice.org-l10n-nb
|
||||
openoffice.org-l10n-nn
|
||||
doc-linux-pl
|
||||
doc-linux-pl-html
|
||||
fonty
|
||||
ipolish
|
||||
kde-i18n-pl
|
||||
konwert
|
||||
language-env
|
||||
manpages-pl
|
||||
manpages-pl-dev
|
||||
openoffice.org-l10n-pl
|
||||
wpolish
|
||||
xfonts-biznet-iso-8859-2-100dpi
|
||||
xfonts-biznet-iso-8859-2-75dpi
|
||||
xfonts-biznet-iso-8859-2-base
|
||||
locales
|
||||
canna
|
||||
manpages-ja
|
||||
xfonts-intl-japanese
|
||||
xfonts-base
|
||||
language-env
|
||||
kterm
|
||||
jfbterm
|
||||
asiya24-vfont
|
||||
canna-utils
|
||||
dbskkd-cdb
|
||||
doc-debian-ja
|
||||
doc-linux-ja-text
|
||||
egg
|
||||
freewnn-jserver
|
||||
ja-trans
|
||||
kinput2-canna-wnn
|
||||
lv
|
||||
nkf
|
||||
skk
|
||||
skkinput
|
||||
ttf-xtt-wadalab-gothic
|
||||
ttf-xtt-watanabe-mincho
|
||||
watanabe-vfont
|
||||
xfonts-a12k12
|
||||
xfonts-intl-japanese-big
|
||||
xfonts-kappa20
|
||||
xfonts-marumoji
|
||||
xfonts-shinonome
|
||||
xmanpages-ja
|
||||
yc-el
|
||||
locales
|
||||
chinput
|
||||
manpages-zh
|
||||
xfonts-intl-chinese
|
||||
ttf-arphic-gbsn00lp
|
||||
zhcon
|
||||
x-ttcidfont-conf
|
||||
xcin
|
||||
language-env
|
||||
rxvt-ml
|
||||
jfbterm
|
||||
bg5ps
|
||||
cce
|
||||
chdrv
|
||||
cjk-latex
|
||||
cpanel
|
||||
debian-zh-faq-s
|
||||
doc-linux-zh-s
|
||||
fortune-zh
|
||||
kon2
|
||||
psfontmgr
|
||||
pydict
|
||||
stardic
|
||||
tfm-arphic-gbsn00lp
|
||||
tfm-arphic-gkai00mp
|
||||
ttf-arphic-gkai00mp
|
||||
unifont
|
||||
xfonts-intl-chinese-big
|
||||
yh
|
||||
yiyantang
|
||||
zh-autoconvert
|
||||
locales
|
||||
chinput
|
||||
manpages-zh
|
||||
xfonts-intl-chinese
|
||||
ttf-arphic-bsmi00lp
|
||||
zhcon
|
||||
x-ttcidfont-conf
|
||||
xcin
|
||||
language-env
|
||||
rxvt-ml
|
||||
bg5ps
|
||||
chdrv
|
||||
cjk-latex
|
||||
cpanel
|
||||
debian-zh-faq-t
|
||||
fortune-zh
|
||||
psfontmgr
|
||||
pydict
|
||||
stardic
|
||||
tfm-arphic-bkai00mp
|
||||
tfm-arphic-bsmi00lp
|
||||
ttf-arphic-bkai00mp
|
||||
ttfprint
|
||||
unifont
|
||||
yh
|
||||
yiyantang
|
||||
zh-autoconvert
|
||||
locales
|
||||
kde-i18n-pl
|
||||
openoffice.org-l10n-pl
|
||||
xfonts-biznet-iso-8859-2-100dpi
|
||||
xfonts-biznet-iso-8859-2-75dpi
|
||||
xfonts-biznet-iso-8859-2-base
|
||||
console-cyrillic
|
||||
manpages-ru
|
||||
language-env
|
||||
irussian
|
||||
kde-i18n-ru
|
||||
konwert
|
||||
language-env
|
||||
manpages-ru
|
||||
mueller7-dict
|
||||
myspell-ru
|
||||
openoffice.org-l10n-ru
|
||||
re
|
||||
xfonts-bolkhov-koi8r-75dpi
|
||||
xfonts-bolkhov-koi8r-misc
|
||||
xfonts-cronyx-koi8r-100dpi
|
||||
xfonts-intl-european
|
||||
ami
|
||||
kde-i18n-ru
|
||||
openoffice.org-l10n-ru
|
||||
xfonts-bolkhov-koi8r-75dpi
|
||||
xfonts-bolkhov-koi8r-misc
|
||||
xfonts-cronyx-koi8r-100dpi
|
||||
xfonts-intl-european
|
||||
aspell-es
|
||||
debian-guide-es
|
||||
debian-reference-es
|
||||
debrecipes-es
|
||||
doc-debian-es
|
||||
doc-es-misc
|
||||
doc-linux-es
|
||||
ispanish
|
||||
kde-i18n-es
|
||||
language-env
|
||||
linux-tutorial-es
|
||||
manpages-es
|
||||
myspell-es
|
||||
openoffice.org-help-es
|
||||
openoffice.org-l10n-es
|
||||
util-linux-locales
|
||||
wspanish
|
||||
kde-i18n-es
|
||||
openoffice.org-help-es
|
||||
openoffice.org-l10n-es
|
||||
aspell-sv
|
||||
doc-linux-sv-html
|
||||
gimp-help-sv
|
||||
iswedish
|
||||
kde-i18n-sv
|
||||
koffice-i18n-sv
|
||||
locales
|
||||
manpages-ko
|
||||
doc-debian-ko
|
||||
doc-linux-text-ko
|
||||
hlatex
|
||||
hlatex-fonts-base
|
||||
xfonts-baekmuk
|
||||
cpp
|
||||
gcc
|
||||
g++
|
||||
gdb
|
||||
patch
|
||||
strace
|
||||
stl-manual
|
||||
make
|
||||
manpages-dev
|
||||
binutils
|
||||
bison
|
||||
flex
|
||||
libtool
|
||||
autoconf
|
||||
autoproject
|
||||
c2man
|
||||
cflow
|
||||
cutils
|
||||
cvs
|
||||
cxref
|
||||
gettext
|
||||
glibc-doc
|
||||
indent
|
||||
liwc
|
||||
ltrace
|
||||
nowebm
|
||||
g77
|
||||
ftnchek
|
||||
fweb
|
||||
slatec
|
||||
python-tk
|
||||
python-gtk
|
||||
python-gnome
|
||||
python-gdk-imlib
|
||||
python-glade
|
||||
python-newt
|
||||
ddd
|
||||
gadfly
|
||||
gimp-python
|
||||
htmlgen
|
||||
idle
|
||||
python-dev
|
||||
python-doc
|
||||
python-examples
|
||||
python-extclass
|
||||
python-gdbm
|
||||
python-gendoc
|
||||
python-imaging-sane
|
||||
python-imaging-tk
|
||||
python-kjbuckets
|
||||
python-ldap
|
||||
python-mpz
|
||||
python-netcdf
|
||||
python-numeric
|
||||
python-numeric-tutorial
|
||||
python-pam
|
||||
python-pmw
|
||||
python-pygresql
|
||||
python-xml
|
||||
tk8.3-dev
|
||||
tcl8.3-dev
|
||||
blt-dev
|
||||
itcl3.1-dev
|
||||
itk3.1-dev
|
||||
tktable-dev
|
||||
myspell-sv-se
|
||||
openoffice.org-help-sv
|
||||
openoffice.org-l10n-sv
|
||||
util-linux-locales
|
||||
wswedish
|
||||
gimp-help-sv
|
||||
kde-i18n-sv
|
||||
koffice-i18n-sv
|
||||
openoffice.org-help-sv
|
||||
openoffice.org-l10n-sv
|
||||
cttex
|
||||
language-env
|
||||
nonlock
|
||||
openoffice.org-l10n-th
|
||||
ttmkfdir
|
||||
xfonts-thai
|
||||
xiterm+thai
|
||||
openoffice.org-l10n-th
|
||||
console-terminus
|
||||
kde-i18n-tr
|
||||
koffice-i18n-tr
|
||||
language-env
|
||||
locales
|
||||
manpages-tr
|
||||
openoffice.org-l10n-tr
|
||||
util-linux-locales
|
||||
xfonts-terminus
|
||||
kde-i18n-tr
|
||||
koffice-i18n-tr
|
||||
openoffice.org-l10n-tr
|
||||
xfonts-terminus
|
||||
aspell-ukr
|
||||
console-cyrillic
|
||||
kde-i18n-uk
|
||||
konwert
|
||||
language-env
|
||||
mozilla-firefox-locale-uk
|
||||
mozilla-thunderbird-locale-uk
|
||||
xfonts-bolkhov-koi8u-75dpi
|
||||
xfonts-bolkhov-koi8u-misc
|
||||
xfonts-cronyx-koi8u-100dpi
|
||||
xfonts-intl-european
|
||||
kde-i18n-uk
|
||||
mozilla-firefox-locale-uk
|
||||
mozilla-thunderbird-locale-uk
|
||||
xfonts-bolkhov-koi8u-75dpi
|
||||
xfonts-bolkhov-koi8u-misc
|
||||
xfonts-cronyx-koi8u-100dpi
|
||||
xfonts-intl-european
|
||||
|
|
|
@ -1,30 +1,51 @@
|
|||
basic-desktop
|
||||
produc
|
||||
dialup
|
||||
laptop
|
||||
desktop
|
||||
web-server
|
||||
mail-server
|
||||
database-server
|
||||
file-server
|
||||
print-server
|
||||
unix-server
|
||||
news-server
|
||||
science
|
||||
tex
|
||||
junior
|
||||
games
|
||||
french
|
||||
german
|
||||
spanish
|
||||
cyrillic
|
||||
polish
|
||||
japanese
|
||||
database-server
|
||||
dns-server
|
||||
file-server
|
||||
brazilian-portuguese
|
||||
brazilian-portuguese-desktop
|
||||
catalan
|
||||
catalan-desktop
|
||||
chinese-s
|
||||
chinese-s-desktop
|
||||
chinese-t
|
||||
russian
|
||||
chinese-t-desktop
|
||||
cyrillic
|
||||
cyrillic-desktop
|
||||
danish
|
||||
danish-desktop
|
||||
french
|
||||
french-desktop
|
||||
german
|
||||
german-desktop
|
||||
greek
|
||||
greek-desktop
|
||||
hebrew
|
||||
hebrew-desktop
|
||||
italian
|
||||
italian-desktop
|
||||
japanese
|
||||
japanese-desktop
|
||||
korean
|
||||
c-dev
|
||||
fortran-dev
|
||||
python-dev
|
||||
tcltk-dev
|
||||
korean-desktop
|
||||
lithuanian
|
||||
lithuanian-desktop
|
||||
norwegian
|
||||
norwegian-desktop
|
||||
polish
|
||||
polish-desktop
|
||||
russian
|
||||
russian-desktop
|
||||
spanish
|
||||
spanish-desktop
|
||||
swedish
|
||||
swedish-desktop
|
||||
thai
|
||||
thai-desktop
|
||||
turkish
|
||||
turkish-desktop
|
||||
ukrainian
|
||||
ukrainian-desktop
|
||||
|
|
|
@ -1,25 +1,137 @@
|
|||
kernel-source-2.2.20
|
||||
kernel-image-2.2.20
|
||||
kernel-image-2.2.20-compact
|
||||
kernel-image-2.2.20-idepci
|
||||
kernel-image-2.2.20-reiserfs
|
||||
kernel-image-2.4.18-bf2.4
|
||||
aspell-pt
|
||||
aspell-fr
|
||||
aspell-es
|
||||
aspell-de
|
||||
aspell-da
|
||||
aspell-el
|
||||
acorn-fdisk
|
||||
aspell-bg
|
||||
aspell-cy
|
||||
aspell-br
|
||||
timidity-patches
|
||||
xserver-xfree86-dbg
|
||||
aspell-cy
|
||||
aspell-da
|
||||
aspell-de
|
||||
aspell-el
|
||||
aspell-es
|
||||
aspell-fr
|
||||
aspell-pt
|
||||
cfdisk-utf8
|
||||
gcc272
|
||||
tk8.0
|
||||
tk8.2
|
||||
tcl8.0
|
||||
tcl8.2
|
||||
kernel-image-2.4-386
|
||||
kernel-image-2.4-586tsc
|
||||
kernel-image-2.4-686
|
||||
kernel-image-2.4-686-smp
|
||||
kernel-image-2.4-k6
|
||||
kernel-image-2.4-k7
|
||||
kernel-image-2.4-k7-smp
|
||||
kernel-image-2.4.21-5-386
|
||||
kernel-image-2.4.21-5-586tsc
|
||||
kernel-image-2.4.21-5-686
|
||||
kernel-image-2.4.21-5-686-smp
|
||||
kernel-image-2.4.21-5-k6
|
||||
kernel-image-2.4.21-5-k7
|
||||
kernel-image-2.4.21-5-k7-smp
|
||||
kernel-image-2.4.24-1-386
|
||||
kernel-image-2.4.24-1-586tsc
|
||||
kernel-image-2.4.24-1-686
|
||||
kernel-image-2.4.24-1-686-smp
|
||||
kernel-image-2.4.24-1-k6
|
||||
kernel-image-2.4.24-1-k7
|
||||
kernel-image-2.4.24-1-k7-smp
|
||||
kernel-image-2.4.24-speakup
|
||||
kernel-image-2.4.26-speakup
|
||||
kernel-image-2.4.25-1-386
|
||||
kernel-image-2.4.25-1-586tsc
|
||||
kernel-image-2.4.25-1-686
|
||||
kernel-image-2.4.25-1-686-smp
|
||||
kernel-image-2.4.25-1-k6
|
||||
kernel-image-2.4.25-1-k7
|
||||
kernel-image-2.4.25-1-k7-smp
|
||||
kernel-image-2.4.26-1-586tsc
|
||||
kernel-image-2.4.26-1-686
|
||||
kernel-image-2.4.26-1-686-smp
|
||||
kernel-image-2.4.26-1-k6
|
||||
kernel-image-2.4.26-1-k7
|
||||
kernel-image-2.4.26-1-k7-smp
|
||||
kernel-image-2.4.27-1-586tsc
|
||||
kernel-image-2.4.27-1-686
|
||||
kernel-image-2.4.27-1-686-smp
|
||||
kernel-image-2.4.27-1-k6
|
||||
kernel-image-2.4.27-1-k7
|
||||
kernel-image-2.4.27-1-k7-smp
|
||||
kernel-image-2.4.28-1-586tsc
|
||||
kernel-image-2.4.28-1-686
|
||||
kernel-image-2.4.28-1-686-smp
|
||||
kernel-image-2.4.28-1-k6
|
||||
kernel-image-2.4.28-1-k7
|
||||
kernel-image-2.4.28-1-k7-smp
|
||||
kernel-image-2.6-386
|
||||
kernel-image-2.6-686
|
||||
kernel-image-2.6-686-smp
|
||||
kernel-image-2.6-k7
|
||||
kernel-image-2.6-k7-smp
|
||||
kernel-image-2.6.3-1-386
|
||||
kernel-image-2.6.3-1-686
|
||||
kernel-image-2.6.3-1-686-smp
|
||||
kernel-image-2.6.3-1-k7
|
||||
kernel-image-2.6.3-1-k7-smp
|
||||
kernel-image-2.6.5-1-386
|
||||
kernel-image-2.6.5-1-686
|
||||
kernel-image-2.6.5-1-686-smp
|
||||
kernel-image-2.6.5-1-k7
|
||||
kernel-image-2.6.5-1-k7-smp
|
||||
kernel-image-2.6.6-1-386
|
||||
kernel-image-2.6.6-1-686
|
||||
kernel-image-2.6.6-1-686-smp
|
||||
kernel-image-2.6.6-1-k7
|
||||
kernel-image-2.6.6-1-k7-smp
|
||||
kernel-image-2.6.7-1-686
|
||||
kernel-image-2.6.7-1-686-smp
|
||||
kernel-image-2.6.7-1-k7
|
||||
kernel-image-2.6.7-1-k7-smp
|
||||
kernel-image-2.6.8-1-686
|
||||
kernel-image-2.6.8-1-686-smp
|
||||
kernel-image-2.6.8-1-k7
|
||||
kernel-image-2.6.8-1-k7-smp
|
||||
kernel-image-2.6.9-1-686
|
||||
kernel-image-2.6.9-1-686-smp
|
||||
kernel-image-2.6.9-1-k7
|
||||
kernel-image-2.6.9-1-k7-smp
|
||||
kernel-pcmcia-modules-2.4-386
|
||||
kernel-pcmcia-modules-2.4-586tsc
|
||||
kernel-pcmcia-modules-2.4-686
|
||||
kernel-pcmcia-modules-2.4-686-smp
|
||||
kernel-pcmcia-modules-2.4-k6
|
||||
kernel-pcmcia-modules-2.4-k7
|
||||
kernel-pcmcia-modules-2.4-k7-smp
|
||||
kernel-pcmcia-modules-2.4.24-1-386
|
||||
kernel-pcmcia-modules-2.4.24-1-586tsc
|
||||
kernel-pcmcia-modules-2.4.24-1-686
|
||||
kernel-pcmcia-modules-2.4.24-1-686-smp
|
||||
kernel-pcmcia-modules-2.4.24-1-k6
|
||||
kernel-pcmcia-modules-2.4.24-1-k7
|
||||
kernel-pcmcia-modules-2.4.24-1-k7-smp
|
||||
kernel-pcmcia-modules-2.4.25-1-386
|
||||
kernel-pcmcia-modules-2.4.25-1-586tsc
|
||||
kernel-pcmcia-modules-2.4.25-1-686
|
||||
kernel-pcmcia-modules-2.4.25-1-686-smp
|
||||
kernel-pcmcia-modules-2.4.25-1-k6
|
||||
kernel-pcmcia-modules-2.4.25-1-k7
|
||||
kernel-pcmcia-modules-2.4.25-1-k7-smp
|
||||
kernel-pcmcia-modules-2.4.26-1-586tsc
|
||||
kernel-pcmcia-modules-2.4.26-1-686
|
||||
kernel-pcmcia-modules-2.4.26-1-686-smp
|
||||
kernel-pcmcia-modules-2.4.26-1-k6
|
||||
kernel-pcmcia-modules-2.4.26-1-k7
|
||||
kernel-pcmcia-modules-2.4.26-1-k7-smp
|
||||
kernel-pcmcia-modules-2.4.27-1-586tsc
|
||||
kernel-pcmcia-modules-2.4.27-1-686
|
||||
kernel-pcmcia-modules-2.4.27-1-686-smp
|
||||
kernel-pcmcia-modules-2.4.27-1-k6
|
||||
kernel-pcmcia-modules-2.4.27-1-k7
|
||||
kernel-pcmcia-modules-2.4.27-1-k7-smp
|
||||
kernel-pcmcia-modules-2.4.28-1-586tsc
|
||||
kernel-pcmcia-modules-2.4.28-1-686
|
||||
kernel-pcmcia-modules-2.4.28-1-686-smp
|
||||
kernel-pcmcia-modules-2.4.28-1-k6
|
||||
kernel-pcmcia-modules-2.4.28-1-k7
|
||||
kernel-pcmcia-modules-2.4.28-1-k7-smp
|
||||
python2.1
|
||||
zmailer
|
||||
smail
|
||||
tcl8.0
|
||||
tk8.0
|
||||
xserver-xfree86-dbg
|
||||
zmailer
|
||||
|
|
|
@ -26,7 +26,7 @@ N=$1
|
|||
CDDIR=$2
|
||||
BOOTDIR=
|
||||
if [ "$DI_WWW_HOME" = "default" ];then
|
||||
DI_WWW_HOME="http://people.debian.org/~vorlon/d-i/images/daily/cdrom/"
|
||||
DI_WWW_HOME="http://people.debian.org/~jbailey/d-i/alpha/daily/cdrom/"
|
||||
fi
|
||||
if [ ! "$DI_DIST" ]; then
|
||||
DI_DIST="$DI_CODENAME"
|
||||
|
|
|
@ -22,14 +22,12 @@ fi
|
|||
|
||||
cd $CDDIR/..
|
||||
|
||||
#
|
||||
# This script is called with $1 (now $N) as the CD to
|
||||
# make bootable. N may be in the form "n" or "n_NONUS"
|
||||
# There may be more than 4 disks...support extras.
|
||||
|
||||
# Strip NONUS part of disk number
|
||||
# NN will be 1...N so it can be used as an index
|
||||
#
|
||||
NN=`echo $N | sed -e 's/_NONUS//'`
|
||||
|
||||
# List of boot image for each CD
|
||||
|
@ -82,68 +80,50 @@ else
|
|||
fi
|
||||
fi
|
||||
|
||||
#install_languages $CDDIR
|
||||
write_isolinux_config () {
|
||||
cat > boot$N/isolinux/isolinux.cfg <<EOF
|
||||
DEFAULT /install/vmlinuz
|
||||
APPEND vga=normal initrd=/install/initrd.gz ramdisk_size=10240 root=/dev/rd/0 devfs=mount,dall rw --
|
||||
LABEL linux
|
||||
kernel /install/vmlinuz
|
||||
LABEL cdrom
|
||||
kernel /install/vmlinuz
|
||||
LABEL expert
|
||||
kernel /install/vmlinuz
|
||||
append DEBCONF_PRIORITY=low vga=normal initrd=/install/initrd.gz ramdisk_size=10240 root=/dev/rd/0 devfs=mount,dall rw --
|
||||
DISPLAY isolinux.txt
|
||||
TIMEOUT 0
|
||||
PROMPT 1
|
||||
F1 f1.txt
|
||||
F2 f2.txt
|
||||
F3 f3.txt
|
||||
F4 f4.txt
|
||||
F5 f5.txt
|
||||
F6 f6.txt
|
||||
F7 f7.txt
|
||||
F8 f8.txt
|
||||
F9 f9.txt
|
||||
F0 f10.txt
|
||||
EOF
|
||||
}
|
||||
|
||||
# Only disk one gets the extra files installed
|
||||
#
|
||||
if [ "$NN" = "1" ]; then
|
||||
|
||||
|
||||
# populate the install directory as well
|
||||
for disk in $DISK_IMAGES; do
|
||||
dir=$(dirname $disk)
|
||||
mkdir -p $CDDIR/install/$dir
|
||||
cp -lf $disk $CDDIR/install/$dir
|
||||
done
|
||||
|
||||
# ISOLINUX setup
|
||||
|
||||
# Include Smart Boot Manager image for people where isolinux fails
|
||||
gzip -dc $BASEDIR/data/$DI_CODENAME/sbm.bin.gz > $CDDIR/install/sbm.bin
|
||||
# Keep the original file timestamp
|
||||
touch -r $BASEDIR/data/$DI_CODENAME/sbm.bin.gz $CDDIR/install/sbm.bin
|
||||
cp -p $BASEDIR/data/$DI_CODENAME/README.sbm $CDDIR/install/
|
||||
# Isolinux help files come from d-i.
|
||||
cat cdrom/debian-cd_info.tar.gz | (cd boot$N/isolinux/; tar zx)
|
||||
mv -f boot$N/isolinux/syslinux.txt boot$N/isolinux/isolinux.txt
|
||||
if [ -e boot$N/isolinux/f3.txt.with26 ];then
|
||||
mv boot$N/isolinux/f3.txt.with26 boot$N/isolinux/f3.txt
|
||||
for image in cdrom/2.6/initrd.gz cdrom/2.6/vmlinuz; do
|
||||
if [ ! -e "$image" ]; then
|
||||
dir=$(dirname $image)
|
||||
mkdir -p $dir
|
||||
if [ ! "$DI_WWW_HOME" ];then
|
||||
cp "$MIRROR/dists/$DI_DIST/main/installer-$ARCH/current/images/$image" "$image"
|
||||
else
|
||||
wget "$DI_WWW_HOME/$image" -O "$image"
|
||||
fi
|
||||
fi
|
||||
done
|
||||
cp -a cdrom/2.6 $CDDIR/install/2.6
|
||||
|
||||
if [ "$SPLASHPNG" ] ; then
|
||||
# Insert our own splash screen. Color index 15 is background, and
|
||||
# index 7 is foreground. Set to black and white respecively
|
||||
pngtopnm < $SPLASHPNG | ppmquant 16 | \
|
||||
ppmtolss16 "#ffffff=7" "#000000=15" > boot$N/isolinux/splash.rle
|
||||
fi
|
||||
|
||||
# Isolinux config file.
|
||||
cat > boot$N/isolinux/isolinux.cfg <<EOF
|
||||
DEFAULT /install/vmlinuz APPEND $KERNEL_PARAMS vga=normal initrd=/install/initrd.gz ramdisk_size=10240 root=/dev/rd/0 init=/linuxrc devfs=mount,dall rw
|
||||
write_isolinux_config_26 () {
|
||||
cat > boot$N/isolinux/isolinux.cfg <<EOF
|
||||
DEFAULT /install/vmlinuz
|
||||
APPEND $KERNEL_PARAMS vga=normal initrd=/install/initrd.gz ramdisk_size=10240 root=/dev/rd/0 devfs=mount,dall rw --
|
||||
LABEL linux
|
||||
kernel /install/vmlinuz
|
||||
LABEL cdrom
|
||||
kernel /install/vmlinuz
|
||||
LABEL linux26
|
||||
kernel /install/2.6/vmlinuz
|
||||
APPEND $KERNEL_PARAMS vga=normal initrd=/install/2.6/initrd.gz ramdisk_size=10240 root=/dev/rd/0 init=/linuxrc devfs=mount,dall rw
|
||||
append $KERNEL_PARAMS vga=normal initrd=/install/2.6/initrd.gz ramdisk_size=10240 root=/dev/rd/0 devfs=mount,dall rw --
|
||||
LABEL expert
|
||||
kernel /install/vmlinuz
|
||||
append $KERNEL_PARAMS DEBCONF_PRIORITY=low vga=normal initrd=/install/initrd.gz ramdisk_size=10240 root=/dev/rd/0 init=/linuxrc devfs=mount,dall rw
|
||||
append $KERNEL_PARAMS DEBCONF_PRIORITY=low vga=normal initrd=/install/initrd.gz ramdisk_size=10240 root=/dev/rd/0 devfs=mount,dall rw --
|
||||
LABEL expert26
|
||||
kernel /install/2.6/vmlinuz
|
||||
append $KERNEL_PARAMS DEBCONF_PRIORITY=low vga=normal initrd=/install/2.6/initrd.gz ramdisk_size=10240 root=/dev/rd/0 init=/linuxrc devfs=mount,dall rw
|
||||
append $KERNEL_PARAMS DEBCONF_PRIORITY=low vga=normal initrd=/install/2.6/initrd.gz ramdisk_size=10240 root=/dev/rd/0 devfs=mount,dall rw --
|
||||
DISPLAY isolinux.txt
|
||||
TIMEOUT 0
|
||||
PROMPT 1
|
||||
|
@ -158,65 +138,60 @@ F8 f8.txt
|
|||
F9 f9.txt
|
||||
F0 f10.txt
|
||||
EOF
|
||||
}
|
||||
|
||||
else
|
||||
# Only disk one gets the extra files installed
|
||||
if [ "$NN" = "1" ]; then
|
||||
# populate the install directory as well
|
||||
for disk in $DISK_IMAGES; do
|
||||
dir=$(dirname $disk)
|
||||
mkdir -p $CDDIR/install/$dir
|
||||
cp -lf $disk $CDDIR/install/$dir
|
||||
done
|
||||
|
||||
# Isolinux config file.
|
||||
cat > boot$N/isolinux/isolinux.cfg <<EOF
|
||||
DEFAULT /install/vmlinuz
|
||||
APPEND vga=normal initrd=/install/initrd.gz ramdisk_size=10240 root=/dev/rd/0 init=/linuxrc devfs=mount,dall rw
|
||||
LABEL linux
|
||||
kernel /install/vmlinuz
|
||||
LABEL cdrom
|
||||
kernel /install/vmlinuz
|
||||
LABEL expert
|
||||
kernel /install/vmlinuz
|
||||
append DEBCONF_PRIORITY=low vga=normal initrd=/install/initrd.gz ramdisk_size=10240 root=/dev/rd/0 init=/linuxrc devfs=mount,dall rw
|
||||
DISPLAY isolinux.txt
|
||||
TIMEOUT 0
|
||||
PROMPT 1
|
||||
F1 f1.txt
|
||||
F2 f2.txt
|
||||
F3 f3.txt
|
||||
F4 f4.txt
|
||||
F5 f5.txt
|
||||
F6 f6.txt
|
||||
F7 f7.txt
|
||||
F8 f8.txt
|
||||
F9 f9.txt
|
||||
F0 f10.txt
|
||||
EOF
|
||||
|
||||
fi
|
||||
|
||||
(echo "Tools for DOS :" ; \
|
||||
echo "lodlin/ load Linux kernel from DOS" ;\
|
||||
echo "rawrite2/ rawrite 2.0 : create disks from disk images (*.bin)"; \
|
||||
) |todos > $CDDIR/tools/README.tools
|
||||
|
||||
# Loadlin script for starting install via dos/windows
|
||||
(cat <<EOF;
|
||||
@ echo off
|
||||
rem Flush any write-cached disk blocks before we leave DOS.
|
||||
If your system does not use smartdrv an error message will appear,
|
||||
you can safely ignore that.
|
||||
smartdrv /c
|
||||
|
||||
echo using CDROM install
|
||||
loadlin.exe vmlinuz vga=normal initrd=initrd.gz ramdisk_size=8192 root=/dev/rd/0 init=/linuxrc devfs=mount,dall rw
|
||||
|
||||
EOF
|
||||
) |todos > $CDDIR/install/boot.bat
|
||||
# Include Smart Boot Manager image for people where isolinux fails
|
||||
gzip -dc $BASEDIR/data/$DI_CODENAME/sbm.bin.gz > $CDDIR/install/sbm.bin
|
||||
# Keep the original file timestamp
|
||||
touch -r $BASEDIR/data/$DI_CODENAME/sbm.bin.gz $CDDIR/install/sbm.bin
|
||||
cp -p $BASEDIR/data/$DI_CODENAME/README.sbm $CDDIR/install/
|
||||
# Isolinux help files come from d-i.
|
||||
cat cdrom/debian-cd_info.tar.gz | (cd boot$N/isolinux/; tar zx)
|
||||
mv -f boot$N/isolinux/syslinux.txt boot$N/isolinux/isolinux.txt
|
||||
if [ -e boot$N/isolinux/f3.txt.with26 ];then
|
||||
mv boot$N/isolinux/f3.txt.with26 boot$N/isolinux/f3.txt
|
||||
for image in cdrom/2.6/initrd.gz cdrom/2.6/vmlinuz; do
|
||||
if [ ! -e "$image" ]; then
|
||||
dir=$(dirname $image)
|
||||
mkdir -p $dir
|
||||
if [ ! "$DI_WWW_HOME" ];then
|
||||
cp "$MIRROR/dists/$DI_DIST/main/installer-$ARCH/current/images/$image" "$image"
|
||||
else
|
||||
wget "$DI_WWW_HOME/$image" -O "$image"
|
||||
fi
|
||||
fi
|
||||
done
|
||||
cp -a cdrom/2.6 $CDDIR/install/2.6
|
||||
write_isolinux_config_26
|
||||
else
|
||||
write_isolinux_config
|
||||
fi
|
||||
|
||||
if [ "$SPLASHPNG" ] ; then
|
||||
# Insert our own splash screen. Color index 15 is
|
||||
# background, and index 7 is foreground. Set to black and
|
||||
# white respecively
|
||||
pngtopnm < $SPLASHPNG | ppmquant 16 | \
|
||||
ppmtolss16 "#ffffff=7" "#000000=15" > boot$N/isolinux/splash.rle
|
||||
fi
|
||||
fi
|
||||
|
||||
# write final lines to mkisofs_opts
|
||||
if [ "$NN" = "1" ]; then
|
||||
echo -n "boot$N " >> $N.mkisofs_opts
|
||||
echo -n "boot$N " >> $N.mkisofs_opts
|
||||
else
|
||||
if [ -n "$THISTYPE" ]; then
|
||||
echo -n "-c boot/boot.catalog boot$N " >> $N.mkisofs_opts
|
||||
fi
|
||||
if [ -n "$THISTYPE" ]; then
|
||||
echo -n "-c boot/boot.catalog boot$N " >> $N.mkisofs_opts
|
||||
fi
|
||||
fi
|
||||
|
||||
# th,th, thats all
|
||||
|
|
|
@ -32,9 +32,9 @@ fi
|
|||
for image in boot.img; do
|
||||
if [ ! -e "$image" ]; then
|
||||
if [ ! "$DI_WWW_HOME" ];then
|
||||
cp "$MIRROR/dists/$DI_DIST/main/installer-$ARCH/current/images/$image" .
|
||||
cp "$MIRROR/dists/$DI_DIST/main/installer-$ARCH/current/images/cdrom/$image" .
|
||||
else
|
||||
wget "$DI_WWW_HOME/$image"
|
||||
wget "$DI_WWW_HOME/cdrom/$image"
|
||||
fi
|
||||
fi
|
||||
done
|
||||
|
|
|
@ -13,15 +13,21 @@ set -e
|
|||
N=$1
|
||||
CDDIR=$2
|
||||
INSTALLDIR=$CDDIR/install
|
||||
|
||||
# the ! case further down doesn't seem to work.
|
||||
#if [ ! "$DI_WWW_HOME" ];then
|
||||
# DI_WWW_HOME="default"
|
||||
#fi
|
||||
if [ "$DI_WWW_HOME" = "default" ];then
|
||||
DI_WWW_HOME="http://people.debian.org/~smarenka/d-i/images-m68k/daily"
|
||||
DI_WWW_HOME="http://people.debian.org/~smarenka/d-i/images-m68k/daily/"
|
||||
elif [ "$DI_WWW_HOME" = "test" ];then
|
||||
DI_WWW_HOME="http://people.debian.org/~smarenka/d-i/test/cd"
|
||||
DI_WWW_HOME="http://people.debian.org/~smarenka/d-i/test/cd/"
|
||||
fi
|
||||
if [ ! "$DI_DIST" ]; then
|
||||
DI_DIST="$DI_CODENAME"
|
||||
fi
|
||||
|
||||
DI_DIR="$MIRROR/dists/$DI_DIST/main/installer-$ARCH/current/images"
|
||||
DI_BOOTLOADER="http://people.debian.org/~smarenka/d-i"
|
||||
|
||||
cd $CDDIR/..
|
||||
|
@ -36,6 +42,7 @@ fi
|
|||
|
||||
echo "DI_WWW_HOME: $DI_WWW_HOME"
|
||||
echo "DI_BOOTLOADER: $DI_BOOTLOADER"
|
||||
echo "DI_DIR: $DI_DIR"
|
||||
|
||||
install_languages $CDDIR
|
||||
|
||||
|
@ -49,43 +56,53 @@ cd $INSTALLDIR
|
|||
# available to build the cd.
|
||||
|
||||
if [ ! "$DI_WWW_HOME" ];then
|
||||
DI_DIR="$MIRROR/dists/$DI_DIST/main/installer-$ARCH/current/images"
|
||||
SUBARCHS=`find "$DI_DIR/*" -type d -print | cut -d'/' -f3`
|
||||
|
||||
for subarch in $SUBARCHS; do
|
||||
echo "subarch: $subarch"
|
||||
mkdir $subarch
|
||||
cp "$DI_DIR"/$subarch/* $subarch
|
||||
done
|
||||
cp "$DI_DIR/cdrom-initrd.gz" root.bin
|
||||
if [ -f "$DI_DIR/cdrom22-initrd.gz" ]; then
|
||||
cp "$DI_DIR/cdrom22-initrd.gz" root22.bin
|
||||
if [ ! $DI_DIR ]; then
|
||||
echo "Rats, can't find: $DI_DIR!"
|
||||
fi
|
||||
cp "$DI_DIR/MANIFEST" .
|
||||
cp -a $DI_DIR/* .
|
||||
|
||||
# SUBARCHS=`find "$DI_DIR/*" -type d -print | sed -e 's,.*/,,'`
|
||||
# for subarch in $SUBARCHS; do
|
||||
# echo "subarch: $subarch"
|
||||
# mkdir $subarch
|
||||
# cp -a "$DI_DIR"/$subarch/* $subarch
|
||||
# done
|
||||
# cp "$DI_DIR/cdrom-initrd.gz" root.bin
|
||||
# if [ -f "$DI_DIR/cdrom22-initrd.gz" ]; then
|
||||
# cp "$DI_DIR/cdrom22-initrd.gz" root22.bin
|
||||
# fi
|
||||
# cp "$DI_DIR/MANIFEST" .
|
||||
else
|
||||
SUBARCHS=$(wget -q "$DI_WWW_HOME/" -O - | \
|
||||
sed -n -e 's/.*>\(.*\)\/<.*/\1/p')
|
||||
wget -q -np -nH --cut-dirs=4 -r -l 3 -R '.gif,.log,stats.txt,index*' "$DI_WWW_HOME"
|
||||
|
||||
# SUBARCHS=$(wget -q "$DI_WWW_HOME/" -O - | \
|
||||
# sed -n -e 's/.*>\(.*\)\/<.*/\1/p')
|
||||
|
||||
# for subarch in $SUBARCHS; do
|
||||
# echo "subarch: $subarch"
|
||||
# mkdir $subarch
|
||||
# cd $subarch
|
||||
# wget -q -np -nd -r -l 1 -R '.gif' "$DI_WWW_HOME/$subarch"
|
||||
# rm index*
|
||||
# cd ..
|
||||
# done
|
||||
# wget -O root.bin "$DI_WWW_HOME/cdrom-initrd.gz"
|
||||
# if ! wget -O root22.bin "$DI_WWW_HOME/cdrom22-initrd.gz" ; then
|
||||
# rm root22.bin
|
||||
# fi
|
||||
# wget -O MANIFEST "$DI_WWW_HOME/MANIFEST"
|
||||
|
||||
for subarch in $SUBARCHS; do
|
||||
echo "subarch: $subarch"
|
||||
mkdir $subarch
|
||||
cd $subarch
|
||||
wget -q -np -nd -r -l 1 -R '.gif' "$DI_WWW_HOME/$subarch"
|
||||
rm index*
|
||||
cd ..
|
||||
done
|
||||
wget -O root.bin "$DI_WWW_HOME/cdrom-initrd.gz"
|
||||
if ! wget -O root22.bin "$DI_WWW_HOME/cdrom22-initrd.gz" ; then
|
||||
rm root22.bin
|
||||
fi
|
||||
wget -O MANIFEST "$DI_WWW_HOME/MANIFEST"
|
||||
fi
|
||||
|
||||
SUBARCHS=`grep vmlinu MANIFEST | cut -d'-' -f3 | sort -u | awk '{printf "%s ", $1}'`
|
||||
# grab unpackged stuff
|
||||
if [ -d tools ]; then
|
||||
cd tools
|
||||
fi
|
||||
for subarch in $SUBARCHS; do
|
||||
TARF="bootloaders-$subarch.tar.bz2"
|
||||
if `wget -O $TARF "$DI_BOOTLOADER/$TARF"` ; then
|
||||
tar -xvjf $TARF
|
||||
if `wget -q -O $TARF "$DI_BOOTLOADER/$TARF"` ; then
|
||||
tar -xjf $TARF
|
||||
fi
|
||||
rm -f $TARF
|
||||
done
|
||||
|
@ -99,13 +116,22 @@ if [ "" != "`echo $SUBARCHS | grep amiga`" ]; then
|
|||
|
||||
# Setup amiga icons
|
||||
cp amiga/amiga.info $CDDIR/install.info
|
||||
if [ -d $INSTALLDIR/tools ]; then
|
||||
cp amiga/amiga.info $INSTALLDIR/tools.info
|
||||
fi
|
||||
mv amiga/amiga.info .
|
||||
fi
|
||||
|
||||
cd $INSTALLDIR
|
||||
|
||||
# bvme6000 specific stuff
|
||||
if [ "" != "`echo $SUBARCHS | grep bvme6000`" ]; then
|
||||
mkdir -p $CDDIR/boot1/boot
|
||||
cp bvme6000/cdrom-boot.img.gz $CDDIR/boot1/boot/boot.bin
|
||||
if [ -f bvme6000/cdrom-boot.img.gz ]; then
|
||||
cp bvme6000/cdrom-boot.img.gz $CDDIR/boot1/boot/boot.bin
|
||||
else
|
||||
cp cdrom/bvme6000-boot.img.gz $CDDIR/boot1/boot/boot.bin
|
||||
fi
|
||||
echo -n " -b boot/boot.bin -c boot/boot.catalog boot1" \
|
||||
>> $N.mkisofs_opts
|
||||
fi
|
||||
|
|
|
@ -14,7 +14,7 @@ N=$1
|
|||
CDDIR=$2
|
||||
INSTALLDIR=$CDDIR/install
|
||||
if [ "$DI_WWW_HOME" = "default" ];then
|
||||
DI_WWW_HOME="http://people.debian.org/~luther/debian-installer/daily-powerpc-built/current"
|
||||
DI_WWW_HOME="http://people.debian.org/~luther/d-i/images/daily"
|
||||
fi
|
||||
if [ ! "$DI_DIST" ]; then
|
||||
DI_DIST="$DI_CODENAME"
|
||||
|
@ -31,13 +31,25 @@ fi
|
|||
|
||||
install_languages $CDDIR
|
||||
|
||||
echo -n "--netatalk -hfs -probe -map $BASEDIR/data/hfs.map" \
|
||||
echo -n "--chrp-boot --netatalk -hfs -probe -map $BASEDIR/data/hfs.map" \
|
||||
> $N.mkisofs_opts
|
||||
# We are still missing this for prep
|
||||
#echo -n " -prep-boot install/prep/boot.bin" >> $N.mkisofs_opts
|
||||
# For newworld Mac booting - Note, no spaces in volid!
|
||||
echo -n " -part -no-desktop -hfs-bless CD$N/install -hfs-volid Debian/PowerPC_${CODENAME}" \
|
||||
>> $N.mkisofs_opts
|
||||
# Recommended size for a HFS Catalog is 4 megas per giga, defaults to 4 megas
|
||||
if [ -n "$SIZELIMIT1" ];then
|
||||
if [ "$SIZELIMIT1" -gt 1000000000 ];then
|
||||
let newsize="$SIZELIMIT1"/256
|
||||
echo "-hfs-parms MAX_XTCSIZE=$newsize" >> $N.mkisofs_opts
|
||||
fi
|
||||
else
|
||||
if [ -n "$SIZELIMIT" ] && [ "$SIZELIMIT" -gt 1000000000 ];then
|
||||
let newsize="$SIZELIMIT"/256
|
||||
echo "-hfs-parms MAX_XTCSIZE=$newsize" >> $N.mkisofs_opts
|
||||
fi
|
||||
fi
|
||||
|
||||
cd $INSTALLDIR
|
||||
# Extract yaboot from the archive
|
||||
|
@ -72,8 +84,20 @@ do
|
|||
else
|
||||
DI_DIR="di_stuff"
|
||||
wget -r -nd --no-parent --level=1 -P "$DI_DIR" "$DI_WWW_HOME/$subarch/cdrom/"
|
||||
# One of these two wgets will fail; the price of maintaining
|
||||
# compatibility. The 2.4/2.6 duplication can go away once the new
|
||||
# debian-installer image layout reaches sarge.
|
||||
wget -r -nd --no-parent --level=1 -P "$DI_DIR/2.4" "$DI_WWW_HOME/$subarch/cdrom/2.4/"
|
||||
wget -r -nd --no-parent --level=1 -P "$DI_DIR/2.6" "$DI_WWW_HOME/$subarch/cdrom/2.6/"
|
||||
rm -f "$DI_DIR"/index* "$DI_DIR/2.6"/index*
|
||||
rm -f "$DI_DIR"/index* "$DI_DIR/2.4"/index* "$DI_DIR/2.6"/index*
|
||||
if [ -d "$DI_DIR/2.6" ]; then
|
||||
# Cope with old debian-installer image layout from before 2.6
|
||||
# became the default.
|
||||
mkdir -p "$DI_DIR/2.4"
|
||||
find "$DI_DIR" -type f -maxdepth 1 | xargs -r mv --target-directory="$DI_DIR/2.4"
|
||||
find "$DI_DIR/2.6" -type f -maxdepth 1 | xargs -r mv --target-directory="$DI_DIR"
|
||||
rm -rf "$DI_DIR/2.6"
|
||||
fi
|
||||
fi
|
||||
cp -a "$DI_DIR" "$subarch"
|
||||
rm -rf di_stuff
|
||||
|
|
|
@ -35,11 +35,21 @@ inst=boot1
|
|||
# Setup directories
|
||||
mkdir -p $inst/boot
|
||||
|
||||
silo_deb=`ls $MIRROR/pool/main/s/silo/silo_*.deb | tail -1`
|
||||
silo_deb=`ls -t $MIRROR/pool/main/s/silo/silo_*.deb | tail -1`
|
||||
# put the relevant parts of SILO boot loader
|
||||
(ar p $silo_deb data.tar.gz | \
|
||||
tar zxf - -C $inst/ ./boot/{cd,second}.b)
|
||||
|
||||
if [ ! -e $inst/boot/cd.b ] ; then
|
||||
echo "no cd.b found! exiting"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [ ! -e $inst/boot/second.b ] ; then
|
||||
echo "no second.b found! exiting"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# Some custom etc files
|
||||
cp -f -p $BASEDIR/data/sparc/etc/{debian.txt,silo.conf} \
|
||||
$inst/boot/
|
||||
|
|
|
@ -37,6 +37,7 @@ wireless-tools
|
|||
xfsprogs
|
||||
jfsutils
|
||||
reiserfsprogs
|
||||
libfribidi0
|
||||
#ifdef ARCH_i386
|
||||
discover
|
||||
discover1
|
||||
|
@ -50,7 +51,7 @@ EOF
|
|||
/bin/sed -n 's/Package: \(kernel-pcmcia-modules-2.4.*-386\)$/\1/p' \
|
||||
$MIRROR/dists/$CODENAME/main/binary-i386/Packages|/usr/bin/tail -n 1 \
|
||||
>> debian-installer+kernel
|
||||
# Leave off 2.6 from debian-edu CDs to save space.
|
||||
#Leave off 2.6 from debian-edu CDs to save space.
|
||||
#/bin/sed -n 's/Package: \(kernel-image-2.6.*-386\)$/\1/p' \
|
||||
# $MIRROR/dists/$CODENAME/main/binary-i386/Packages|/usr/bin/tail -n 1 \
|
||||
# >> debian-installer+kernel
|
||||
|
@ -58,6 +59,8 @@ EOF
|
|||
cat >> debian-installer+kernel << EOF
|
||||
#endif
|
||||
#ifdef ARCH_alpha
|
||||
aboot
|
||||
aboot-base
|
||||
discover1
|
||||
EOF
|
||||
|
||||
|
@ -82,8 +85,11 @@ discover1
|
|||
initrd-tools
|
||||
EOF
|
||||
|
||||
/bin/sed -n 's/Package: \(kernel-image-.*\)$/\1/p' \
|
||||
$MIRROR/dists/$CODENAME/main/binary-ia64/Packages | grep 2.4 | tail -n 4 \
|
||||
/bin/sed -n 's/Package: \(kernel-image-2\.4\..*\)$/\1/p' \
|
||||
$MIRROR/dists/$CODENAME/main/binary-ia64/Packages | tail -n 4 \
|
||||
>> debian-installer+kernel
|
||||
/bin/sed -n 's/Package: \(kernel-image-2\.4-.*\)$/\1/p' \
|
||||
$MIRROR/dists/$CODENAME/main/binary-ia64/Packages \
|
||||
>> debian-installer+kernel
|
||||
|
||||
cat >> debian-installer+kernel << EOF
|
||||
|
@ -103,6 +109,7 @@ done
|
|||
cat >> debian-installer+kernel << EOF
|
||||
#endif
|
||||
#ifdef ARCH_mipsel
|
||||
delo
|
||||
EOF
|
||||
|
||||
# Only include mipsel kernels that d-i base-installer installs.
|
||||
|
@ -117,12 +124,17 @@ cat >> debian-installer+kernel << EOF
|
|||
#endif
|
||||
#ifdef ARCH_powerpc
|
||||
discover1
|
||||
quik
|
||||
yaboot
|
||||
mkvmlinuz
|
||||
module-init-tools
|
||||
initrd-tools
|
||||
EOF
|
||||
|
||||
# Only include powerpc kernels that d-i base-installer installs.
|
||||
for subarch in powerpc-pmac powerpc-small-pmac powerpc-prep powerpc-chrp \
|
||||
powerpc-chrp-rs6k apus; do
|
||||
for subarch in powerpc power3 power4 power3-pmac power3-chrp-rs6k \
|
||||
power4-pmac power4-chrp-rs6k powerpc-pmac powerpc-small-pmac \
|
||||
powerpc-prep powerpc-chrp powerpc-chrp-rs6k apus; do
|
||||
sed -n 's/Package: \(kernel-image-.*-.*\)$/\1/p' \
|
||||
$MIRROR/dists/$CODENAME/main/binary-powerpc/Packages \
|
||||
| grep -- "-$subarch$" | sort -n | tail -n 1 \
|
||||
|
@ -133,6 +145,7 @@ cat >> debian-installer+kernel << EOF
|
|||
#endif
|
||||
#ifdef ARCH_sparc
|
||||
discover1
|
||||
initrd-tools
|
||||
EOF
|
||||
|
||||
/bin/sed -n 's/Package: \(kernel-image-.*-sparc.*\)$/\1/p' \
|
||||
|
|
|
@ -126,9 +126,10 @@ while (<F>) {
|
|||
|
||||
$tv{'Filename'}= "$pathprefix$fn";
|
||||
|
||||
open(C,"md5sum <$fn |") || die "$fn $!";
|
||||
open(C,"md5sum $fn |") || die "$fn $!";
|
||||
chop($_=<C>); close(C); $? and die "\`md5sum < $fn' exited with $?\n";
|
||||
/^[0-9a-f]{32}$/ or die "Strange text from \`md5sum < $fn': \`$_'\n";
|
||||
/^[0-9a-f]{32}/ or die "Strange text from \`md5sum < $fn': \`$_'\n";
|
||||
s/\ .*$//;
|
||||
$tv{'MD5sum'}= $_;
|
||||
|
||||
@stat= stat($fn) or die "Couldn't stat $fn: $!\n";
|
||||
|
|
22
update-cd
22
update-cd
|
@ -13,13 +13,13 @@
|
|||
MIRROR=${MIRROR:-/mirror/debian}
|
||||
|
||||
# If you have a non-US mirror, where is it? Leave blank if you don't have one.
|
||||
NONUS=${NONUS:-$MIRROR/non-US}
|
||||
NONUS=${NONUS:-/mirror/debian-non-US}
|
||||
|
||||
# Do you want non-free? 1 for yes, 0 for no
|
||||
NONFREE=1
|
||||
NONFREE=0
|
||||
|
||||
# What release version is this?
|
||||
VER=3.0r1
|
||||
VER=3.0r2
|
||||
|
||||
# Path to use with mkisofs/mkhybrid
|
||||
MKISOFS=${MKISOFS:-"mkhybrid"}
|
||||
|
@ -31,12 +31,12 @@ TDIR=/mirror/debian-cd
|
|||
CODENAME=woody
|
||||
|
||||
# Path where the images will be written
|
||||
OUT=/mirror/debian-cd
|
||||
OUT=/mirror/woody-update/r2
|
||||
|
||||
# Location of the diff file to use to determine the changes. If you leave
|
||||
# this blank, we'll try to determine the changes from the ChangeLog files,
|
||||
# which is probably less accurate.
|
||||
DIFF=/mirror/lists/$CODENAME/r0-r1.diff #~/r2.diff
|
||||
DIFF=/mirror/lists/$CODENAME/r0-r2.diff #~/r2.diff
|
||||
|
||||
REL=Debian"$VER"
|
||||
CLOG=dists/$CODENAME/ChangeLog
|
||||
|
@ -133,8 +133,8 @@ create_control_files () {
|
|||
mkdir -p $CDDIR/dists/$CODENAME/$SECT/binary-$ARCH
|
||||
mkdir -p $CDDIR/dists/$CODENAME/non-US/$SECT/binary-$ARCH
|
||||
done
|
||||
ARCH=$ARCH $scanpackages scan $CDDIR >/dev/null 2>&1
|
||||
ARCH=$ARCH $scanpackages -noPackages.cd install $CDDIR >/dev/null 2>&1
|
||||
ARCH=$ARCH $scanpackages scan $CDDIR > /dev/null 2>&1
|
||||
ARCH=$ARCH $scanpackages -noPackages.cd install $CDDIR > /dev/null 2>&1
|
||||
rm -f $CDDIR/*.Packages* #>/dev/null 2>&1
|
||||
;;
|
||||
esac
|
||||
|
@ -154,7 +154,7 @@ if [ -e $DIFF ] ; then
|
|||
egrep -e \\.deb$ $UPD/list >$UPD/bin-list
|
||||
egrep -e \\.gz$ -e \\.dsc$ $UPD/list >$UPD/src-list
|
||||
else
|
||||
egrep -e ^dists.*\\.deb$ $CLOG >$UPD/bin-list
|
||||
egrep -e \\.deb$ $CLOG >$UPD/bin-list
|
||||
egrep -e \\.gz$ -e \\.dsc$ $CLOG >$UPD/src-list
|
||||
fi
|
||||
if [ "$NONFREE"x != "1"x ] ; then
|
||||
|
@ -171,10 +171,10 @@ if [ "$NONUS"x != ""x ] ; then
|
|||
if [ -e $DIFF ] ; then
|
||||
grep non-US $DIFF >$UPD/nu-list
|
||||
egrep -e \\.deb$ $UPD/nu-list >$UPD/bin-nu-list
|
||||
egrep -e ^dists.*\\.gz$ -e ^dists.*\\.dsc$ $UPD/nu-list >$UPD/src-nu-list
|
||||
egrep -e \\.gz$ -e \\.dsc$ $UPD/nu-list >$UPD/src-nu-list
|
||||
else
|
||||
egrep -e ^dists.*\\.deb$ $NUCLOG | sed 's?^stable?dists/potato?g' > $UPD/bin-nu-list
|
||||
egrep -e ^dists.*\\.gz$ -e ^dists.*\\.dsc$ $NUCLOG | sed 's?^stable?dists/potato?g' > $UPD/src-nu-list
|
||||
egrep -e \\.deb$ $NUCLOG | sed 's?^stable?dists/woody?g' > $UPD/bin-nu-list
|
||||
egrep -e \\.gz$ -e \\.dsc$ $NUCLOG | sed 's?^stable?dists/woody?g' > $UPD/src-nu-list
|
||||
fi
|
||||
|
||||
if [ "$NONFREE"x != "1"x ] ; then
|
||||
|
|
Loading…
Reference in New Issue