Translation status mismatch between weblate and d-i.debian.org

2019-02-12 Thread Petter Reinholdtsen


Hi.  I just noticed a strange mismatch between the translation status
for nb on https://d-i.debian.org/l10n-stats/ > and
https://hosted.weblate.org/languages/nb_NO/debian-installer/ >.

On the first the translation is incomplete, while on the second it is
100%  Are the translations from weblate not propagated to where the
first page discover them?

PS: Please keep me on cc, I am not on this mailing list.

-- 
Happy hacking
Petter Reinholdtsen



Re: FTBFS with TeX Live 2018

2019-02-12 Thread Holger Wansing
Hi,

Holger Wansing  wrote:
> Hi,
> 
> Samuel Thibault  wrote:
> > Holger Wansing, le dim. 10 févr. 2019 16:37:57 +0100, a ecrit:
> > > Cyril Brulebois  wrote:
> > > > Hi Hilmar,
> > > > 
> > > > Hilmar Preuße  (2018-04-26):
> > > > > This is the patch for installation-howto.po.
> > > > 
> > > > Thanks, I've just pushed it:
> > > > | Committed revision 71074.
> > > > 
> > > > > Unfortunately the build fails later on the nl localizsation:
> > > > > 
> > > > > xelatex -interaction=batchmode install.nl.profiled.tex
> > > > > xelatex failed
> > > > > install.nl.profiled.tex:75: Emergency stop.
> > > > > install.nl.profiled.tex:75: leading text: \maketitle
> > > > > /home/hille/installation-guide-20170614/build/build.tmp.nl.i386/dblatex/tmpUw9ouC
> > > > > not removed
> > > > > 
> > > > > Unfortunately the temporary files /are/ removed, which makes debugging
> > > > > a little bit harder. ;-(
> > > > 
> > > > Yes, one needs to tell it to stop doing so… (I ran into that issue in
> > > > the past as well)…
> > > 
> > > 
> > > So, here we go :-)
> > > 
> > > Attached is a patch to only remove the temporary files, when the build ran
> > > without errors.
> > > 
> > > That should serve both situations:
> > > - don't fill up disc space on dillon for the installation-guide builds
> > >   (there was https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=859150
> > >   those days, which lead to above mentioned removal of tmp files)
> > > 
> > > - having the tmp files in case of build errors (especially build errors
> > >   for pdf with dblatex can be tricky without those tmp files).
> > > 
> > > 
> > > Comments?
> > > Any objections against me applying this?
> > 
> > Please do apply, it'll be more convenient :)
> 
> Committed and activated on dillon.

I had to revert this.
It works fine for the buildone.sh scipt, but it breaks build.sh which I did not 
check, sadly. Sorry


Holger



-- 
Holger Wansing 
PGP-Fingerprint: 496A C6E8 1442 4B34 8508  3529 59F1 87CA 156E B076



Bug#911133: Debian Installer assumes serial console on arm64

2019-02-12 Thread Wookey
Here is a patch to debian-installer to enable it to run D-I on all available 
consoles. 

This is one part of making arm64 machines work 'just like PCs' in the installer.

I have also done some work on getting the graphical installer
working. I have enabled that, but input is not working yet, so 'more
later' on that.

