aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordancer <dancer>2003-10-27 22:42:00 +0000
committerdancer <dancer>2003-10-27 22:42:00 +0000
commit0767bf9a5d86e18c4571205a9e1b8ee3f1ea6f4b (patch)
tree9a1c567a7877195edc13cf7d447b1da5fe653593
parentade47e36dd3a52ad8fbd4781f38980e8e70ef905 (diff)
downloadpbuilder-0767bf9a5d86e18c4571205a9e1b8ee3f1ea6f4b.tar
pbuilder-0767bf9a5d86e18c4571205a9e1b8ee3f1ea6f4b.tar.gz
+2003-10-28 Junichi Uekawa <dancer@debian.org>
+ + * pdebuild.1: pbuilder will use the config file that is specified + as pdebuild command-line. + + * pdebuild (ARCHITECTURE): Add --configfile to the call to pbuilder + invocation. + + * pbuilder-checkparams (IGNORE_UMOUNT): EXTRA_CONFIGFILE is an array + containing the list of CONFIGFILEs loaded via --configfile. + + * pbuilder-user-mode-linux: rename variable that looked similar to + other variable. CONFIGFILE->SYSTEM_CONFIG. + + * pbuilder-checkparams (IGNORE_UMOUNT): add error check to --configfile option + + * pbuilderrc.5: update docs on BUILDRESULT not effective on + pdebuild. + + * pdebuild.1: add notes on pdebuild requiring buildresult to be + specified. +
-rw-r--r--ChangeLog22
-rw-r--r--debian/changelog7
-rwxr-xr-xpbuilder-checkparams6
-rwxr-xr-xpbuilder-user-mode-linux6
-rw-r--r--pbuilderrc.57
-rw-r--r--pdebuild2
-rw-r--r--pdebuild.19
-rw-r--r--testsuite/pbuilder-user-mode-linux-build-dsh-sarge.log120
-rw-r--r--testsuite/pbuilder-user-mode-linux-build-dsh-sid.log69
-rw-r--r--testsuite/pbuilder-user-mode-linux-create-sarge.log81
-rw-r--r--testsuite/pbuilder-user-mode-linux-create-sid.log215
-rwxr-xr-xtestsuite/run-test.sh2
12 files changed, 326 insertions, 220 deletions
diff --git a/ChangeLog b/ChangeLog
index e1c0833..95832b5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,25 @@
+2003-10-28 Junichi Uekawa <dancer@debian.org>
+
+ * pdebuild.1: pbuilder will use the config file that is specified
+ as pdebuild command-line.
+
+ * pdebuild (ARCHITECTURE): Add --configfile to the call to pbuilder
+ invocation.
+
+ * pbuilder-checkparams (IGNORE_UMOUNT): EXTRA_CONFIGFILE is an array
+ containing the list of CONFIGFILEs loaded via --configfile.
+
+ * pbuilder-user-mode-linux: rename variable that looked similar to
+ other variable. CONFIGFILE->SYSTEM_CONFIG.
+
+ * pbuilder-checkparams (IGNORE_UMOUNT): add error check to --configfile option
+
+ * pbuilderrc.5: update docs on BUILDRESULT not effective on
+ pdebuild.
+
+ * pdebuild.1: add notes on pdebuild requiring buildresult to be
+ specified.
+
2003-10-23 Junichi Uekawa <dancer@debian.org>
* pbuilder-modules (pbuilder-options): fix quoting.
diff --git a/debian/changelog b/debian/changelog
index d8e4bd2..e4583de 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+pbuilder (0.93) UNRELEASED; urgency=low
+
+ * Change pdebuild behavior: pass on --configfile option from
+ pdebuild to pbuilder.
+
+ -- Junichi Uekawa <dancer@debian.org> Tue, 28 Oct 2003 07:40:03 +0900
+
pbuilder (0.92) unstable; urgency=low
* Document that MIRRORSITE does not get effective unless
diff --git a/pbuilder-checkparams b/pbuilder-checkparams
index 4f0c1ef..96cdb1a 100755
--- a/pbuilder-checkparams
+++ b/pbuilder-checkparams
@@ -28,6 +28,7 @@ BINARY_ARCH="no"
PBUILDER_BUILD_LOGFILE=
USE_PKGNAME_LOGFILE=""
PRESERVE_BUILDPLACE="no"
+unset EXTRA_CONFIGFILE
#option for user-mode-linux only.
IGNORE_UMOUNT=""
@@ -91,7 +92,12 @@ while [ -n "$1" ]; do
shift; shift;
;;
--configfile)
+ if [ ! -f "$2" ]; then
+ echo "E: Config file $2 does not exist" >&2
+ exit 1
+ fi
. "$2";
+ EXTRA_CONFIGFILE[${#EXTRA_CONFIGFILE[@]}]="$2";
shift; shift;
;;
--extrapackages)
diff --git a/pbuilder-user-mode-linux b/pbuilder-user-mode-linux
index 5b56380..be1e705 100755
--- a/pbuilder-user-mode-linux
+++ b/pbuilder-user-mode-linux
@@ -28,9 +28,9 @@ function cleanup_function () {
. /usr/lib/pbuilder/pbuilder-loadconfig
-for CONFIGFILE in /usr/share/pbuilder/pbuilder-uml.conf /etc/pbuilder/pbuilder-uml.conf ${HOME}/.pbuilderrc; do
- if [ -f ${CONFIGFILE} ]; then
- . ${CONFIGFILE}
+for SYSTEM_CONFIG in /usr/share/pbuilder/pbuilder-uml.conf /etc/pbuilder/pbuilder-uml.conf ${HOME}/.pbuilderrc; do
+ if [ -f ${SYSTEM_CONFIG} ]; then
+ . ${SYSTEM_CONFIG}
fi
done
diff --git a/pbuilderrc.5 b/pbuilderrc.5
index 8cd39ec..04bb9dc 100644
--- a/pbuilderrc.5
+++ b/pbuilderrc.5
@@ -116,6 +116,13 @@ being mounted.
.BI "BUILDRESULT=" "/var/cache/pbuilder/result/"
Specify the default directory which the build result will
be copied over to after the building.
+
+This option is not effective for
+.B pdebuild
+command. Use
+.B "--buildresult"
+option instead.
+
.TP
.BI "DISTRIBUTION=" "woody"
Specify the default distribution to use.
diff --git a/pdebuild b/pdebuild
index ce525c7..20ca26e 100644
--- a/pdebuild
+++ b/pdebuild
@@ -34,7 +34,7 @@ PKG_VERSION=$(dpkg-parsechangelog|sed -n 's/^Version: \(.*:\|\)//p')
ARCHITECTURE=$(dpkg-architecture -qDEB_HOST_ARCH)
dpkg-buildpackage -S -us -uc -r${BUILDSOURCEROOTCMD}
-${PBUILDERROOTCMD} pbuilder build "$@" --buildresult "${BUILDRESULT}" ../"${PKG_SOURCENAME}_${PKG_VERSION}".dsc
+${PBUILDERROOTCMD} pbuilder build "$@" ${EXTRA_CONFIGFILE[@]/#/--configfile } --buildresult "${BUILDRESULT}" ../"${PKG_SOURCENAME}_${PKG_VERSION}".dsc
if [ "${AUTO_DEBSIGN}" = "yes" ]; then
debsign "${BUILDRESULT}/${PKG_SOURCENAME}_${PKG_VERSION}_${ARCHITECTURE}.changes"
fi
diff --git a/pdebuild.1 b/pdebuild.1
index 0e7eb53..43c67da 100644
--- a/pdebuild.1
+++ b/pdebuild.1
@@ -34,6 +34,15 @@ Invoke debsign at the end of pdebuild process.
The place which build result is stored.
+Note that for pdebuild, the setting for buildresult needs to be specified
+here in the command-line.
+
+.TP
+.BI "--configfile [" "Extra config file to use" "]"
+
+The configuration file is used, and passed on to
+pbuilder.
+
.TP
.BI "-- [" "pbuilder options" "]"
diff --git a/testsuite/pbuilder-user-mode-linux-build-dsh-sarge.log b/testsuite/pbuilder-user-mode-linux-build-dsh-sarge.log
index fb758c8..7a92ef7 100644
--- a/testsuite/pbuilder-user-mode-linux-build-dsh-sarge.log
+++ b/testsuite/pbuilder-user-mode-linux-build-dsh-sarge.log
@@ -1,4 +1,4 @@
-Invoking: linux mem=128M eth0=slirp,12345,/usr/bin/slirp-fullbolt con0=fd:0,fd:1 con=pty root=/dev/root rootflags=/ rootfstype=hostfs ubd1=/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild/24810.cow,/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testimage devfs=mount init=/tmp/fileDjMGOb rw
+Invoking: linux mem=128M eth0=slirp,12345,/usr/bin/slirp-fullbolt con0=fd:0,fd:1 con=pty root=/dev/root rootflags=/ rootfstype=hostfs ubd1=/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild/18856.cow,/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testimage devfs=mount init=/tmp/file2PWASG rw
Checking for the skas3 patch in the host...not found
Checking for /proc/mm...not found
Linux version 2.4.22-5um (mdz@mizar) (gcc version 2.95.4 20011002 (Debian prerelease)) #1 Fri Sep 19 21:36:03 EDT 2003
@@ -6,8 +6,8 @@ On node 0 totalpages: 32768
zone(0): 32768 pages.
zone(1): 0 pages.
zone(2): 0 pages.
-Kernel command line: mem=128M eth0=slirp,12345,/usr/bin/slirp-fullbolt con0=fd:0,fd:1 con=pty root=/dev/root rootflags=/ rootfstype=hostfs ubd1=/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild/24810.cow,/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testimage devfs=mount init=/tmp/fileDjMGOb rw
-Calibrating delay loop... 1594.44 BogoMIPS
+Kernel command line: mem=128M eth0=slirp,12345,/usr/bin/slirp-fullbolt con0=fd:0,fd:1 con=pty root=/dev/root rootflags=/ rootfstype=hostfs ubd1=/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild/18856.cow,/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testimage devfs=mount init=/tmp/file2PWASG rw
+Calibrating delay loop... 1414.53 BogoMIPS
Memory: 124720k available
Dentry cache hash table entries: 16384 (order: 5, 131072 bytes)
Inode cache hash table entries: 8192 (order: 4, 65536 bytes)
@@ -35,9 +35,9 @@ Initializing Cryptographic API
Initializing software serial port version 1
setup_etheraddr: failed to parse '/usr/bin/slirp-fullbolt' as an ethernet address
Netdevice 0 : SLIRP backend - command line: '/usr/bin/slirp-fullbolt'
-mconsole (version 2) initialized on /home/dancer/.uml/JAn7or/mconsole
+mconsole (version 2) initialized on /home/dancer/.uml/aGOUGR/mconsole
unable to open root_fs for validation
-Creating "/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild/24810.cow" as COW file for "/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testimage"
+Creating "/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild/18856.cow" as COW file for "/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testimage"
Partition check:
ubdb: unknown partition table
Initializing stdio console driver
@@ -81,8 +81,8 @@ I: using fakeroot in build.
pbuilder-buildpackage/i386 $Id$
$Id$
-Current time: Thu Oct 23 08:28:56 JST 2003
-pbuilder-time-stamp: 1066865336
+Current time: Sun Oct 26 22:43:15 JST 2003
+pbuilder-time-stamp: 1067175795
-> copying local configuration
-> mounting /proc filesystem
-> mounting /dev/pts filesystem
@@ -91,25 +91,101 @@ Installing the build-deps
-> Attempting to parse the build-deps : pbuilder-satisfydepends,v 1.18 2003/04/20 03:40:36 dancer Exp $
-> Considering debhelper (>> 3.0.0)
-> Trying debhelper
- -> Cannot install debhelper; apt errors follow:
+ -> Considering libdshconfig1-dev
+ -> Trying libdshconfig1-dev
+ -> Installing debhelper libdshconfig1-dev
Reading Package Lists... 0% Reading Package Lists... 100% Reading Package Lists... Done
- Building Dependency Tree... 0% Building Dependency Tree... 0% Building Dependency Tree... 50% Building Dependency Tree... 50% Building Dependency Tree... Done
-You might want to run `apt-get -f install' to correct these:
-The following packages have unmet dependencies:
- debhelper: Depends: perl (>= 5.6.0-16) but it is not going to be installed
- Depends: file (>= 3.23-1) but it is not going to be installed
- Depends: dpkg-dev (>= 1.7.0) but it is not going to be installed
- Depends: html2text but it is not going to be installed
- Depends: debconf-utils (>= 1.1.1) but it is not going to be installed
- Depends: binutils but it is not going to be installed
- Depends: po-debconf but it is not going to be installed
- tasksel: Depends: libtextwrap1 but it is not going to be installed
-E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).
-E: Could not satisfy build-dependency.
+ Building Dependency Tree... 0% Building Dependency Tree... 0% Building Dependency Tree... 19% Building Dependency Tree... 50% Building Dependency Tree... 50% Building Dependency Tree... 50% Building Dependency Tree... 87% Building Dependency Tree... Done
+The following extra packages will be installed:
+ binutils debconf-utils dpkg-dev file gettext html2text intltool-debian
+ libc6-dev libdb4.0 libdshconfig1 libmagic1 make patch perl perl-modules
+ po-debconf
+Suggested packages:
+ gnupg cvs manpages-dev libterm-readline-perl-perl
+Recommended packages:
+ c-compiler
+The following NEW packages will be installed:
+ binutils debconf-utils debhelper dpkg-dev file gettext html2text
+ intltool-debian libc6-dev libdb4.0 libdshconfig1 libdshconfig1-dev libmagic1
+ make patch perl perl-modules po-debconf
+0 upgraded, 18 newly installed, 0 to remove and 0 not upgraded.
+2 not fully installed or removed.
+Need to get 13.7MB of archives.
+After unpacking 48.4MB of additional disk space will be used.
+ 0% [Working] Err http://debootstrap.invalid sarge/main binutils 2.14.90.0.6-3
+ Could not resolve 'debootstrap.invalid'
+ 0% [Connecting to debootstrap.invalid] Err http://debootstrap.invalid sarge/main perl-modules 5.8.0-18
+ Could not resolve 'debootstrap.invalid'
+ 0% [Connecting to debootstrap.invalid] Err http://debootstrap.invalid sarge/main libdb4.0 4.0.14-1.3
+ Could not resolve 'debootstrap.invalid'
+ 0% [Connecting to debootstrap.invalid] Err http://debootstrap.invalid sarge/main perl 5.8.0-18
+ Could not resolve 'debootstrap.invalid'
+ 0% [Connecting to debootstrap.invalid] Err http://debootstrap.invalid sarge/main patch 2.5.9-1
+ Could not resolve 'debootstrap.invalid'
+ 0% [Connecting to debootstrap.invalid] Err http://debootstrap.invalid sarge/main make 3.80-4
+ Could not resolve 'debootstrap.invalid'
+ 0% [Connecting to debootstrap.invalid] Err http://debootstrap.invalid sarge/main dpkg-dev 1.10.10
+ Could not resolve 'debootstrap.invalid'
+ 0% [Connecting to debootstrap.invalid] Err http://debootstrap.invalid sarge/main libmagic1 4.04-1
+ Could not resolve 'debootstrap.invalid'
+ 0% [Connecting to debootstrap.invalid] Err http://debootstrap.invalid sarge/main file 4.04-1
+ Could not resolve 'debootstrap.invalid'
+ 0% [Connecting to debootstrap.invalid] Err http://debootstrap.invalid sarge/main libc6-dev 2.3.2-7
+ Could not resolve 'debootstrap.invalid'
+ 0% [Connecting to debootstrap.invalid] Err http://debootstrap.invalid sarge/main debconf-utils 1.3.15
+ Could not resolve 'debootstrap.invalid'
+ 0% [Connecting to debootstrap.invalid] Err http://debootstrap.invalid sarge/main html2text 1.3.1-2
+ Could not resolve 'debootstrap.invalid'
+ 0% [Connecting to debootstrap.invalid] Err http://debootstrap.invalid sarge/main gettext 0.12.1-7
+ Could not resolve 'debootstrap.invalid'
+ 0% [Connecting to debootstrap.invalid] Err http://debootstrap.invalid sarge/main intltool-debian 0.27.2+20031003
+ Could not resolve 'debootstrap.invalid'
+ 0% [Connecting to debootstrap.invalid] Err http://debootstrap.invalid sarge/main po-debconf 0.8.2
+ Could not resolve 'debootstrap.invalid'
+ 0% [Connecting to debootstrap.invalid] Err http://debootstrap.invalid sarge/main debhelper 4.1.74
+ Could not resolve 'debootstrap.invalid'
+ 0% [Connecting to debootstrap.invalid] Err http://debootstrap.invalid sarge/main libdshconfig1 0.20.8-1
+ Could not resolve 'debootstrap.invalid'
+ 0% [Connecting to debootstrap.invalid] Err http://debootstrap.invalid sarge/main libdshconfig1-dev 0.20.8-1
+ Could not resolve 'debootstrap.invalid'
+ 0% [Working] Failed to fetch http://debootstrap.invalid/pool/main/b/binutils/binutils_2.14.90.0.6-3_i386.deb Could not resolve 'debootstrap.invalid'
+Failed to fetch http://debootstrap.invalid/pool/main/p/perl/perl-modules_5.8.0-18_all.deb Could not resolve 'debootstrap.invalid'
+Failed to fetch http://debootstrap.invalid/pool/main/d/db4.0/libdb4.0_4.0.14-1.3_i386.deb Could not resolve 'debootstrap.invalid'
+Failed to fetch http://debootstrap.invalid/pool/main/p/perl/perl_5.8.0-18_i386.deb Could not resolve 'debootstrap.invalid'
+Failed to fetch http://debootstrap.invalid/pool/main/p/patch/patch_2.5.9-1_i386.deb Could not resolve 'debootstrap.invalid'
+Failed to fetch http://debootstrap.invalid/pool/main/m/make/make_3.80-4_i386.deb Could not resolve 'debootstrap.invalid'
+Failed to fetch http://debootstrap.invalid/pool/main/d/dpkg/dpkg-dev_1.10.10_all.deb Could not resolve 'debootstrap.invalid'
+Failed to fetch http://debootstrap.invalid/pool/main/f/file/libmagic1_4.04-1_i386.deb Could not resolve 'debootstrap.invalid'
+Failed to fetch http://debootstrap.invalid/pool/main/f/file/file_4.04-1_i386.deb Could not resolve 'debootstrap.invalid'
+Failed to fetch http://debootstrap.invalid/pool/main/g/glibc/libc6-dev_2.3.2-7_i386.deb Could not resolve 'debootstrap.invalid'
+Failed to fetch http://debootstrap.invalid/pool/main/d/debconf/debconf-utils_1.3.15_all.deb Could not resolve 'debootstrap.invalid'
+Failed to fetch http://debootstrap.invalid/pool/main/h/html2text/html2text_1.3.1-2_i386.deb Could not resolve 'debootstrap.invalid'
+Failed to fetch http://debootstrap.invalid/pool/main/g/gettext/gettext_0.12.1-7_i386.deb Could not resolve 'debootstrap.invalid'
+Failed to fetch http://debootstrap.invalid/pool/main/i/intltool-debian/intltool-debian_0.27.2+20031003_all.deb Could not resolve 'debootstrap.invalid'
+Failed to fetch http://debootstrap.invalid/pool/main/p/po-debconf/po-debconf_0.8.2_all.deb Could not resolve 'debootstrap.invalid'
+Failed to fetch http://debootstrap.invalid/pool/main/d/debhelper/debhelper_4.1.74_all.deb Could not resolve 'debootstrap.invalid'
+Failed to fetch http://debootstrap.invalid/pool/main/libd/libdshconfig/libdshconfig1_0.20.8-1_i386.deb Could not resolve 'debootstrap.invalid'
+Failed to fetch http://debootstrap.invalid/pool/main/libd/libdshconfig/libdshconfig1-dev_0.20.8-1_i386.deb Could not resolve 'debootstrap.invalid'
+E: Unable to fetch some archives, maybe run apt-get update or try with --fix-missing?
+ -> Trying to fix apt error
+Setting up console-data (2002.12.04dbs-18) ...
+Looking for keymap to install:
+mac-usb-be
+dpkg: error processing console-data (--configure):
+ subprocess post-installation script returned error exit status 1
+dpkg: dependency problems prevent configuration of base-config:
+ base-config depends on console-data (>= 2002.12.04dbs-16); however:
+ Package console-data is not configured yet.
+dpkg: error processing base-config (--configure):
+ dependency problems - leaving unconfigured
+Errors were encountered while processing:
+ console-data
+ base-config
+E: Unrecoverable error installing build-dependencies.
E: pbuilder-satisfydepends failed.
-> ignoring umount of proc filesystem
-> ignoring umount of dev/pts filesystem
Kernel panic: Attempted to kill init!
- tracing thread pid = 24825
+ tracing thread pid = 18871
-> Exit code 2
diff --git a/testsuite/pbuilder-user-mode-linux-build-dsh-sid.log b/testsuite/pbuilder-user-mode-linux-build-dsh-sid.log
index f38cb87..569abca 100644
--- a/testsuite/pbuilder-user-mode-linux-build-dsh-sid.log
+++ b/testsuite/pbuilder-user-mode-linux-build-dsh-sid.log
@@ -1,4 +1,4 @@
-Invoking: linux mem=128M eth0=slirp,12345,/usr/bin/slirp-fullbolt con0=fd:0,fd:1 con=pty root=/dev/root rootflags=/ rootfstype=hostfs ubd1=/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild/15640.cow,/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testimage devfs=mount init=/tmp/fileJsyfj4 rw
+Invoking: linux mem=128M eth0=slirp,12345,/usr/bin/slirp-fullbolt con0=fd:0,fd:1 con=pty root=/dev/root rootflags=/ rootfstype=hostfs ubd1=/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild/9203.cow,/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testimage devfs=mount init=/tmp/fileccVxom rw
Checking for the skas3 patch in the host...not found
Checking for /proc/mm...not found
Linux version 2.4.22-5um (mdz@mizar) (gcc version 2.95.4 20011002 (Debian prerelease)) #1 Fri Sep 19 21:36:03 EDT 2003
@@ -6,8 +6,8 @@ On node 0 totalpages: 32768
zone(0): 32768 pages.
zone(1): 0 pages.
zone(2): 0 pages.
-Kernel command line: mem=128M eth0=slirp,12345,/usr/bin/slirp-fullbolt con0=fd:0,fd:1 con=pty root=/dev/root rootflags=/ rootfstype=hostfs ubd1=/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild/15640.cow,/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testimage devfs=mount init=/tmp/fileJsyfj4 rw
-Calibrating delay loop... 1594.44 BogoMIPS
+Kernel command line: mem=128M eth0=slirp,12345,/usr/bin/slirp-fullbolt con0=fd:0,fd:1 con=pty root=/dev/root rootflags=/ rootfstype=hostfs ubd1=/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild/9203.cow,/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testimage devfs=mount init=/tmp/fileccVxom rw
+Calibrating delay loop... 1584.20 BogoMIPS
Memory: 124720k available
Dentry cache hash table entries: 16384 (order: 5, 131072 bytes)
Inode cache hash table entries: 8192 (order: 4, 65536 bytes)
@@ -35,9 +35,9 @@ Initializing Cryptographic API
Initializing software serial port version 1
setup_etheraddr: failed to parse '/usr/bin/slirp-fullbolt' as an ethernet address
Netdevice 0 : SLIRP backend - command line: '/usr/bin/slirp-fullbolt'
-mconsole (version 2) initialized on /home/dancer/.uml/zR20BB/mconsole
+mconsole (version 2) initialized on /home/dancer/.uml/KFkfTj/mconsole
unable to open root_fs for validation
-Creating "/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild/15640.cow" as COW file for "/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testimage"
+Creating "/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild/9203.cow" as COW file for "/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testimage"
Partition check:
ubdb: unknown partition table
Initializing stdio console driver
@@ -81,8 +81,8 @@ I: using fakeroot in build.
pbuilder-buildpackage/i386 $Id$
$Id$
-Current time: Thu Oct 23 08:19:03 JST 2003
-pbuilder-time-stamp: 1066864743
+Current time: Sun Oct 26 22:03:35 JST 2003
+pbuilder-time-stamp: 1067173416
-> copying local configuration
-> mounting /proc filesystem
-> mounting /dev/pts filesystem
@@ -95,7 +95,7 @@ Installing the build-deps
-> Trying libdshconfig1-dev
-> Installing debhelper libdshconfig1-dev
Reading Package Lists... 0% Reading Package Lists... 100% Reading Package Lists... Done
- Building Dependency Tree... 0% Building Dependency Tree... 0% Building Dependency Tree... 50% Building Dependency Tree... 50% Building Dependency Tree... Done
+ Building Dependency Tree... 0% Building Dependency Tree... 0% Building Dependency Tree... 21% Building Dependency Tree... 50% Building Dependency Tree... 50% Building Dependency Tree... 53% Building Dependency Tree... Done
The following extra packages will be installed:
debconf-utils file gettext html2text intltool-debian libdshconfig1 libmagic1
po-debconf
@@ -105,34 +105,34 @@ The following NEW packages will be installed:
debconf-utils debhelper file gettext html2text intltool-debian libdshconfig1
libdshconfig1-dev libmagic1 po-debconf
0 upgraded, 10 newly installed, 0 to remove and 0 not upgraded.
-Need to get 2077kB of archives.
-After unpacking 6995kB of additional disk space will be used.
+Need to get 2083kB of archives.
+After unpacking 7007kB of additional disk space will be used.
0% [Working] Get:1 http://ring.asahi-net.or.jp sid/main libmagic1 4.06-1 [206kB]
- 0% [1 libmagic1 0/206kB 0%] 7% [1 libmagic1 164060/206kB 79%] 7% [1 libmagic1 164060/206kB 79%] 9% [Working] Get:2 http://ring.asahi-net.or.jp sid/main file 4.06-1 [25.2kB]
- 9% [2 file 0/25.2kB 0%] 11% [Working] Get:3 http://ring.asahi-net.or.jp sid/main debconf-utils 1.3.16 [42.0kB]
- 11% [3 debconf-utils 0/42.0kB 0%] 13% [Working] Get:4 http://ring.asahi-net.or.jp sid/main html2text 1.3.1-2 [83.6kB]
- 13% [4 html2text 0/83.6kB 0%] 17% [Working] Get:5 http://ring.asahi-net.or.jp sid/main gettext 0.12.1-8 [1280kB]
- 17% [5 gettext 0/1280kB 0%] 41% [5 gettext 494984/1280kB 38%] 78% [Working] Get:6 http://ring.asahi-net.or.jp sid/main intltool-debian 0.27.2+20031003 [17.8kB]
- 78% [6 intltool-debian 0/17.8kB 0%] 79% [Working] Get:7 http://ring.asahi-net.or.jp sid/main po-debconf 0.8.2 [59.1kB]
- 79% [7 po-debconf 0/59.1kB 0%] 82% [Working] 82% [Waiting for headers] Get:8 http://ring.asahi-net.or.jp sid/main debhelper 4.1.77 [342kB]
- 82% [8 debhelper 0/342kB 0%] 98% [Working] Get:9 http://ring.asahi-net.or.jp sid/main libdshconfig1 0.20.8-1 [9656B]
+ 0% [1 libmagic1 0/206kB 0%] 8% [1 libmagic1 185832/206kB 90%] 9% [Waiting for headers] Get:2 http://ring.asahi-net.or.jp sid/main file 4.06-1 [25.2kB]
+ 9% [2 file 0/25.2kB 0%] 11% [Waiting for headers] Get:3 http://ring.asahi-net.or.jp sid/main debconf-utils 1.3.17 [42.0kB]
+ 11% [3 debconf-utils 0/42.0kB 0%] 13% [Waiting for headers] Get:4 http://ring.asahi-net.or.jp sid/main html2text 1.3.1-2 [83.6kB]
+ 13% [4 html2text 0/83.6kB 0%] Get:5 http://ring.asahi-net.or.jp sid/main gettext 0.12.1-8 [1280kB]
+ 17% [5 gettext 8192/1280kB 0%] 78% [Working] Get:6 http://ring.asahi-net.or.jp sid/main intltool-debian 0.27.2+20031023 [18.4kB]
+ 78% [6 intltool-debian 0/18.4kB 0%] 79% [Working] Get:7 http://ring.asahi-net.or.jp sid/main po-debconf 0.8.3 [64.5kB]
+ 79% [7 po-debconf 0/64.5kB 0%] 82% [Working] Get:8 http://ring.asahi-net.or.jp sid/main debhelper 4.1.77 [342kB]
+ 82% [8 debhelper 0/342kB 0%] 94% [8 debhelper 243176/342kB 71%] 98% [8 debhelper 327900/342kB 95%] 98% [Working] Get:9 http://ring.asahi-net.or.jp sid/main libdshconfig1 0.20.8-1 [9656B]
98% [9 libdshconfig1 0/9656B 0%] 99% [Working] Get:10 http://ring.asahi-net.or.jp sid/main libdshconfig1-dev 0.20.8-1 [11.3kB]
- 99% [10 libdshconfig1-dev 0/11.3kB 0%] 100% [Working] Fetched 2077kB in 3s (575kB/s)
+ 99% [10 libdshconfig1-dev 0/11.3kB 0%] 100% [Working] Fetched 2083kB in 3s (649kB/s)
Selecting previously deselected package libmagic1.
-(Reading database ... 9163 files and directories currently installed.)
+(Reading database ... 9175 files and directories currently installed.)
Unpacking libmagic1 (from .../libmagic1_4.06-1_i386.deb) ...
Selecting previously deselected package file.
Unpacking file (from .../archives/file_4.06-1_i386.deb) ...
Selecting previously deselected package debconf-utils.
-Unpacking debconf-utils (from .../debconf-utils_1.3.16_all.deb) ...
+Unpacking debconf-utils (from .../debconf-utils_1.3.17_all.deb) ...
Selecting previously deselected package html2text.
Unpacking html2text (from .../html2text_1.3.1-2_i386.deb) ...
Selecting previously deselected package gettext.
Unpacking gettext (from .../gettext_0.12.1-8_i386.deb) ...
Selecting previously deselected package intltool-debian.
-Unpacking intltool-debian (from .../intltool-debian_0.27.2+20031003_all.deb) ...
+Unpacking intltool-debian (from .../intltool-debian_0.27.2+20031023_all.deb) ...
Selecting previously deselected package po-debconf.
-Unpacking po-debconf (from .../po-debconf_0.8.2_all.deb) ...
+Unpacking po-debconf (from .../po-debconf_0.8.3_all.deb) ...
Selecting previously deselected package debhelper.
Unpacking debhelper (from .../debhelper_4.1.77_all.deb) ...
Selecting previously deselected package libdshconfig1.
@@ -142,30 +142,30 @@ Unpacking libdshconfig1-dev (from .../libdshconfig1-dev_0.20.8-1_i386.deb) ...
Setting up libmagic1 (4.06-1) ...
Setting up file (4.06-1) ...
-Setting up debconf-utils (1.3.16) ...
+Setting up debconf-utils (1.3.17) ...
Setting up html2text (1.3.1-2) ...
Setting up gettext (0.12.1-8) ...
-Setting up intltool-debian (0.27.2+20031003) ...
-Setting up po-debconf (0.8.2) ...
+Setting up intltool-debian (0.27.2+20031023) ...
+Setting up po-debconf (0.8.3) ...
Setting up debhelper (4.1.77) ...
Setting up libdshconfig1 (0.20.8-1) ...
Setting up libdshconfig1-dev (0.20.8-1) ...
-> Finished parsing the build-deps
Reading Package Lists... 0% Reading Package Lists... 0% Reading Package Lists... 65% Reading Package Lists... Done
- Building Dependency Tree... 0% Building Dependency Tree... 0% Building Dependency Tree... 50% Building Dependency Tree... 50% Building Dependency Tree... Done
+ Building Dependency Tree... 0% Building Dependency Tree... 0% Building Dependency Tree... 16% Building Dependency Tree... 42% Building Dependency Tree... 50% Building Dependency Tree... 50% Building Dependency Tree... 76% Building Dependency Tree... Done
The following NEW packages will be installed:
fakeroot
0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
Need to get 52.6kB of archives.
After unpacking 193kB of additional disk space will be used.
0% [Working] Get:1 http://ring.asahi-net.or.jp sid/main fakeroot 0.7.8 [52.6kB]
- 0% [1 fakeroot 0/52.6kB 0%] 100% [Working] Fetched 52.6kB in 0s (569kB/s)
+ 0% [1 fakeroot 0/52.6kB 0%] 100% [Working] Fetched 52.6kB in 0s (583kB/s)
Selecting previously deselected package fakeroot.
-(Reading database ... 9673 files and directories currently installed.)
+(Reading database ... 9687 files and directories currently installed.)
Unpacking fakeroot (from .../fakeroot_0.7.8_i386.deb) ...
Setting up fakeroot (0.7.8) ...
Copying source file
@@ -435,7 +435,6 @@ make[2]: Leaving directory `/tmp/buildd/dsh-0.25.0/po'
make[2]: Entering directory `/tmp/buildd/dsh-0.25.0'
/usr/bin/make dsh
make[3]: Entering directory `/tmp/buildd/dsh-0.25.0'
-make[3]: `dsh' is up to date.
make[3]: Leaving directory `/tmp/buildd/dsh-0.25.0'
/usr/bin/make check-TESTS
make[3]: Entering directory `/tmp/buildd/dsh-0.25.0'
@@ -487,7 +486,7 @@ PASS: tests/param-r-invalid.sh
1: 1
dsh: fork limit and wait shell cannot be specified at the same time
PASS: tests/param-F-invalid.sh
-Wed Oct 22 23:21:20 UTC 2003
+Sun Oct 26 13:14:37 UTC 2003
Using sleep as the remote shell
Show machine names on output
Adding machine 5,4,3,2,1 to list
@@ -505,7 +504,7 @@ DUMPing parameters passed to llexec
DUMPing parameters passed to llexec
[5]
--- Terminated running
-Wed Oct 22 23:21:27 UTC 2003
+Sun Oct 26 13:14:45 UTC 2003
PASS: tests/param-F-forklimit.sh
PASS: tests/param-gnu-getopt.sh
PASS: tests/news-okay.sh
@@ -613,10 +612,10 @@ dpkg-buildpackage: full upload (original source is included)
-> Terminate timeout process
-> ignoring umount of proc filesystem
-> ignoring umount of dev/pts filesystem
-Current time: Thu Oct 23 08:21:43 JST 2003
-pbuilder-time-stamp: 1066864903
+Current time: Sun Oct 26 22:16:00 JST 2003
+pbuilder-time-stamp: 1067174160
/usr/lib/pbuilder/pbuilder-buildpackage: line 144: 277 Terminated ( : Timeout process; sleep "${TIMEOUT_TIME}"; echo " -> Terminating build process due to timeout "; kill ${BUILD_PID} || true )
Kernel panic: Attempted to kill init!
- tracing thread pid = 15655
+ tracing thread pid = 9218
-> Successful exit from user-mode linux
diff --git a/testsuite/pbuilder-user-mode-linux-create-sarge.log b/testsuite/pbuilder-user-mode-linux-create-sarge.log
index 4ad86f5..cff420d 100644
--- a/testsuite/pbuilder-user-mode-linux-create-sarge.log
+++ b/testsuite/pbuilder-user-mode-linux-create-sarge.log
@@ -6,7 +6,7 @@ zone(0): 8192 pages.
zone(1): 0 pages.
zone(2): 0 pages.
Kernel command line: eth0=slirp,,slirp-fullbolt con0=fd:0,fd:1 con=pty root=/dev/root rootflags=/ rootfstype=hostfs ubd1=/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testimage init=/usr/lib/rootstrap/builder devfs=mount rsworkdir=/home/dancer/.pbuilder-user-mode-linux
-Calibrating delay loop... 1557.89 BogoMIPS
+Calibrating delay loop... 1550.06 BogoMIPS
Memory: 28532k available
Dentry cache hash table entries: 4096 (order: 3, 32768 bytes)
Inode cache hash table entries: 2048 (order: 2, 16384 bytes)
@@ -33,7 +33,7 @@ loop: loaded (max 8 devices)
Initializing Cryptographic API
Initializing software serial port version 1
Netdevice 0 : SLIRP backend - command line: 'slirp-fullbolt'
-mconsole (version 2) initialized on /home/dancer/.uml/kG4wdR/mconsole
+mconsole (version 2) initialized on /home/dancer/.uml/XkCXtu/mconsole
unable to open root_fs for validation
Partition check:
ubdb: unknown partition table
@@ -230,6 +230,8 @@ I: Retrieving http://ring.asahi-net.or.jp/archives/linux/debian/debian/pool/main
I: Validating /tmp/target/var/cache/apt/archives/libtext-iconv-perl_1.2-2_i386.deb
I: Retrieving http://ring.asahi-net.or.jp/archives/linux/debian/debian/pool/main/libt/libtext-wrapi18n-perl/libtext-wrapi18n-perl_0.06-1_all.deb
I: Validating /tmp/target/var/cache/apt/archives/libtext-wrapi18n-perl_0.06-1_all.deb
+I: Retrieving http://ring.asahi-net.or.jp/archives/linux/debian/debian/pool/main/libt/libtextwrap/libtextwrap1_0.1-1_i386.deb
+I: Validating /tmp/target/var/cache/apt/archives/libtextwrap1_0.1-1_i386.deb
I: Retrieving http://ring.asahi-net.or.jp/archives/linux/debian/debian/pool/main/e/e2fsprogs/libuuid1_1.34+1.35-WIP-2003.08.21-3_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/libuuid1_1.34+1.35-WIP-2003.08.21-3_i386.deb
I: Retrieving http://ring.asahi-net.or.jp/archives/linux/debian/debian/pool/main/t/tcp-wrappers/libwrap0_7.6-ipv6.1-3_i386.deb
@@ -274,12 +276,12 @@ I: Retrieving http://ring.asahi-net.or.jp/archives/linux/debian/debian/pool/main
I: Validating /tmp/target/var/cache/apt/archives/nvi_1.79-21_i386.deb
I: Retrieving http://ring.asahi-net.or.jp/archives/linux/debian/debian/pool/main/s/shadow/passwd_4.0.3-8_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/passwd_1%3a4.0.3-8_i386.deb
-I: Retrieving http://ring.asahi-net.or.jp/archives/linux/debian/debian/pool/main/p/pciutils/pciutils_2.1.11-2_i386.deb
-I: Validating /tmp/target/var/cache/apt/archives/pciutils_1%3a2.1.11-2_i386.deb
+I: Retrieving http://ring.asahi-net.or.jp/archives/linux/debian/debian/pool/main/p/pciutils/pciutils_2.1.11-5_i386.deb
+I: Validating /tmp/target/var/cache/apt/archives/pciutils_1%3a2.1.11-5_i386.deb
I: Retrieving http://ring.asahi-net.or.jp/archives/linux/debian/debian/pool/main/p/perl/perl-base_5.8.0-18_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/perl-base_5.8.0-18_i386.deb
-I: Retrieving http://ring.asahi-net.or.jp/archives/linux/debian/debian/pool/main/p/ppp/ppp_2.4.1.uus2-4_i386.deb
-I: Validating /tmp/target/var/cache/apt/archives/ppp_2.4.1.uus2-4_i386.deb
+I: Retrieving http://ring.asahi-net.or.jp/archives/linux/debian/debian/pool/main/p/ppp/ppp_2.4.2+20031002-3_i386.deb
+I: Validating /tmp/target/var/cache/apt/archives/ppp_2.4.2+20031002-3_i386.deb
I: Retrieving http://ring.asahi-net.or.jp/archives/linux/debian/debian/pool/main/p/pppconfig/pppconfig_2.2.0_all.deb
I: Validating /tmp/target/var/cache/apt/archives/pppconfig_2.2.0_all.deb
I: Retrieving http://ring.asahi-net.or.jp/archives/linux/debian/debian/pool/main/r/rp-pppoe/pppoe_3.5-3_i386.deb
@@ -423,8 +425,8 @@ dpkg: libc6: dependency problems, but configuring anyway as you request:
Package libdb1-compat is not installed.
Setting up libc6 (2.3.2-7) ...
Current default timezone: 'UTC'.
-Local time is now: Wed Oct 22 23:25:25 UTC 2003.
-Universal Time is now: Wed Oct 22 23:25:25 UTC 2003.
+Local time is now: Sun Oct 26 13:27:45 UTC 2003.
+Universal Time is now: Sun Oct 26 13:27:45 UTC 2003.
Run 'tzconfig' if you wish to change it.
Package `sysvinit' is not installed and no info is available.
Use dpkg --info (= dpkg-deb --info) to examine archive files,
@@ -631,8 +633,8 @@ Setting up sysv-rc (2.85-7) ...
Setting up libc6 (2.3.2-7) ...
Current default timezone: 'UTC'.
-Local time is now: Wed Oct 22 23:26:06 UTC 2003.
-Universal Time is now: Wed Oct 22 23:26:06 UTC 2003.
+Local time is now: Sun Oct 26 13:30:28 UTC 2003.
+Universal Time is now: Sun Oct 26 13:30:28 UTC 2003.
Run 'tzconfig' if you wish to change it.
Setting up tar (1.13.25-6) ...
@@ -835,7 +837,7 @@ Unpacking iputils-ping (from .../iputils-ping_3%3a20020927-1_i386.deb) ...
Selecting previously deselected package nvi.
Unpacking nvi (from .../archives/nvi_1.79-21_i386.deb) ...
Selecting previously deselected package ppp.
-Unpacking ppp (from .../ppp_2.4.1.uus2-4_i386.deb) ...
+Unpacking ppp (from .../ppp_2.4.2+20031002-3_i386.deb) ...
Selecting previously deselected package pppconfig.
Unpacking pppconfig (from .../pppconfig_2.2.0_all.deb) ...
Selecting previously deselected package pppoe.
@@ -848,6 +850,8 @@ Selecting previously deselected package sysklogd.
Unpacking sysklogd (from .../sysklogd_1.4.1-10_i386.deb) ...
Selecting previously deselected package tasksel.
Unpacking tasksel (from .../archives/tasksel_1.36_i386.deb) ...
+Selecting previously deselected package libtextwrap1.
+Unpacking libtextwrap1 (from .../libtextwrap1_0.1-1_i386.deb) ...
Selecting previously deselected package tcpd.
Unpacking tcpd (from .../tcpd_7.6-ipv6.1-3_i386.deb) ...
Selecting previously deselected package telnet.
@@ -859,7 +863,7 @@ Unpacking wget (from .../wget_1.8.2-11_i386.deb) ...
Selecting previously deselected package lilo.
Unpacking lilo (from .../lilo_1%3a22.5.8-2_i386.deb) ...
Selecting previously deselected package pciutils.
-Unpacking pciutils (from .../pciutils_1%3a2.1.11-2_i386.deb) ...
+Unpacking pciutils (from .../pciutils_1%3a2.1.11-5_i386.deb) ...
Selecting previously deselected package syslinux.
Unpacking syslinux (from .../syslinux_2.04-1_i386.deb) ...
Selecting previously deselected package psmisc.
@@ -872,8 +876,7 @@ Setting up telnet (0.17-20) ...
Setting up libwrap0 (7.6-ipv6.1-3) ...
-Setting up pciutils (2.1.11-2) ...
-
+Setting up pciutils (2.1.11-5) ...
Setting up ipchains (1.3.10-15) ...
Setting up adduser (3.51) ...
@@ -934,11 +937,6 @@ Setting up cpio (2.5-1.1) ...
Setting up nano (1.2.2-4) ...
-dpkg: dependency problems prevent configuration of tasksel:
- tasksel depends on libtextwrap1; however:
- Package libtextwrap1 is not installed.
-dpkg: error processing tasksel (--configure):
- dependency problems - leaving unconfigured
Setting up libtext-iconv-perl (1.2-2) ...
Setting up liblzo1 (1.08-1) ...
@@ -997,7 +995,7 @@ Setting up netbase (4.14) ...
Setting up exim (3.36-8) ...
-Setting up ppp (2.4.1.uus2-4) ...
+Setting up ppp (2.4.2+20031002-3) ...
Setting up pppoe (3.5-3) ...
Setting up pppconfig (2.2.0) ...
@@ -1019,6 +1017,8 @@ Starting system log daemon: syslogd
Warning: Fake start-stop-daemon called, doing nothing
.
+Setting up libtextwrap1 (0.1-1) ...
+
Setting up klogd (1.4.1-10) ...
Stopping kernel log daemon: klogd
Warning: Fake start-stop-daemon called, doing nothing
@@ -1027,16 +1027,12 @@ Starting kernel log daemon: klogd
Warning: Fake start-stop-daemon called, doing nothing
.
+Setting up tasksel (1.36) ...
+
Errors were encountered while processing:
- tasksel
console-data
base-config
W: Failure while configuring base packages. This will be attempted 5 times.
-dpkg: dependency problems prevent configuration of tasksel:
- tasksel depends on libtextwrap1; however:
- Package libtextwrap1 is not installed.
-dpkg: error processing tasksel (--configure):
- dependency problems - leaving unconfigured
Setting up console-data (2002.12.04dbs-18) ...
Looking for keymap to install:
mac-usb-be
@@ -1048,15 +1044,9 @@ dpkg: dependency problems prevent configuration of base-config:
dpkg: error processing base-config (--configure):
dependency problems - leaving unconfigured
Errors were encountered while processing:
- tasksel
console-data
base-config
W: Failure while configuring base packages. This will be attempted 5 times.
-dpkg: dependency problems prevent configuration of tasksel:
- tasksel depends on libtextwrap1; however:
- Package libtextwrap1 is not installed.
-dpkg: error processing tasksel (--configure):
- dependency problems - leaving unconfigured
Setting up console-data (2002.12.04dbs-18) ...
Looking for keymap to install:
mac-usb-be
@@ -1068,15 +1058,9 @@ dpkg: dependency problems prevent configuration of base-config:
dpkg: error processing base-config (--configure):
dependency problems - leaving unconfigured
Errors were encountered while processing:
- tasksel
console-data
base-config
W: Failure while configuring base packages. This will be attempted 5 times.
-dpkg: dependency problems prevent configuration of tasksel:
- tasksel depends on libtextwrap1; however:
- Package libtextwrap1 is not installed.
-dpkg: error processing tasksel (--configure):
- dependency problems - leaving unconfigured
Setting up console-data (2002.12.04dbs-18) ...
Looking for keymap to install:
mac-usb-be
@@ -1088,15 +1072,9 @@ dpkg: dependency problems prevent configuration of base-config:
dpkg: error processing base-config (--configure):
dependency problems - leaving unconfigured
Errors were encountered while processing:
- tasksel
console-data
base-config
W: Failure while configuring base packages. This will be attempted 5 times.
-dpkg: dependency problems prevent configuration of tasksel:
- tasksel depends on libtextwrap1; however:
- Package libtextwrap1 is not installed.
-dpkg: error processing tasksel (--configure):
- dependency problems - leaving unconfigured
Setting up console-data (2002.12.04dbs-18) ...
Looking for keymap to install:
mac-usb-be
@@ -1108,7 +1086,6 @@ dpkg: dependency problems prevent configuration of base-config:
dpkg: error processing base-config (--configure):
dependency problems - leaving unconfigured
Errors were encountered while processing:
- tasksel
console-data
base-config
W: Failure while configuring base packages. This will be attempted 5 times.
@@ -1119,9 +1096,9 @@ Traceback (most recent call last):
raise "rootstrap: Module '%s' failed, status: %d" % (module,status)
rootstrap: Module 'debian' failed, status: 1
Kernel panic: Attempted to kill init!
- tracing thread pid = 30922
+ tracing thread pid = 24672
-Invoking: linux mem=128M eth0=slirp,12345,/usr/bin/slirp-fullbolt con0=fd:0,fd:1 con=pty root=/dev/root rootflags=/ rootfstype=hostfs ubd1=/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testimage devfs=mount init=/tmp/file1CT2D8 rw
+Invoking: linux mem=128M eth0=slirp,12345,/usr/bin/slirp-fullbolt con0=fd:0,fd:1 con=pty root=/dev/root rootflags=/ rootfstype=hostfs ubd1=/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testimage devfs=mount init=/tmp/filefnC87n rw
Checking for the skas3 patch in the host...not found
Checking for /proc/mm...not found
Linux version 2.4.22-5um (mdz@mizar) (gcc version 2.95.4 20011002 (Debian prerelease)) #1 Fri Sep 19 21:36:03 EDT 2003
@@ -1129,8 +1106,8 @@ On node 0 totalpages: 32768
zone(0): 32768 pages.
zone(1): 0 pages.
zone(2): 0 pages.
-Kernel command line: mem=128M eth0=slirp,12345,/usr/bin/slirp-fullbolt con0=fd:0,fd:1 con=pty root=/dev/root rootflags=/ rootfstype=hostfs ubd1=/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testimage devfs=mount init=/tmp/file1CT2D8 rw
-Calibrating delay loop... 1594.44 BogoMIPS
+Kernel command line: mem=128M eth0=slirp,12345,/usr/bin/slirp-fullbolt con0=fd:0,fd:1 con=pty root=/dev/root rootflags=/ rootfstype=hostfs ubd1=/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testimage devfs=mount init=/tmp/filefnC87n rw
+Calibrating delay loop... 1584.20 BogoMIPS
Memory: 124720k available
Dentry cache hash table entries: 16384 (order: 5, 131072 bytes)
Inode cache hash table entries: 8192 (order: 4, 65536 bytes)
@@ -1158,7 +1135,7 @@ Initializing Cryptographic API
Initializing software serial port version 1
setup_etheraddr: failed to parse '/usr/bin/slirp-fullbolt' as an ethernet address
Netdevice 0 : SLIRP backend - command line: '/usr/bin/slirp-fullbolt'
-mconsole (version 2) initialized on /home/dancer/.uml/X8YPB6/mconsole
+mconsole (version 2) initialized on /home/dancer/.uml/tsVjdm/mconsole
unable to open root_fs for validation
Partition check:
ubdb: unknown partition table
@@ -1211,12 +1188,12 @@ Refreshing the base.tgz
Could not resolve 'debootstrap.invalid'
0% [Working] Failed to fetch http://debootstrap.invalid/dists/sarge/main/binary-i386/Packages.gz Could not resolve 'debootstrap.invalid'
Failed to fetch http://debootstrap.invalid/dists/sarge/main/binary-i386/Release Could not resolve 'debootstrap.invalid'
- Reading Package Lists... 0% Reading Package Lists... 0% Reading Package Lists... 1% Reading Package Lists... 91% Reading Package Lists... 99% Reading Package Lists... 99% Reading Package Lists... Done
+ Reading Package Lists... 0% Reading Package Lists... 0% Reading Package Lists... 1% Reading Package Lists... 30% Reading Package Lists... 50% Reading Package Lists... 70% Reading Package Lists... 91% Reading Package Lists... 99% Reading Package Lists... 99% Reading Package Lists... Done
E: Some index files failed to download, they have been ignored, or old ones used instead.
-> Aborting with an error
-> ignoring umount of proc filesystem
-> ignoring umount of dev/pts filesystem
Kernel panic: Attempted to kill init!
- tracing thread pid = 24549
+ tracing thread pid = 18595
-> Exit code 100
diff --git a/testsuite/pbuilder-user-mode-linux-create-sid.log b/testsuite/pbuilder-user-mode-linux-create-sid.log
index c0f223e..bf28fe1 100644
--- a/testsuite/pbuilder-user-mode-linux-create-sid.log
+++ b/testsuite/pbuilder-user-mode-linux-create-sid.log
@@ -6,7 +6,7 @@ zone(0): 8192 pages.
zone(1): 0 pages.
zone(2): 0 pages.
Kernel command line: eth0=slirp,,slirp-fullbolt con0=fd:0,fd:1 con=pty root=/dev/root rootflags=/ rootfstype=hostfs ubd1=/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testimage init=/usr/lib/rootstrap/builder devfs=mount rsworkdir=/home/dancer/.pbuilder-user-mode-linux
-Calibrating delay loop... 1598.85 BogoMIPS
+Calibrating delay loop... 1523.76 BogoMIPS
Memory: 28532k available
Dentry cache hash table entries: 4096 (order: 3, 32768 bytes)
Inode cache hash table entries: 2048 (order: 2, 16384 bytes)
@@ -33,7 +33,7 @@ loop: loaded (max 8 devices)
Initializing Cryptographic API
Initializing software serial port version 1
Netdevice 0 : SLIRP backend - command line: 'slirp-fullbolt'
-mconsole (version 2) initialized on /home/dancer/.uml/coT1t4/mconsole
+mconsole (version 2) initialized on /home/dancer/.uml/872Vgn/mconsole
unable to open root_fs for validation
Partition check:
ubdb: unknown partition table
@@ -94,10 +94,10 @@ I: Retrieving http://ring.asahi-net.or.jp/archives/linux/debian/debian/pool/main
I: Validating /tmp/target/var/cache/apt/archives/bash_2.05b-11_i386.deb
I: Retrieving http://ring.asahi-net.or.jp/archives/linux/debian/debian/pool/main/b/bsdmainutils/bsdmainutils_6.0.4_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/bsdmainutils_6.0.4_i386.deb
-I: Retrieving http://ring.asahi-net.or.jp/archives/linux/debian/debian/pool/main/u/util-linux/bsdutils_2.12-3_i386.deb
-I: Validating /tmp/target/var/cache/apt/archives/bsdutils_1%3a2.12-3_i386.deb
-I: Retrieving http://ring.asahi-net.or.jp/archives/linux/debian/debian/pool/main/c/console-common/console-common_0.7.30_all.deb
-I: Validating /tmp/target/var/cache/apt/archives/console-common_0.7.30_all.deb
+I: Retrieving http://ring.asahi-net.or.jp/archives/linux/debian/debian/pool/main/u/util-linux/bsdutils_2.12-4_i386.deb
+I: Validating /tmp/target/var/cache/apt/archives/bsdutils_1%3a2.12-4_i386.deb
+I: Retrieving http://ring.asahi-net.or.jp/archives/linux/debian/debian/pool/main/c/console-common/console-common_0.7.31_all.deb
+I: Validating /tmp/target/var/cache/apt/archives/console-common_0.7.31_all.deb
I: Retrieving http://ring.asahi-net.or.jp/archives/linux/debian/debian/pool/main/c/console-data/console-data_2002.12.04dbs-21_all.deb
I: Validating /tmp/target/var/cache/apt/archives/console-data_2002.12.04dbs-21_all.deb
I: Retrieving http://ring.asahi-net.or.jp/archives/linux/debian/debian/pool/main/c/console-tools/console-tools_0.2.3dbs-44_i386.deb
@@ -108,10 +108,10 @@ I: Retrieving http://ring.asahi-net.or.jp/archives/linux/debian/debian/pool/main
I: Validating /tmp/target/var/cache/apt/archives/cpio_2.5-1.1_i386.deb
I: Retrieving http://ring.asahi-net.or.jp/archives/linux/debian/debian/pool/main/c/cron/cron_3.0pl1-81_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/cron_3.0pl1-81_i386.deb
-I: Retrieving http://ring.asahi-net.or.jp/archives/linux/debian/debian/pool/main/d/debconf/debconf_1.3.16_all.deb
-I: Validating /tmp/target/var/cache/apt/archives/debconf_1.3.16_all.deb
-I: Retrieving http://ring.asahi-net.or.jp/archives/linux/debian/debian/pool/main/d/debconf/debconf-i18n_1.3.16_all.deb
-I: Validating /tmp/target/var/cache/apt/archives/debconf-i18n_1.3.16_all.deb
+I: Retrieving http://ring.asahi-net.or.jp/archives/linux/debian/debian/pool/main/d/debconf/debconf_1.3.17_all.deb
+I: Validating /tmp/target/var/cache/apt/archives/debconf_1.3.17_all.deb
+I: Retrieving http://ring.asahi-net.or.jp/archives/linux/debian/debian/pool/main/d/debconf/debconf-i18n_1.3.17_all.deb
+I: Validating /tmp/target/var/cache/apt/archives/debconf-i18n_1.3.17_all.deb
I: Retrieving http://ring.asahi-net.or.jp/archives/linux/debian/debian/pool/main/d/debianutils/debianutils_2.5.5_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/debianutils_2.5.5_i386.deb
I: Retrieving http://ring.asahi-net.or.jp/archives/linux/debian/debian/pool/main/d/diff/diff_2.8.1-5_i386.deb
@@ -136,8 +136,8 @@ I: Retrieving http://ring.asahi-net.or.jp/archives/linux/debian/debian/pool/main
I: Validating /tmp/target/var/cache/apt/archives/exim4-daemon-light_4.24-2_i386.deb
I: Retrieving http://ring.asahi-net.or.jp/archives/linux/debian/debian/pool/main/f/fdutils/fdutils_5.4-20030718-1_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/fdutils_5.4-20030718-1_i386.deb
-I: Retrieving http://ring.asahi-net.or.jp/archives/linux/debian/debian/pool/main/f/findutils/findutils_4.1.20-1_i386.deb
-I: Validating /tmp/target/var/cache/apt/archives/findutils_4.1.20-1_i386.deb
+I: Retrieving http://ring.asahi-net.or.jp/archives/linux/debian/debian/pool/main/f/findutils/findutils_4.1.20-2_i386.deb
+I: Validating /tmp/target/var/cache/apt/archives/findutils_4.1.20-2_i386.deb
I: Retrieving http://ring.asahi-net.or.jp/archives/linux/debian/debian/pool/main/g/gcc-3.2/gcc-3.2-base_3.2.3-8_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/gcc-3.2-base_1%3a3.2.3-8_i386.deb
I: Retrieving http://ring.asahi-net.or.jp/archives/linux/debian/debian/pool/main/g/gcc-3.3/gcc-3.3-base_3.3.2-1_i386.deb
@@ -262,8 +262,8 @@ I: Retrieving http://ring.asahi-net.or.jp/archives/linux/debian/debian/pool/main
I: Validating /tmp/target/var/cache/apt/archives/modconf_0.2.44_all.deb
I: Retrieving http://ring.asahi-net.or.jp/archives/linux/debian/debian/pool/main/m/modutils/modutils_2.4.25-1_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/modutils_2.4.25-1_i386.deb
-I: Retrieving http://ring.asahi-net.or.jp/archives/linux/debian/debian/pool/main/u/util-linux/mount_2.12-3_i386.deb
-I: Validating /tmp/target/var/cache/apt/archives/mount_2.12-3_i386.deb
+I: Retrieving http://ring.asahi-net.or.jp/archives/linux/debian/debian/pool/main/u/util-linux/mount_2.12-4_i386.deb
+I: Validating /tmp/target/var/cache/apt/archives/mount_2.12-4_i386.deb
I: Retrieving http://ring.asahi-net.or.jp/archives/linux/debian/debian/pool/main/n/nano/nano_1.2.2-4_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/nano_1.2.2-4_i386.deb
I: Retrieving http://ring.asahi-net.or.jp/archives/linux/debian/debian/pool/main/n/ncurses/ncurses-base_5.3.20030719-3_all.deb
@@ -282,8 +282,9 @@ I: Retrieving http://ring.asahi-net.or.jp/archives/linux/debian/debian/pool/main
I: Validating /tmp/target/var/cache/apt/archives/passwd_1%3a4.0.3-11_i386.deb
I: Retrieving http://ring.asahi-net.or.jp/archives/linux/debian/debian/pool/main/p/pciutils/pciutils_2.1.11-5_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/pciutils_1%3a2.1.11-5_i386.deb
-I: Retrieving http://ring.asahi-net.or.jp/archives/linux/debian/debian/pool/main/p/perl/perl-base_5.8.1-3_i386.deb
-I: Validating /tmp/target/var/cache/apt/archives/perl-base_5.8.1-3_i386.deb
+I: Retrieving http://ring.asahi-net.or.jp/archives/linux/debian/debian/pool/main/p/perl/perl-base_5.8.1-4_i386.deb
+
+I: Validating /tmp/target/var/cache/apt/archives/perl-base_5.8.1-4_i386.deb
I: Retrieving http://ring.asahi-net.or.jp/archives/linux/debian/debian/pool/main/p/ppp/ppp_2.4.2+20031002-3_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/ppp_2.4.2+20031002-3_i386.deb
I: Retrieving http://ring.asahi-net.or.jp/archives/linux/debian/debian/pool/main/p/pppconfig/pppconfig_2.2.0_all.deb
@@ -292,8 +293,8 @@ I: Retrieving http://ring.asahi-net.or.jp/archives/linux/debian/debian/pool/main
I: Validating /tmp/target/var/cache/apt/archives/pppoe_3.5-3_i386.deb
I: Retrieving http://ring.asahi-net.or.jp/archives/linux/debian/debian/pool/main/p/pppoeconf/pppoeconf_1.0_all.deb
I: Validating /tmp/target/var/cache/apt/archives/pppoeconf_1.0_all.deb
-I: Retrieving http://ring.asahi-net.or.jp/archives/linux/debian/debian/pool/main/p/procps/procps_3.1.12-1_i386.deb
-I: Validating /tmp/target/var/cache/apt/archives/procps_1%3a3.1.12-1_i386.deb
+I: Retrieving http://ring.asahi-net.or.jp/archives/linux/debian/debian/pool/main/p/procps/procps_3.1.14-1_i386.deb
+I: Validating /tmp/target/var/cache/apt/archives/procps_1%3a3.1.14-1_i386.deb
I: Retrieving http://ring.asahi-net.or.jp/archives/linux/debian/debian/pool/main/p/psmisc/psmisc_21.3-1_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/psmisc_21.3-1_i386.deb
I: Retrieving http://ring.asahi-net.or.jp/archives/linux/debian/debian/pool/main/s/sed/sed_4.0.7-1_i386.deb
@@ -318,10 +319,10 @@ I: Retrieving http://ring.asahi-net.or.jp/archives/linux/debian/debian/pool/main
I: Validating /tmp/target/var/cache/apt/archives/tcpd_7.6-ipv6.1-3_i386.deb
I: Retrieving http://ring.asahi-net.or.jp/archives/linux/debian/debian/pool/main/n/netkit-telnet/telnet_0.17-21_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/telnet_0.17-21_i386.deb
-I: Retrieving http://ring.asahi-net.or.jp/archives/linux/debian/debian/pool/main/u/util-linux/util-linux_2.12-3_i386.deb
-I: Validating /tmp/target/var/cache/apt/archives/util-linux_2.12-3_i386.deb
-I: Retrieving http://ring.asahi-net.or.jp/archives/linux/debian/debian/pool/main/w/wget/wget_1.8.2-12_i386.deb
-I: Validating /tmp/target/var/cache/apt/archives/wget_1.8.2-12_i386.deb
+I: Retrieving http://ring.asahi-net.or.jp/archives/linux/debian/debian/pool/main/u/util-linux/util-linux_2.12-4_i386.deb
+I: Validating /tmp/target/var/cache/apt/archives/util-linux_2.12-4_i386.deb
+I: Retrieving http://ring.asahi-net.or.jp/archives/linux/debian/debian/pool/main/w/wget/wget_1.9-1_i386.deb
+I: Validating /tmp/target/var/cache/apt/archives/wget_1.9-1_i386.deb
I: Retrieving http://ring.asahi-net.or.jp/archives/linux/debian/debian/pool/main/n/newt/whiptail_0.51.4-18_i386.deb
I: Validating /tmp/target/var/cache/apt/archives/whiptail_0.51.4-18_i386.deb
I: Retrieving http://ring.asahi-net.or.jp/archives/linux/debian/debian/pool/main/z/zlib/zlib1g_1.1.4-16_i386.deb
@@ -329,12 +330,12 @@ I: Validating /tmp/target/var/cache/apt/archives/zlib1g_1%3a1.1.4-16_i386.deb
I: Extracting /var/cache/apt/archives/base-files_3.0.11_i386.deb...
I: Extracting /var/cache/apt/archives/base-passwd_3.5.4_i386.deb...
I: Extracting /var/cache/apt/archives/bash_2.05b-11_i386.deb...
-I: Extracting /var/cache/apt/archives/bsdutils_1%3a2.12-3_i386.deb...
+I: Extracting /var/cache/apt/archives/bsdutils_1%3a2.12-4_i386.deb...
I: Extracting /var/cache/apt/archives/coreutils_5.0.91-2_i386.deb...
I: Extracting /var/cache/apt/archives/libacl1_2.2.20-1_i386.deb...
I: Extracting /var/cache/apt/archives/libattr1_2.4.12-1_i386.deb...
-I: Extracting /var/cache/apt/archives/debconf_1.3.16_all.deb...
-I: Extracting /var/cache/apt/archives/debconf-i18n_1.3.16_all.deb...
+I: Extracting /var/cache/apt/archives/debconf_1.3.17_all.deb...
+I: Extracting /var/cache/apt/archives/debconf-i18n_1.3.17_all.deb...
I: Extracting /var/cache/apt/archives/liblocale-gettext-perl_1.01-17_i386.deb...
I: Extracting /var/cache/apt/archives/libtext-wrapi18n-perl_0.06-1_all.deb...
I: Extracting /var/cache/apt/archives/libtext-charwidth-perl_0.04-1_i386.deb...
@@ -348,7 +349,7 @@ I: Extracting /var/cache/apt/archives/e2fslibs_1.34+1.35-WIP-2003.08.21-3_i386.d
I: Extracting /var/cache/apt/archives/libcomerr2_1.34+1.35-WIP-2003.08.21-3_i386.deb...
I: Extracting /var/cache/apt/archives/libss2_1.34+1.35-WIP-2003.08.21-3_i386.deb...
I: Extracting /var/cache/apt/archives/libuuid1_1.34+1.35-WIP-2003.08.21-3_i386.deb...
-I: Extracting /var/cache/apt/archives/findutils_4.1.20-1_i386.deb...
+I: Extracting /var/cache/apt/archives/findutils_4.1.20-2_i386.deb...
I: Extracting /var/cache/apt/archives/gcc-3.2-base_1%3a3.2.3-8_i386.deb...
I: Extracting /var/cache/apt/archives/gcc-3.3-base_1%3a3.3.2-1_i386.deb...
I: Extracting /var/cache/apt/archives/grep_2.5.1-6_i386.deb...
@@ -370,12 +371,12 @@ I: Extracting /var/cache/apt/archives/login_1%3a4.0.3-11_i386.deb...
I: Extracting /var/cache/apt/archives/makedev_2.3.1-63_all.deb...
I: Extracting /var/cache/apt/archives/mawk_1.3.3-11_i386.deb...
I: Extracting /var/cache/apt/archives/modutils_2.4.25-1_i386.deb...
-I: Extracting /var/cache/apt/archives/mount_2.12-3_i386.deb...
+I: Extracting /var/cache/apt/archives/mount_2.12-4_i386.deb...
I: Extracting /var/cache/apt/archives/ncurses-base_5.3.20030719-3_all.deb...
I: Extracting /var/cache/apt/archives/ncurses-bin_5.3.20030719-3_i386.deb...
I: Extracting /var/cache/apt/archives/passwd_1%3a4.0.3-11_i386.deb...
-I: Extracting /var/cache/apt/archives/perl-base_5.8.1-3_i386.deb...
-I: Extracting /var/cache/apt/archives/procps_1%3a3.1.12-1_i386.deb...
+I: Extracting /var/cache/apt/archives/perl-base_5.8.1-4_i386.deb...
+I: Extracting /var/cache/apt/archives/procps_1%3a3.1.14-1_i386.deb...
I: Extracting /var/cache/apt/archives/sed_4.0.7-1_i386.deb...
I: Extracting /var/cache/apt/archives/slang1_1.4.9-2_i386.deb...
I: Extracting /var/cache/apt/archives/slang1a-utf8_1.4.9-2_i386.deb...
@@ -383,7 +384,7 @@ I: Extracting /var/cache/apt/archives/initscripts_2.85-7_all.deb...
I: Extracting /var/cache/apt/archives/sysvinit_2.85-7_i386.deb...
I: Extracting /var/cache/apt/archives/sysv-rc_2.85-7_all.deb...
I: Extracting /var/cache/apt/archives/tar_1.13.25-6_i386.deb...
-I: Extracting /var/cache/apt/archives/util-linux_2.12-3_i386.deb...
+I: Extracting /var/cache/apt/archives/util-linux_2.12-4_i386.deb...
I: Extracting /var/cache/apt/archives/whiptail_0.51.4-18_i386.deb...
I: Extracting /var/cache/apt/archives/mbr_1.1.5-1_i386.deb...
I: Installing core packages...
@@ -429,8 +430,8 @@ dpkg: libc6: dependency problems, but configuring anyway as you request:
Package libdb1-compat is not installed.
Setting up libc6 (2.3.2-8) ...
Current default timezone: 'UTC'.
-Local time is now: Wed Oct 22 23:14:15 UTC 2003.
-Universal Time is now: Wed Oct 22 23:14:15 UTC 2003.
+Local time is now: Sun Oct 26 12:43:56 UTC 2003.
+Universal Time is now: Sun Oct 26 12:43:56 UTC 2003.
Run 'tzconfig' if you wish to change it.
Package `sysvinit' is not installed and no info is available.
Use dpkg --info (= dpkg-deb --info) to examine archive files,
@@ -438,8 +439,8 @@ and dpkg --contents (= dpkg-deb --contents) to list their contents.
Selecting previously deselected package perl-base.
(Reading database ... 2176 files and directories currently installed.)
-Unpacking perl-base (from .../perl-base_5.8.1-3_i386.deb) ...
-Setting up perl-base (5.8.1-3) ...
+Unpacking perl-base (from .../perl-base_5.8.1-4_i386.deb) ...
+Setting up perl-base (5.8.1-4) ...
Selecting previously deselected package mawk.
(Reading database ... 2294 files and directories currently installed.)
Unpacking mawk (from .../mawk_1.3.3-11_i386.deb) ...
@@ -447,12 +448,12 @@ Setting up mawk (1.3.3-11) ...
Selecting previously deselected package debconf.
(Reading database ... 2313 files and directories currently installed.)
-Unpacking debconf (from .../debconf_1.3.16_all.deb) ...
+Unpacking debconf (from .../debconf_1.3.17_all.deb) ...
dpkg: debconf: dependency problems, but configuring anyway as you request:
debconf depends on debconf-i18n | debconf-english; however:
Package debconf-i18n is not installed.
Package debconf-english is not installed.
-Setting up debconf (1.3.16) ...
+Setting up debconf (1.3.17) ...
I: Unpacking required packages...
(Reading database ... 2448 files and directories currently installed.)
@@ -466,7 +467,7 @@ dpkg: regarding .../bash_2.05b-11_i386.deb containing bash, pre-dependency probl
dpkg: warning - ignoring pre-dependency problem !
Unpacking bash (from .../bash_2.05b-11_i386.deb) ...
Selecting previously deselected package bsdutils.
-Unpacking bsdutils (from .../bsdutils_1%3a2.12-3_i386.deb) ...
+Unpacking bsdutils (from .../bsdutils_1%3a2.12-4_i386.deb) ...
Selecting previously deselected package coreutils.
dpkg: regarding .../coreutils_5.0.91-2_i386.deb containing coreutils, pre-dependency problem:
coreutils pre-depends on libacl1 (>= 2.2.11-1)
@@ -479,10 +480,10 @@ Selecting previously deselected package libacl1.
Unpacking libacl1 (from .../libacl1_2.2.20-1_i386.deb) ...
Selecting previously deselected package libattr1.
Unpacking libattr1 (from .../libattr1_2.4.12-1_i386.deb) ...
-Preparing to replace debconf 1.3.16 (using .../debconf_1.3.16_all.deb) ...
+Preparing to replace debconf 1.3.17 (using .../debconf_1.3.17_all.deb) ...
Unpacking replacement debconf ...
Selecting previously deselected package debconf-i18n.
-Unpacking debconf-i18n (from .../debconf-i18n_1.3.16_all.deb) ...
+Unpacking debconf-i18n (from .../debconf-i18n_1.3.17_all.deb) ...
Selecting previously deselected package liblocale-gettext-perl.
Unpacking liblocale-gettext-perl (from .../liblocale-gettext-perl_1.01-17_i386.deb) ...
Selecting previously deselected package libtext-wrapi18n-perl.
@@ -534,7 +535,7 @@ Unpacking libss2 (from .../libss2_1.34+1.35-WIP-2003.08.21-3_i386.deb) ...
Selecting previously deselected package libuuid1.
Unpacking libuuid1 (from .../libuuid1_1.34+1.35-WIP-2003.08.21-3_i386.deb) ...
Selecting previously deselected package findutils.
-Unpacking findutils (from .../findutils_4.1.20-1_i386.deb) ...
+Unpacking findutils (from .../findutils_4.1.20-2_i386.deb) ...
Selecting previously deselected package gcc-3.2-base.
Unpacking gcc-3.2-base (from .../gcc-3.2-base_1%3a3.2.3-8_i386.deb) ...
Selecting previously deselected package gcc-3.3-base.
@@ -586,7 +587,7 @@ Unpacking replacement mawk ...
Selecting previously deselected package modutils.
Unpacking modutils (from .../modutils_2.4.25-1_i386.deb) ...
Selecting previously deselected package mount.
-Unpacking mount (from .../archives/mount_2.12-3_i386.deb) ...
+Unpacking mount (from .../archives/mount_2.12-4_i386.deb) ...
Selecting previously deselected package ncurses-base.
Unpacking ncurses-base (from .../ncurses-base_5.3.20030719-3_all.deb) ...
Selecting previously deselected package ncurses-bin.
@@ -597,10 +598,10 @@ dpkg: warning - ignoring pre-dependency problem !
Unpacking ncurses-bin (from .../ncurses-bin_5.3.20030719-3_i386.deb) ...
Selecting previously deselected package passwd.
Unpacking passwd (from .../passwd_1%3a4.0.3-11_i386.deb) ...
-Preparing to replace perl-base 5.8.1-3 (using .../perl-base_5.8.1-3_i386.deb) ...
+Preparing to replace perl-base 5.8.1-4 (using .../perl-base_5.8.1-4_i386.deb) ...
Unpacking replacement perl-base ...
Selecting previously deselected package procps.
-Unpacking procps (from .../procps_1%3a3.1.12-1_i386.deb) ...
+Unpacking procps (from .../procps_1%3a3.1.14-1_i386.deb) ...
Selecting previously deselected package sed.
Unpacking sed (from .../archives/sed_4.0.7-1_i386.deb) ...
Selecting previously deselected package slang1.
@@ -620,18 +621,18 @@ Unpacking sysv-rc (from .../sysv-rc_2.85-7_all.deb) ...
Selecting previously deselected package tar.
Unpacking tar (from .../tar_1.13.25-6_i386.deb) ...
Selecting previously deselected package util-linux.
-dpkg: regarding .../util-linux_2.12-3_i386.deb containing util-linux, pre-dependency problem:
+dpkg: regarding .../util-linux_2.12-4_i386.deb containing util-linux, pre-dependency problem:
util-linux pre-depends on libncurses5 (>= 5.3.20030510-1)
libncurses5 is unpacked, but has never been configured.
dpkg: warning - ignoring pre-dependency problem !
-dpkg: regarding .../util-linux_2.12-3_i386.deb containing util-linux, pre-dependency problem:
+dpkg: regarding .../util-linux_2.12-4_i386.deb containing util-linux, pre-dependency problem:
util-linux pre-depends on slang1a-utf8 (>> 1.4.4-7.1)
slang1a-utf8 is unpacked, but has never been configured.
dpkg: warning - ignoring pre-dependency problem !
-dpkg: regarding .../util-linux_2.12-3_i386.deb containing util-linux, pre-dependency problem:
+dpkg: regarding .../util-linux_2.12-4_i386.deb containing util-linux, pre-dependency problem:
util-linux pre-depends on zlib1g (>= 1:1.1.4)
dpkg: warning - ignoring pre-dependency problem !
-Unpacking util-linux (from .../util-linux_2.12-3_i386.deb) ...
+Unpacking util-linux (from .../util-linux_2.12-4_i386.deb) ...
Selecting previously deselected package whiptail.
Unpacking whiptail (from .../whiptail_0.51.4-18_i386.deb) ...
Selecting previously deselected package mbr.
@@ -650,8 +651,8 @@ dpkg: libc6: dependency problems, but configuring anyway as you request:
Package libdb1-compat is not installed.
Setting up libc6 (2.3.2-8) ...
Current default timezone: 'UTC'.
-Local time is now: Wed Oct 22 23:14:55 UTC 2003.
-Universal Time is now: Wed Oct 22 23:14:55 UTC 2003.
+Local time is now: Sun Oct 26 12:46:33 UTC 2003.
+Universal Time is now: Sun Oct 26 12:46:33 UTC 2003.
Run 'tzconfig' if you wish to change it.
Setting up libcap1 (1.10-12) ...
@@ -664,9 +665,9 @@ Setting up libpopt0 (1.7-2) ...
Setting up libpam0g (0.76-14) ...
-Setting up bsdutils (2.12-3) ...
+Setting up bsdutils (2.12-4) ...
-Setting up perl-base (5.8.1-3) ...
+Setting up perl-base (5.8.1-4) ...
Setting up mbr (1.1.5-1) ...
Setting up tar (1.13.25-6) ...
@@ -675,7 +676,7 @@ Setting up slang1a-utf8 (1.4.9-2) ...
Setting up libgcc1 (3.3.2-1) ...
-Setting up mount (2.12-3) ...
+Setting up mount (2.12-4) ...
Setting up libncurses5 (5.3.20030719-3) ...
@@ -702,7 +703,7 @@ Setting up libblkid1 (1.34+1.35-WIP-2003.08.21-3) ...
Setting up libss2 (1.34+1.35-WIP-2003.08.21-3) ...
-Setting up findutils (4.1.20-1) ...
+Setting up findutils (4.1.20-2) ...
Setting up e2fsprogs (1.34+1.35-WIP-2003.08.21-3) ...
Setting up liblocale-gettext-perl (1.01-17) ...
@@ -715,7 +716,7 @@ Setting up libdb3 (3.2.9-19) ...
dpkg: util-linux: dependency problems, but configuring anyway as you request:
util-linux depends on zlib1g (>= 1:1.1.4); however:
Package zlib1g is not installed.
-Setting up util-linux (2.12-3) ...
+Setting up util-linux (2.12-4) ...
Setting up libstdc++5 (3.3.2-1) ...
@@ -724,7 +725,7 @@ Setting up libtext-wrapi18n-perl (0.06-1) ...
dpkg: debconf: dependency problems, but configuring anyway as you request:
debconf depends on debconf-i18n | debconf-english; however:
Package debconf-english is not installed.
-Setting up debconf (1.3.16) ...
+Setting up debconf (1.3.17) ...
Setting up coreutils (5.0.91-2) ...
@@ -732,7 +733,7 @@ Setting up debianutils (2.5.5) ...
Setting up makedev (2.3.1-63) ...
-Setting up procps (3.1.12-1) ...
+Setting up procps (3.1.14-1) ...
Setting up ncurses-bin (5.3.20030719-3) ...
@@ -744,7 +745,7 @@ Setting up base-files (3.0.11) ...
dpkg: debconf-i18n: dependency problems, but configuring anyway as you request:
debconf-i18n depends on libtext-iconv-perl; however:
Package libtext-iconv-perl is not installed.
-Setting up debconf-i18n (1.3.16) ...
+Setting up debconf-i18n (1.3.17) ...
Setting up gzip (1.3.5-7) ...
Setting up dselect (1.10.15) ...
@@ -766,7 +767,7 @@ Setting up modutils (2.4.25-1) ...
I: Installing base packages...
Selecting previously deselected package adduser.
-(Reading database ... 4207 files and directories currently installed.)
+(Reading database ... 4209 files and directories currently installed.)
Unpacking adduser (from .../archives/adduser_3.51_all.deb) ...
Selecting previously deselected package apt.
Unpacking apt (from .../archives/apt_0.5.14_i386.deb) ...
@@ -779,7 +780,7 @@ Unpacking base-config (from .../base-config_1.74_all.deb) ...
Selecting previously deselected package bsdmainutils.
Unpacking bsdmainutils (from .../bsdmainutils_6.0.4_i386.deb) ...
Selecting previously deselected package console-common.
-Unpacking console-common (from .../console-common_0.7.30_all.deb) ...
+Unpacking console-common (from .../console-common_0.7.31_all.deb) ...
Selecting previously deselected package console-tools.
Unpacking console-tools (from .../console-tools_1%3a0.2.3dbs-44_i386.deb) ...
Selecting previously deselected package libconsole.
@@ -883,7 +884,7 @@ Unpacking tcpd (from .../tcpd_7.6-ipv6.1-3_i386.deb) ...
Selecting previously deselected package telnet.
Unpacking telnet (from .../telnet_0.17-21_i386.deb) ...
Selecting previously deselected package wget.
-Unpacking wget (from .../wget_1.8.2-12_i386.deb) ...
+Unpacking wget (from .../archives/wget_1.9-1_i386.deb) ...
Selecting previously deselected package lilo.
Unpacking lilo (from .../lilo_1%3a22.5.8-3_i386.deb) ...
Selecting previously deselected package pciutils.
@@ -939,7 +940,7 @@ Setting up libpcap0.7 (0.7.2-4) ...
Setting up liblzo1 (1.08-1) ...
-Setting up wget (1.8.2-12) ...
+Setting up wget (1.9-1) ...
Setting up ipchains (1.3.10-15) ...
@@ -996,9 +997,17 @@ Setting up man-db (2.4.2-4) ...
Building database of manual pages ...
mandb: warning: /usr/share/man/man7/mdoc.samples.7.gz is a dangling symlink
+Setting up console-common (0.7.31) ...
+Looking for keymap to install:
+NONE
+
Setting up ifupdown (0.6.4-4.6) ...
Setting up logrotate (3.6.5-2) ...
+Setting up console-tools (0.2.3dbs-44) ...
+
+Setting up base-config (1.74) ...
+
Setting up netbase (4.14) ...
Setting up ppp (2.4.2+20031002-3) ...
@@ -1019,16 +1028,8 @@ Warning: Fake start-stop-daemon called, doing nothing
Setting up exim4-config (4.24-2) ...
hostname: Unknown host
-Setting up console-tools (0.2.3dbs-44) ...
-
Setting up libtextwrap1 (0.1-1) ...
-Setting up console-common (0.7.30) ...
-Looking for keymap to install:
-NONE
-
-Setting up base-config (1.74) ...
-
Setting up tasksel (1.36) ...
Setting up sysklogd (1.4.1-13) ...
@@ -1056,14 +1057,14 @@ Warning: Fake start-stop-daemon called, doing nothing
Setting up exim4 (4.24-2) ...
I: Base system installed successfully.
chroot /tmp/target dpkg --purge base-config console-common console-tools console-data console-tools-libs
-(Reading database ... 6896 files and directories currently installed.)
+(Reading database ... 6900 files and directories currently installed.)
Removing base-config ...
Purging configuration files for base-config ...
+Removing console-tools ...
+Purging configuration files for console-tools ...
dpkg - warning: ignoring request to remove console-tools-libs which isn't installed.
Removing console-common ...
Purging configuration files for console-common ...
-Removing console-tools ...
-Purging configuration files for console-tools ...
Removing console-data ...
Purging configuration files for console-data ...
Using rootstrap module uml from:
@@ -1073,9 +1074,9 @@ Using rootstrap module umount from:
/usr/lib/rootstrap/modules/umount
umount: /tmp/target/proc: not mounted
System halted.
-tracing thread pid = 17548
+tracing thread pid = 10547
-Invoking: linux mem=128M eth0=slirp,12345,/usr/bin/slirp-fullbolt con0=fd:0,fd:1 con=pty root=/dev/root rootflags=/ rootfstype=hostfs ubd1=/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testimage devfs=mount init=/tmp/file0K48Jd rw
+Invoking: linux mem=128M eth0=slirp,12345,/usr/bin/slirp-fullbolt con0=fd:0,fd:1 con=pty root=/dev/root rootflags=/ rootfstype=hostfs ubd1=/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testimage devfs=mount init=/tmp/file63ndGp rw
Checking for the skas3 patch in the host...not found
Checking for /proc/mm...not found
Linux version 2.4.22-5um (mdz@mizar) (gcc version 2.95.4 20011002 (Debian prerelease)) #1 Fri Sep 19 21:36:03 EDT 2003
@@ -1083,8 +1084,8 @@ On node 0 totalpages: 32768
zone(0): 32768 pages.
zone(1): 0 pages.
zone(2): 0 pages.
-Kernel command line: mem=128M eth0=slirp,12345,/usr/bin/slirp-fullbolt con0=fd:0,fd:1 con=pty root=/dev/root rootflags=/ rootfstype=hostfs ubd1=/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testimage devfs=mount init=/tmp/file0K48Jd rw
-Calibrating delay loop... 1591.02 BogoMIPS
+Kernel command line: mem=128M eth0=slirp,12345,/usr/bin/slirp-fullbolt con0=fd:0,fd:1 con=pty root=/dev/root rootflags=/ rootfstype=hostfs ubd1=/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testimage devfs=mount init=/tmp/file63ndGp rw
+Calibrating delay loop... 1574.96 BogoMIPS
Memory: 124720k available
Dentry cache hash table entries: 16384 (order: 5, 131072 bytes)
Inode cache hash table entries: 8192 (order: 4, 65536 bytes)
@@ -1112,7 +1113,7 @@ Initializing Cryptographic API
Initializing software serial port version 1
setup_etheraddr: failed to parse '/usr/bin/slirp-fullbolt' as an ethernet address
Netdevice 0 : SLIRP backend - command line: '/usr/bin/slirp-fullbolt'
-mconsole (version 2) initialized on /home/dancer/.uml/Xk4pkg/mconsole
+mconsole (version 2) initialized on /home/dancer/.uml/8O8vUC/mconsole
unable to open root_fs for validation
Partition check:
ubdb: unknown partition table
@@ -1158,19 +1159,19 @@ Upgrading for distribution sid
-> installing dummy policy-rc.d
Refreshing the base.tgz
-> upgrading packages
- 0% [Working] Get:1 http://ring.asahi-net.or.jp sid/main Packages [2704kB]
- 0% [1 Packages 21992/2704kB 0%] 28% [1 Packages 762736/2704kB 28%] 42% [1 Packages 1154990/2704kB 42%] 56% [1 Packages 1522448/2704kB 56%] 71% [1 Packages 1929904/2704kB 71%] 99% [Working] Get:2 http://ring.asahi-net.or.jp sid/main Release [82B]
- 99% [Working] 99% [1 Packages gzip 0] 99% [1 Packages gzip 5300224] 100% [Working] Fetched 2704kB in 3s (735kB/s)
- Reading Package Lists... 0% Reading Package Lists... 0% Reading Package Lists... 1% Reading Package Lists... 97% Reading Package Lists... 99% Reading Package Lists... 99% Reading Package Lists... Done
-(Reading database ... 6166 files and directories currently installed.)
+ 0% [Working] Get:1 http://ring.asahi-net.or.jp sid/main Packages [2705kB]
+ 0% [1 Packages 2804/2705kB 0%] 56% [1 Packages 1537128/2705kB 56%] 99% [Working] 99% [1 Packages gzip 0] Get:2 http://ring.asahi-net.or.jp sid/main Release [82B]
+ 99% [1 Packages gzip 0] 99% [1 Packages gzip 6000640] 100% [Working] 429kB/s 0s Fetched 2706kB in 6s (429kB/s)
+ Reading Package Lists... 0% Reading Package Lists... 0% Reading Package Lists... 1% Reading Package Lists... 33% Reading Package Lists... 54% Reading Package Lists... 80% Reading Package Lists... 99% Reading Package Lists... 99% Reading Package Lists... 99% Reading Package Lists... Done
+(Reading database ... 6170 files and directories currently installed.)
Removing lilo ...
Purging configuration files for lilo ...
Reading Package Lists... 0% Reading Package Lists... 0% Reading Package Lists... 79% Reading Package Lists... Done
- Building Dependency Tree... 0% Building Dependency Tree... 0% Building Dependency Tree... 50% Building Dependency Tree... 50% Building Dependency Tree... Done
+ Building Dependency Tree... 0% Building Dependency Tree... 0% Building Dependency Tree... 23% Building Dependency Tree... 49% Building Dependency Tree... 50% Building Dependency Tree... 50% Building Dependency Tree... Done
Calculating Upgrade... Done
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Reading Package Lists... 0% Reading Package Lists... 100% Reading Package Lists... Done
- Building Dependency Tree... 0% Building Dependency Tree... 0% Building Dependency Tree... 50% Building Dependency Tree... 50% Building Dependency Tree... Done
+ Building Dependency Tree... 0% Building Dependency Tree... 0% Building Dependency Tree... 25% Building Dependency Tree... 50% Building Dependency Tree... 50% Building Dependency Tree... 52% Building Dependency Tree... 96% Building Dependency Tree... Done
apt is already the newest version.
The following extra packages will be installed:
binutils cpp cpp-3.3 g++ g++-3.3 gcc gcc-3.3 libc6-dev libdb4.0
@@ -1183,37 +1184,37 @@ The following NEW packages will be installed:
libc6-dev libdb4.0 libstdc++5-3.3-dev make patch perl perl-modules
0 upgraded, 16 newly installed, 0 to remove and 0 not upgraded.
Need to get 16.7MB of archives.
-After unpacking 57.8MB of additional disk space will be used.
+After unpacking 57.9MB of additional disk space will be used.
0% [Working] Get:1 http://ring.asahi-net.or.jp sid/main binutils 2.14.90.0.6-5 [2430kB]
- 0% [1 binutils 0/2430kB 0%] 1% [1 binutils 232400/2430kB 9%] 5% [1 binutils 906206/2430kB 37%] 10% [1 binutils 1738684/2430kB 71%] 13% [1 binutils 2287768/2430kB 94%] 13% [1 binutils 2287768/2430kB 94%] 14% [Working] Get:2 http://ring.asahi-net.or.jp sid/main cpp-3.3 1:3.3.2-1 [1386kB]
- 14% [2 cpp-3.3 0/1386kB 0%] 22% [Working] Get:3 http://ring.asahi-net.or.jp sid/main cpp 4:3.3.1-2 [26.0kB]
- 22% [3 cpp 0/26.0kB 0%] 23% [Working] Get:4 http://ring.asahi-net.or.jp sid/main perl-modules 5.8.1-3 [2156kB]
- 23% [4 perl-modules 0/2156kB 0%] 24% [4 perl-modules 319928/2156kB 14%] 29% [4 perl-modules 1135060/2156kB 52%] 31% [4 perl-modules 1438384/2156kB 66%] 35% [Working] Get:5 http://ring.asahi-net.or.jp sid/main libdb4.0 4.0.14-1.3 [302kB]
- 35% [5 libdb4.0 0/302kB 0%] 37% [Working] Get:6 http://ring.asahi-net.or.jp sid/main perl 5.8.1-3 [3306kB]
- 37% [6 perl 0/3306kB 0%] 40% [6 perl 415428/3306kB 12%] 40% [6 perl 415428/3306kB 12%] 1030kB/s 9s 41% [6 perl 639636/3306kB 19%] 1030kB/s 9s 45% [6 perl 1219344/3306kB 36%] 1030kB/s 8s 47% [6 perl 1550048/3306kB 46%] 1030kB/s 8s 47% [6 perl 1613000/3306kB 48%] 1030kB/s 8s 49% [6 perl 1913520/3306kB 57%] 1030kB/s 8s 55% [6 perl 2897660/3306kB 87%] 1030kB/s 7s 57% [6 perl 3211980/3306kB 97%] 1030kB/s 6s 57% [Working] 1030kB/s 6s Get:7 http://ring.asahi-net.or.jp sid/main patch 2.5.9-1 [92.3kB]
- 57% [7 patch 0/92.3kB 0%] 1030kB/s 6s 58% [Working] 1030kB/s 6s Get:8 http://ring.asahi-net.or.jp sid/main make 3.80-4 [349kB]
- 58% [8 make 0/349kB 0%] 1030kB/s 6s 60% [Working] 1030kB/s 6s Get:9 http://ring.asahi-net.or.jp sid/main dpkg-dev 1.10.15 [112kB]
- 60% [9 dpkg-dev 0/112kB 0%] 1030kB/s 6s 60% [Working] 1030kB/s 6s Get:10 http://ring.asahi-net.or.jp sid/main gcc-3.3 1:3.3.2-1 [1327kB]
- 60% [10 gcc-3.3 0/1327kB 0%] 1030kB/s 6s 63% [10 gcc-3.3 382660/1327kB 28%] 1030kB/s 5s 65% [10 gcc-3.3 770708/1327kB 58%] 1030kB/s 5s 68% [Working] 1030kB/s 5s 68% [Waiting for headers] 781kB/s 6s 68% [Waiting for headers] 781kB/s 6s Get:11 http://ring.asahi-net.or.jp sid/main libc6-dev 2.3.2-8 [2633kB]
- 68% [11 libc6-dev 0/2633kB 0%] 781kB/s 6s 74% [11 libc6-dev 943180/2633kB 35%] 781kB/s 5s 80% [11 libc6-dev 1859200/2633kB 70%] 781kB/s 4s 80% [11 libc6-dev 1979496/2633kB 75%] 781kB/s 4s 83% [11 libc6-dev 2378760/2633kB 90%] 781kB/s 3s 83% [11 libc6-dev 2503262/2633kB 95%] 781kB/s 3s 84% [Working] 781kB/s 3s Get:12 http://ring.asahi-net.or.jp sid/main libstdc++5-3.3-dev 1:3.3.2-1 [767kB]
- 84% [12 libstdc++5-3.3-dev 0/767kB 0%] 781kB/s 3s 87% [12 libstdc++5-3.3-dev 486792/767kB 63%] 781kB/s 2s 89% [Working] 781kB/s 2s Get:13 http://ring.asahi-net.or.jp sid/main g++-3.3 1:3.3.2-1 [1766kB]
- 89% [13 g++-3.3 0/1766kB 0%] 781kB/s 2s 92% [13 g++-3.3 505980/1766kB 28%] 781kB/s 1s 93% [13 g++-3.3 769966/1766kB 43%] 781kB/s 1s 96% [13 g++-3.3 1148420/1766kB 65%] 781kB/s 0s 98% [13 g++-3.3 1455950/1766kB 82%] 770kB/s 0s 99% [Working] 770kB/s 0s Get:14 http://ring.asahi-net.or.jp sid/main g++ 4:3.3.1-2 [1390B]
- 99% [14 g++ 0/1390B 0%] 770kB/s 0s 99% [Working] 770kB/s 0s Get:15 http://ring.asahi-net.or.jp sid/main gcc 4:3.3.1-2 [4850B]
- 99% [15 gcc 0/4850B 0%] 770kB/s 0s 99% [Working] 770kB/s 0s Get:16 http://ring.asahi-net.or.jp sid/main build-essential 10 [6450B]
- 99% [16 build-essential 0/6450B 0%] 770kB/s 0s 100% [Working] 770kB/s 0s Fetched 16.7MB in 19s (871kB/s)
+ 0% [1 binutils 0/2430kB 0%] 9% [1 binutils 1531520/2430kB 63%] 9% [1 binutils 1642222/2430kB 67%] 14% [Working] Get:2 http://ring.asahi-net.or.jp sid/main cpp-3.3 1:3.3.2-1 [1386kB]
+ 14% [2 cpp-3.3 0/1386kB 0%] 16% [2 cpp-3.3 404432/1386kB 29%] 22% [Working] Get:3 http://ring.asahi-net.or.jp sid/main cpp 4:3.3.1-2 [26.0kB]
+ 22% [3 cpp 0/26.0kB 0%] 23% [Working] Get:4 http://ring.asahi-net.or.jp sid/main perl-modules 5.8.1-4 [2156kB]
+ 23% [4 perl-modules 0/2156kB 0%] 30% [4 perl-modules 1247164/2156kB 57%] 32% [4 perl-modules 1619048/2156kB 75%] 35% [Working] Get:5 http://ring.asahi-net.or.jp sid/main libdb4.0 4.0.14-1.3 [302kB]
+ 35% [5 libdb4.0 0/302kB 0%] 37% [5 libdb4.0 269154/302kB 89%] 37% [Working] Get:6 http://ring.asahi-net.or.jp sid/main perl 5.8.1-4 [3330kB]
+ 37% [6 perl 0/3330kB 0%] 43% [6 perl 1014544/3330kB 30%] 1113kB/s 8s 50% [6 perl 2179128/3330kB 65%] 1113kB/s 7s 51% [6 perl 2250272/3330kB 67%] 1113kB/s 7s 57% [6 perl 3226220/3330kB 96%] 1113kB/s 6s 57% [Working] 1113kB/s 6s Get:7 http://ring.asahi-net.or.jp sid/main patch 2.5.9-1 [92.3kB]
+ 57% [7 patch 0/92.3kB 0%] 1113kB/s 6s 58% [Working] 1113kB/s 6s Get:8 http://ring.asahi-net.or.jp sid/main make 3.80-4 [349kB]
+ 58% [8 make 0/349kB 0%] 1113kB/s 6s 60% [Working] 1113kB/s 5s Get:9 http://ring.asahi-net.or.jp sid/main dpkg-dev 1.10.15 [112kB]
+ 60% [9 dpkg-dev 0/112kB 0%] 1113kB/s 5s 61% [Working] 1113kB/s 5s Get:10 http://ring.asahi-net.or.jp sid/main gcc-3.3 1:3.3.2-1 [1327kB]
+ 61% [10 gcc-3.3 0/1327kB 0%] 1113kB/s 5s 62% [10 gcc-3.3 314540/1327kB 23%] 1113kB/s 5s 68% [10 gcc-3.3 1238752/1327kB 93%] 1113kB/s 4s 68% [Working] 1113kB/s 4s Get:11 http://ring.asahi-net.or.jp sid/main libc6-dev 2.3.2-8 [2633kB]
+ 68% [11 libc6-dev 0/2633kB 0%] 1113kB/s 4s 71% [11 libc6-dev 497348/2633kB 18%] 1113kB/s 4s 73% [11 libc6-dev 709158/2633kB 26%] 1113kB/s 4s 77% [11 libc6-dev 1492704/2633kB 56%] 915kB/s 4s 79% [11 libc6-dev 1763260/2633kB 66%] 915kB/s 3s 82% [11 libc6-dev 2252416/2633kB 85%] 915kB/s 3s 84% [Working] 915kB/s 2s Get:12 http://ring.asahi-net.or.jp sid/main libstdc++5-3.3-dev 1:3.3.2-1 [767kB]
+ 84% [12 libstdc++5-3.3-dev 0/767kB 0%] 915kB/s 2s 86% [12 libstdc++5-3.3-dev 287160/767kB 37%] 915kB/s 2s 87% [12 libstdc++5-3.3-dev 536164/767kB 69%] 915kB/s 2s 89% [Working] 915kB/s 1s Get:13 http://ring.asahi-net.or.jp sid/main g++-3.3 1:3.3.2-1 [1766kB]
+ 89% [13 g++-3.3 0/1766kB 0%] 915kB/s 1s 95% [13 g++-3.3 1109824/1766kB 62%] 915kB/s 0s 99% [Working] 915kB/s 0s Get:14 http://ring.asahi-net.or.jp sid/main g++ 4:3.3.1-2 [1390B]
+ 99% [14 g++ 0/1390B 0%] 915kB/s 0s 99% [Working] 915kB/s 0s Get:15 http://ring.asahi-net.or.jp sid/main gcc 4:3.3.1-2 [4850B]
+ 99% [15 gcc 0/4850B 0%] 915kB/s 0s 99% [Working] 915kB/s 0s Get:16 http://ring.asahi-net.or.jp sid/main build-essential 10 [6450B]
+ 99% [16 build-essential 0/6450B 0%] 915kB/s 0s 100% [Working] 915kB/s 0s Fetched 16.7MB in 17s (973kB/s)
Selecting previously deselected package binutils.
-(Reading database ... 6127 files and directories currently installed.)
+(Reading database ... 6131 files and directories currently installed.)
Unpacking binutils (from .../binutils_2.14.90.0.6-5_i386.deb) ...
Selecting previously deselected package cpp-3.3.
Unpacking cpp-3.3 (from .../cpp-3.3_1%3a3.3.2-1_i386.deb) ...
Selecting previously deselected package cpp.
Unpacking cpp (from .../cpp_4%3a3.3.1-2_i386.deb) ...
Selecting previously deselected package perl-modules.
-Unpacking perl-modules (from .../perl-modules_5.8.1-3_all.deb) ...
+Unpacking perl-modules (from .../perl-modules_5.8.1-4_all.deb) ...
Selecting previously deselected package libdb4.0.
Unpacking libdb4.0 (from .../libdb4.0_4.0.14-1.3_i386.deb) ...
Selecting previously deselected package perl.
-Unpacking perl (from .../archives/perl_5.8.1-3_i386.deb) ...
+Unpacking perl (from .../archives/perl_5.8.1-4_i386.deb) ...
Selecting previously deselected package patch.
Unpacking patch (from .../patch_2.5.9-1_i386.deb) ...
Selecting previously deselected package make.
@@ -1248,17 +1249,17 @@ Setting up libc6-dev (2.3.2-8) ...
Setting up gcc (3.3.1-2) ...
Setting up libstdc++5-3.3-dev (3.3.2-1) ...
-Setting up perl-modules (5.8.1-3) ...
+Setting up perl-modules (5.8.1-4) ...
Setting up g++-3.3 (3.3.2-1) ...
Setting up g++ (3.3.1-2) ...
-Setting up perl (5.8.1-3) ...
+Setting up perl (5.8.1-4) ...
Setting up dpkg-dev (1.10.15) ...
Setting up build-essential (10) ...
-> ignoring umount of proc filesystem
-> ignoring umount of dev/pts filesystem
Kernel panic: Attempted to kill init!
- tracing thread pid = 14736
+ tracing thread pid = 8298
-> Successful exit from user-mode linux
diff --git a/testsuite/run-test.sh b/testsuite/run-test.sh
index ccbb10c..99df51d 100755
--- a/testsuite/run-test.sh
+++ b/testsuite/run-test.sh
@@ -2,6 +2,8 @@
# This is a testsuite.
PBUILDER_UML=/usr/bin/pbuilder-user-mode-linux
+pbuilder --configfile non-existing-configfile
+
if [ -x "${PBUILDER_UML}" ]; then
for distribution in sid sarge; do
pbuilder-user-mode-linux create --mirror http://ring.asahi-net.or.jp/archives/linux/debian/debian --distribution "${distribution}" --uml-image $(pwd)/testimage --logfile pbuilder-user-mode-linux-create-${distribution}.log