The multiple-console support involves a major revamp of
'reopen-consoles-linux' in rootskel in debian-installer, to get rid of
a load of old cruft, and use /proc/consoles (i.e. the kernel's list)
to choose the set of enabled consoles, running the startup rc scripts
on just one console (to avoid doing things twice), then running
debian-installer itself on all the consoles that are enabled and have
device files.

More details are available in the thread steve linked to on debian-boot.

It seems like there is actually a cleaner way to do this, by getting
init to do the heavy process/session/parallel-tasks lifting (instead
of reopen-consoles and steal-ctty). I have a proof-of-concept patch
for that, but it's not actually working right yet. I'll send that in
when it does if I don't hit any roadblocks.

Wookey
-- 
Principal hats:  Linaro, Debian, Wookware, ARM
http://wookware.org/
diff --git a/src/etc/inittab-linux b/src/etc/inittab-linux
index a7b8a23..437e208 100644
--- a/src/etc/inittab-linux
+++ b/src/etc/inittab-linux
@@ -5,7 +5,7 @@
 ::sysinit:/sbin/reopen-console /sbin/debian-installer-startup
 
 # main setup program
-::respawn:/sbin/reopen-console /sbin/debian-installer
+::respawn:/sbin/reopen-console --all-consoles /sbin/debian-installer
 
 # convenience shells
 tty2::askfirst:-/bin/sh
diff --git a/src/sbin/reopen-console-linux b/src/sbin/reopen-console-linux
index 3287dd0..e13bfa3 100755
--- a/src/sbin/reopen-console-linux
+++ b/src/sbin/reopen-console-linux
@@ -1,74 +1,68 @@
 #!/bin/sh
 
 # In order to give proper access to the tty, we need to locate the device
-# corresponding to the console we are actually using.
+# corresponding to each console we are actually using.
+
+# This script is run twice, once at sysinit to run the debian-installer-startup
+# rc scripts, and once to start the installer itself.
+# The first time it parses the consoles used, the second time they are read from files
+# The startup scripts need to be run just once (on one console) (not idempotent)
+# The installer is run on all the enabled consoles (using the --all-consoles option)
+
 
 NL="
 "
 
-console=
-if ! [ -f /var/run/console-device ]; then
-	# If the kernel emitted a "handover" message, then it's the one
-	case $(uname -r) in
-	2.6.2*|2.6.3[01]*)
-		console="$(dmesg -s 262143 |
-			sed -n -r -e 's/(.*\])? *console handover: boot \[.*\] -> real \[(.*)\]$/\2/p')"
-		;;
-	2.6.3[234567]*)
-		console="$(dmesg -s 262143 |
-			sed -n -r -e 's/(.*\])? *console \[(.*)\] enabled, bootconsole disabled$/\2/p')"
-		;;
-	*) # >= 2.6.38
-		console_major_minor="$(get-real-console-linux)"
-		console_raw="$(readlink "/sys/dev/char/${console_major_minor}")"
-		console="${console_raw##*/}"
-		;;
-	esac
-
-	# Except if it is the wrong type...
-	if [ "$console" ] && [ "$(console-type)" = serial ] && \
-	   expr "$console" : "tty[0-9]" >/dev/null; then
-		console=
-	fi
+if ! [ -f /var/run/console-devices ]; then
 
 	consoles=
-	if [ -z "$console" ]; then
-		# Retrieve all enabled consoles from boot log; ignore those
-		# for which no device file exists
-		for cons in $(dmesg -s 262143 |
-			sed -n -r -e 's/(.*\])? *console \[(.*)\] enabled/\2/p')
-		do
-			if [ -e "/dev/$cons" ]; then
-consoles="${consoles:+$consoles$NL}$cons"
-			fi
-		done
-		# Only one console? Then we are good.
-		if [ $(echo "$consoles" | wc -l) -eq 1 ]; then
-			console="$consoles"
+	preferred=
+	# Retrieve all enabled consoles from kernel; ignore those
+	# for which no device file exists
+
+	kernelconsoles="$(cat /proc/consoles)"
+	for cons in $(echo "$kernelconsoles" | sed -n -r -e 's/(^.*)  .*\((.*)\).*$/\1/p' )
+	do
+		status=$(echo "$kernelconsoles" | grep $cons | sed -n -r -e 's/(^.*) *.*\((.*)\).*$/\2/p' )
+		if [ -e "/dev/$cons" ] && [ $(echo "$status" | grep -o 'E') ]; then
+			consoles="${consoles:+$consoles$NL}$cons"
 		fi
-	fi
+		# 'C' console is 'most prefered'.
+		if [ $(echo "$status" | grep -o 'C') ]; then
+			preferred="$cons"
+		fi
+	done
 
-	if [ -z "$console" ]; then
-		# Locate the last enabled console present on the command line
-		for arg in $(cat /proc/cmdline); do
-			case $arg in
-			console=*)
-arg=${arg#console=}
-cons=${arg%%,*}
-if echo "$consoles" | grep -q "^$cons$"; then
-	console=$cons
-fi
-;;
-			esac
-		done
+	if [ -z "$consoles" ]; then
+		# Nothing found? Default to /dev/console.
+		consoles=console
 	fi
-
-	if [ -z "$console" ]; then
-		# Still nothing? Default to /dev/console.
-		console=console
+	if [ -z "$preferred" ]; then
+		#None marked preferred? Use the first one
+		preferred=$(echo "$consoles" | head -n 1) 
 	fi
-	echo /dev/$console > /var/run/console-device
+	
+	

debian-installer-netboot-images_20170615+deb9u5.b2_source.changes ACCEPTED into proposed-updates->stable-new, proposed-updates

2019-02-12 Thread Debian FTP Masters



Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 12 Feb 2019 18:24:00 +0100
Source: debian-installer-netboot-images
Binary: debian-installer-9-netboot-amd64 debian-installer-9-netboot-arm64 
debian-installer-9-netboot-armel debian-installer-9-netboot-armhf 
debian-installer-9-netboot-i386 debian-installer-9-netboot-mips 
debian-installer-9-netboot-mips64el debian-installer-9-netboot-mipsel 
debian-installer-9-netboot-ppc64el
Architecture: source
Version: 20170615+deb9u5.b2
Distribution: stretch
Urgency: medium
Maintainer: Debian Install System Team 
Changed-By: Cyril Brulebois 
Description:
 debian-installer-9-netboot-amd64 - Debian-installer network boot images for 
amd64
 debian-installer-9-netboot-arm64 - Debian-installer network boot images for 
arm64
 debian-installer-9-netboot-armel - Debian-installer network boot images for 
armel
 debian-installer-9-netboot-armhf - Debian-installer network boot images for 
armhf
 debian-installer-9-netboot-i386 - Debian-installer network boot images for i386
 debian-installer-9-netboot-mips - Debian-installer network boot images for mips
 debian-installer-9-netboot-mips64el - Debian-installer network boot images for 
mips64el
 debian-installer-9-netboot-mipsel - Debian-installer network boot images for 
mipsel
 debian-installer-9-netboot-ppc64el - Debian-installer network boot images for 
ppc64el
Changes:
 debian-installer-netboot-images (20170615+deb9u5.b2) stretch; urgency=medium
 .
   * Update to 20170615+deb9u5+b2 images, from stretch-proposed-update
Checksums-Sha1:
 2bcd9ec1f805d6b57dcbb280b66f5fd4bcdaf81f 2629 
debian-installer-netboot-images_20170615+deb9u5.b2.dsc
 ca9ae382c2b8da5dd21fb105d70cfa8f7465eb1b 7304 
debian-installer-netboot-images_20170615+deb9u5.b2.tar.xz
 458832d5db63e667313988b8f3998dea9cac853d 6558 
debian-installer-netboot-images_20170615+deb9u5.b2_source.buildinfo
Checksums-Sha256:
 1893dc1e9f0e7780d06bced905156bab1b485da5463e74526a6155aac2c55168 2629 
debian-installer-netboot-images_20170615+deb9u5.b2.dsc
 80b7f9380062b661b1b9afc26fba8e2d3efd58fc074fc8688d5f2af7779f6846 7304 
debian-installer-netboot-images_20170615+deb9u5.b2.tar.xz
 9b3e4d1e2bf9936c8dbb5543fb975efc6edb95441d31a57d16dc9253eebf394a 6558 
debian-installer-netboot-images_20170615+deb9u5.b2_source.buildinfo
Files:
 20f2250f8adff8438307f2faa2288548 2629 misc optional 
debian-installer-netboot-images_20170615+deb9u5.b2.dsc
 e363c53ea438c19f746b4296431bf42c 7304 misc optional 
debian-installer-netboot-images_20170615+deb9u5.b2.tar.xz
 acd54dd772841b662c04b7460919b3e2 6558 misc optional 
debian-installer-netboot-images_20170615+deb9u5.b2_source.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEtg6/KYRFPHDXTPR4/5FK8MKzVSAFAlxjA/cACgkQ/5FK8MKz
VSD2KxAArQYKP3npyMUCi+wrLkrYAcrFLMPl1Pk4phQQoTzwcOxD1S+yDFxUXaO5
H5qIe3/BJFp/EmqCKTFeRgdhrJ+irg7SU8HvZhW7AtmVsvcz5j1Oa+dr0FtS36vm
3oKGsuBh27WnTs0Gk5ubH1skvzZgBQV0iZjM6dNCkSSaon3CavtnfOiKguT+TSEs
33BC0fudQ39g0W2ospa6/p51FYauGGNbtcCcXjXPIPYZwGnWSdKg7iAp1gXI/C6k
qz+2nj3ajCphffIScI4hTNXUWWE5ofNZ6a8k8xVmKV89nN/pbYc3XjPyz1YxXOVx
CVt7Y0Tywnwtr+MOCk17SqIySr/MJkGeG/FZaNoriFA4Veqe5FLSnhtQc5lo7N+W
/OPZkCV8R6cz9cf5KFfvD3/6eQxZ3tBffQv4VcC3xEnIl6Ym+Z/qtULb6/pYEKYq
d09qgxS3Vv3y1nbwyOSaOFMRfHP9y/lBsbVwfw04S+5juEeOZEs30ZOxM14eDaFM
irgVAqVI7xOU6BkrPqJ9VsAXVDl0mbcD9uInvOKXR50VknJ6Jgmx6EAl0ogdeS2t
C+uKNVJp22M3X68Hq3Jo0hKGzbTUSX5kmW3gyt13OJv9qK2pi5EM+WxIOdtrwHjR
tmO7RL6+ZFUJEgh9rL6ZCrEI8J8w9sJLG/kGsYgMXSakQIJYuy4=
=hrZg
-END PGP SIGNATURE-


Thank you for your contribution to Debian.



debian-installer-netboot-images_20170615+deb9u5.b2_source.changes ACCEPTED into proposed-updates->stable-new

2019-02-12 Thread Debian FTP Masters
Mapping stretch to stable.
Mapping stable to proposed-updates.

Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 12 Feb 2019 18:24:00 +0100
Source: debian-installer-netboot-images
Binary: debian-installer-9-netboot-amd64 debian-installer-9-netboot-arm64 
debian-installer-9-netboot-armel debian-installer-9-netboot-armhf 
debian-installer-9-netboot-i386 debian-installer-9-netboot-mips 
debian-installer-9-netboot-mips64el debian-installer-9-netboot-mipsel 
debian-installer-9-netboot-ppc64el
Architecture: source
Version: 20170615+deb9u5.b2
Distribution: stretch
Urgency: medium
Maintainer: Debian Install System Team 
Changed-By: Cyril Brulebois 
Description:
 debian-installer-9-netboot-amd64 - Debian-installer network boot images for 
amd64
 debian-installer-9-netboot-arm64 - Debian-installer network boot images for 
arm64
 debian-installer-9-netboot-armel - Debian-installer network boot images for 
armel
 debian-installer-9-netboot-armhf - Debian-installer network boot images for 
armhf
 debian-installer-9-netboot-i386 - Debian-installer network boot images for i386
 debian-installer-9-netboot-mips - Debian-installer network boot images for mips
 debian-installer-9-netboot-mips64el - Debian-installer network boot images for 
mips64el
 debian-installer-9-netboot-mipsel - Debian-installer network boot images for 
mipsel
 debian-installer-9-netboot-ppc64el - Debian-installer network boot images for 
ppc64el
Changes:
 debian-installer-netboot-images (20170615+deb9u5.b2) stretch; urgency=medium
 .
   * Update to 20170615+deb9u5+b2 images, from stretch-proposed-update
Checksums-Sha1:
 2bcd9ec1f805d6b57dcbb280b66f5fd4bcdaf81f 2629 
debian-installer-netboot-images_20170615+deb9u5.b2.dsc
 ca9ae382c2b8da5dd21fb105d70cfa8f7465eb1b 7304 
debian-installer-netboot-images_20170615+deb9u5.b2.tar.xz
 458832d5db63e667313988b8f3998dea9cac853d 6558 
debian-installer-netboot-images_20170615+deb9u5.b2_source.buildinfo
Checksums-Sha256:
 1893dc1e9f0e7780d06bced905156bab1b485da5463e74526a6155aac2c55168 2629 
debian-installer-netboot-images_20170615+deb9u5.b2.dsc
 80b7f9380062b661b1b9afc26fba8e2d3efd58fc074fc8688d5f2af7779f6846 7304 
debian-installer-netboot-images_20170615+deb9u5.b2.tar.xz
 9b3e4d1e2bf9936c8dbb5543fb975efc6edb95441d31a57d16dc9253eebf394a 6558 
debian-installer-netboot-images_20170615+deb9u5.b2_source.buildinfo
Files:
 20f2250f8adff8438307f2faa2288548 2629 misc optional 
debian-installer-netboot-images_20170615+deb9u5.b2.dsc
 e363c53ea438c19f746b4296431bf42c 7304 misc optional 
debian-installer-netboot-images_20170615+deb9u5.b2.tar.xz
 acd54dd772841b662c04b7460919b3e2 6558 misc optional 
debian-installer-netboot-images_20170615+deb9u5.b2_source.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEtg6/KYRFPHDXTPR4/5FK8MKzVSAFAlxjA/cACgkQ/5FK8MKz
VSD2KxAArQYKP3npyMUCi+wrLkrYAcrFLMPl1Pk4phQQoTzwcOxD1S+yDFxUXaO5
H5qIe3/BJFp/EmqCKTFeRgdhrJ+irg7SU8HvZhW7AtmVsvcz5j1Oa+dr0FtS36vm
3oKGsuBh27WnTs0Gk5ubH1skvzZgBQV0iZjM6dNCkSSaon3CavtnfOiKguT+TSEs
33BC0fudQ39g0W2ospa6/p51FYauGGNbtcCcXjXPIPYZwGnWSdKg7iAp1gXI/C6k
qz+2nj3ajCphffIScI4hTNXUWWE5ofNZ6a8k8xVmKV89nN/pbYc3XjPyz1YxXOVx
CVt7Y0Tywnwtr+MOCk17SqIySr/MJkGeG/FZaNoriFA4Veqe5FLSnhtQc5lo7N+W
/OPZkCV8R6cz9cf5KFfvD3/6eQxZ3tBffQv4VcC3xEnIl6Ym+Z/qtULb6/pYEKYq
d09qgxS3Vv3y1nbwyOSaOFMRfHP9y/lBsbVwfw04S+5juEeOZEs30ZOxM14eDaFM
irgVAqVI7xOU6BkrPqJ9VsAXVDl0mbcD9uInvOKXR50VknJ6Jgmx6EAl0ogdeS2t
C+uKNVJp22M3X68Hq3Jo0hKGzbTUSX5kmW3gyt13OJv9qK2pi5EM+WxIOdtrwHjR
tmO7RL6+ZFUJEgh9rL6ZCrEI8J8w9sJLG/kGsYgMXSakQIJYuy4=
=hrZg
-END PGP SIGNATURE-


Thank you for your contribution to Debian.



Processing of debian-installer-netboot-images_20170615+deb9u5.b2_source.changes

2019-02-12 Thread Debian FTP Masters
debian-installer-netboot-images_20170615+deb9u5.b2_source.changes uploaded 
successfully to localhost
along with the files:
  debian-installer-netboot-images_20170615+deb9u5.b2.dsc
  debian-installer-netboot-images_20170615+deb9u5.b2.tar.xz
  debian-installer-netboot-images_20170615+deb9u5.b2_source.buildinfo

Greetings,

Your Debian queue daemon (running on host usper.debian.org)



Re: Hierarchical tasksel / Blends support (Was: Debian Installer Buster Alpha 5 release)

2019-02-12 Thread Ian Jackson
Andreas Tille writes ("Re: Hierarchical tasksel / Blends support (Was: Debian 
Installer Buster Alpha 5 release)"):
> That's really relieving for me to hear since I was scared about the need
> to learn Perl to a way higher level than the basics I have and I admit
> there are lots of tasks on my desk regarding other Blends related
> things.

Although I support what you are doing here and I think it is
important, I don't have time to contribute properly.  I can however
offer my services as an ad-hoc Perl consultant/tutor/whatever.
Catch me as Diziet on oftc or freenode, or email me here.

Regards,
Ian.

-- 
Ian JacksonThese opinions are my own.

If I emailed you from an address @fyvzl.net or @evade.org.uk, that is
a private address which bypasses my fierce spamfilter.



Bug#922123: nepali firefox-l10n recommends

2019-02-12 Thread Daniel Baumann
Package: tasksel
Version: 3.50
Severity: wishlist

Hi,

firefox-l10n-ne-np is available, therefore it would be nice if you could
update the recommends to:

  firefox-esr-l10n-ne-np | firefox-l10n-ne-np

Thanks,
Daniel



Re: FTBFS with TeX Live 2018

2019-02-12 Thread Holger Wansing
Hi,

Samuel Thibault  wrote:
> Holger Wansing, le dim. 10 févr. 2019 16:37:57 +0100, a ecrit:
> > Cyril Brulebois  wrote:
> > > Hi Hilmar,
> > > 
> > > Hilmar Preuße  (2018-04-26):
> > > > This is the patch for installation-howto.po.
> > > 
> > > Thanks, I've just pushed it:
> > > | Committed revision 71074.
> > > 
> > > > Unfortunately the build fails later on the nl localizsation:
> > > > 
> > > > xelatex -interaction=batchmode install.nl.profiled.tex
> > > > xelatex failed
> > > > install.nl.profiled.tex:75: Emergency stop.
> > > > install.nl.profiled.tex:75: leading text: \maketitle
> > > > /home/hille/installation-guide-20170614/build/build.tmp.nl.i386/dblatex/tmpUw9ouC
> > > > not removed
> > > > 
> > > > Unfortunately the temporary files /are/ removed, which makes debugging
> > > > a little bit harder. ;-(
> > > 
> > > Yes, one needs to tell it to stop doing so… (I ran into that issue in
> > > the past as well)…
> > 
> > 
> > So, here we go :-)
> > 
> > Attached is a patch to only remove the temporary files, when the build ran
> > without errors.
> > 
> > That should serve both situations:
> > - don't fill up disc space on dillon for the installation-guide builds
> >   (there was https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=859150
> >   those days, which lead to above mentioned removal of tmp files)
> > 
> > - having the tmp files in case of build errors (especially build errors
> >   for pdf with dblatex can be tricky without those tmp files).
> > 
> > 
> > Comments?
> > Any objections against me applying this?
> 
> Please do apply, it'll be more convenient :)

Committed and activated on dillon.


Holger


-- 
Holger Wansing 
PGP-Fingerprint: 496A C6E8 1442 4B34 8508  3529 59F1 87CA 156E B076



Bug#922115: wrong partition detected

2019-02-12 Thread Andrea Janna

Package: installation-reports

Boot method: CD
Image version: 
https://cdimage.debian.org/cdimage/unofficial/non-free/cd-including-firmware/buster_di_alpha5+nonfree/multi-arch/iso-cd/firmware-buster-DI-alpha5-amd64-i386-netinst.iso
Date: 2019/02/10

Machine: Asus S-presso desktop
Processor: Intel(R) Pentium(R) 4 CPU 3.00GHz
Memory: 2 GB

Partitions: Partition Table for /dev/sda
 ---Starting  Ending-Start Number of
 # Flags Head Sect  Cyl   ID  Head Sect  Cyl SectorSectors
-- -   -    - --- ---
 1  0x0001 52180 0x05   80   63 121601   838271700  1115253468
 2  0x8011 0 0x07  254   63  7294  63   117194112
 3  0x0000 0 0x0000 0   0   0
 4  0x0000 0 0x0000 0   0   0
 5  0x0011 52180 0x07  254   63 55826  6358588992
 6  0x0011 60813 0x07  254   63 121588  63   976366377

Output of lspci -knn (or lspci -nn):
00:00.0 Host bridge [0600]: Intel Corporation 82865G/PE/P DRAM 
Controller/Host-Hub Interface [8086:2570] (rev 02)
Subsystem: ASUSTeK Computer Inc. Device [1043:80a5]
Kernel driver in use: agpgart-intel
00:02.0 VGA compatible controller [0300]: Intel Corporation 82865G Integrated 
Graphics Controller [8086:2572] (rev 02)
Subsystem: ASUSTeK Computer Inc. P5P800-MX Mainboard [1043:80a5]
Kernel driver in use: i915
Kernel modules: i915
00:06.0 System peripheral [0880]: Intel Corporation 82865G/PE/P Processor to 
I/O Memory Interface [8086:2576] (rev 02)
00:1d.0 USB controller [0c03]: Intel Corporation 82801EB/ER (ICH5/ICH5R) USB 
UHCI Controller #1 [8086:24d2] (rev 02)
Subsystem: ASUSTeK Computer Inc. P4P800/P5P800 series motherboard 
[1043:80a6]
Kernel driver in use: uhci_hcd
00:1d.1 USB controller [0c03]: Intel Corporation 82801EB/ER (ICH5/ICH5R) USB 
UHCI Controller #2 [8086:24d4] (rev 02)
Subsystem: ASUSTeK Computer Inc. P4P800/P5P800 series motherboard 
[1043:80a6]
Kernel driver in use: uhci_hcd
00:1d.2 USB controller [0c03]: Intel Corporation 82801EB/ER (ICH5/ICH5R) USB 
UHCI Controller #3 [8086:24d7] (rev 02)
Subsystem: ASUSTeK Computer Inc. P4P800/P5P800 series motherboard 
[1043:80a6]
Kernel driver in use: uhci_hcd
00:1d.3 USB controller [0c03]: Intel Corporation 82801EB/ER (ICH5/ICH5R) USB 
UHCI Controller #4 [8086:24de] (rev 02)
Subsystem: ASUSTeK Computer Inc. P4P800/P5P800 series motherboard 
[1043:80a6]
Kernel driver in use: uhci_hcd
00:1d.7 USB controller [0c03]: Intel Corporation 82801EB/ER (ICH5/ICH5R) USB2 
EHCI Controller [8086:24dd] (rev 02)
Subsystem: ASUSTeK Computer Inc. P4P800/P5P800 series motherboard 
[1043:80a6]
Kernel driver in use: ehci-pci
00:1e.0 PCI bridge [0604]: Intel Corporation 82801 PCI Bridge [8086:244e] (rev 
c2)
00:1f.0 ISA bridge [0601]: Intel Corporation 82801EB/ER (ICH5/ICH5R) LPC 
Interface Bridge [8086:24d0] (rev 02)
Kernel driver in use: lpc_ich
Kernel modules: intel_rng, lpc_ich
00:1f.1 IDE interface [0101]: Intel Corporation 82801EB/ER (ICH5/ICH5R) IDE 
Controller [8086:24db] (rev 02)
Subsystem: ASUSTeK Computer Inc. P4P800/P5P800 series motherboard 
[1043:80a6]
Kernel driver in use: ata_piix
Kernel modules: pata_acpi, ata_generic
00:1f.3 SMBus [0c05]: Intel Corporation 82801EB/ER (ICH5/ICH5R) SMBus 
Controller [8086:24d3] (rev 02)
Subsystem: ASUSTeK Computer Inc. P4P800/P5P800 series motherboard 
[1043:80a6]
Kernel driver in use: i801_smbus
Kernel modules: i2c_i801
00:1f.5 Multimedia audio controller [0401]: Intel Corporation 82801EB/ER 
(ICH5/ICH5R) AC'97 Audio Controller [8086:24d5] (rev 02)
Subsystem: ASUSTeK Computer Inc. Device [1043:810d]
01:03.0 Ethernet controller [0200]: Realtek Semiconductor Co., Ltd. 
RTL-8100/8101L/8139 PCI Fast Ethernet Adapter [10ec:8139] (rev 10)
Subsystem: ASUSTeK Computer Inc. P5P800-MX Mainboard [1043:8109]
Kernel driver in use: 8139too
Kernel modules: 8139cp, 8139too
01:09.0 Mass storage controller [0180]: ULi Electronics Inc. ALi M5281 Serial 
ATA / RAID Host Controller [10b9:5281] (rev a4)
Subsystem: ULi Electronics Inc. ALi M5281 Serial ATA / RAID Host 
Controller [10b9:5281]
Kernel driver in use: sata_uli
Kernel modules: sata_uli
01:09.1 Mass storage controller [0180]: ULi Electronics Inc. M5228 ALi ATA/RAID 
Controller [10b9:5228] (rev c6)
Subsystem: ULi Electronics Inc. Device [10b9:5281]
Kernel driver in use: pata_ali
Kernel modules: pata_ali

Base System Installation Checklist:
[O] = OK, [E] = Error (please elaborate below), [ ] = didn't try it

Initial boot:   [O]
Detect network card:[O]
Configure network:  [O]
Detect CD:  [O]
Load installer modules: [O]
Detect hard drives: [O]
Partition hard