Re: Recurrent "old builds" for D-I

2011-01-06 Thread Christian PERRIER
Quoting Gaudenz Steinlin (gaud...@debian.org): > I got one reply that the first mails had been overlooked and the > person said to be on semi-VAC currently. After that the conversation > died off. I don't think Geert is interested anymore and this build > should be moved to a sparc buildd. As ther

Re: Recurrent "old builds" for D-I

2011-01-06 Thread Christian PERRIER
Quoting Gaudenz Steinlin (gaud...@debian.org): > Excerpts from Otavio Salvador's message of Don Jan 06 12:32:20 +0100 2011: > > On Thu, Jan 6, 2011 at 04:01, Christian PERRIER wrote: > > > Goal: stop having a daily mail about failed builds asthis just > > > makes everybody ignore them after a

Re: [PATCH 2/3] Make udhcpc continuously retry getting a lease until dhcp_timeout.

2011-01-06 Thread Matthew Palmer
On Thu, Jan 06, 2011 at 09:32:02PM +0100, Ferenc Wagner wrote: > > Signed-off-by: Ferenc Wagner > --- > packages/netcfg/dhcp.c | 10 -- > 1 files changed, 8 insertions(+), 2 deletions(-) > > diff --git a/packages/netcfg/dhcp.c b/packages/netcfg/dhcp.c > index f706c5c..385799b 100644

Re: [PATCH 3/3] Silence a compiler warning.

2011-01-06 Thread Matthew Palmer
On Fri, Jan 07, 2011 at 12:31:07AM +0100, Ferenc Wagner wrote: > Ferenc Wagner writes: > > > -execvp("udhcpc", arguments); > > +/* execvp doesn't like const strings for no reason, so we can > > + cast away the const to suppress the compiler warning */ > > +

Re: how can I get all the udeb source packages list?

2011-01-06 Thread Matthew Palmer
[DON'T CC PEOPLE WHO HAVE REPLIED TO THE LIST] On Fri, Jan 07, 2011 at 10:02:31AM +0800, Qin Bo wrote: > > You can get back to the source > > package by looking up the binary package in the relevant Packages list and > > getting the Source header from there (I'm sure someone will be nice and > > g

Re: how can I get all the udeb source packages list?

2011-01-06 Thread Qin Bo
> You can get back to the source > package by looking up the binary package in the relevant Packages list and > getting the Source header from there (I'm sure someone will be nice and > give > you a grep-dctrl snippet to do that, but I'm not grep-dctrl qualified). > > Relevant Packages list is a a

Debian installer build: failed or old builds

2011-01-06 Thread Daily build aggregator
Debian installer build overview --- Failed or old builds: * OLD BUILD:mipsel Dec 09 00:12 bui...@rem build_cobalt_netboot-2.6_serial http://d-i.debian.org/daily-images/mipsel/daily/build_cobalt_netboot-2.6_serial.log * OLD BUILD:mipsel Dec 09

Bug#599115: marked as done (debian-installer: grub's target examples still reflect grub-legacy's behavior)

2011-01-06 Thread Debian Bug Tracking System
Your message dated Fri, 07 Jan 2011 00:19:50 + with message-id <1294359590.2683.2.ca...@eeepc.belkin> and subject line has caused the Debian Bug report #599115, regarding debian-installer: grub's target examples still reflect grub-legacy's behavior to be marked as done. This means that you c

Re: [PATCH 3/3] Silence a compiler warning.

2011-01-06 Thread Ferenc Wagner
Ferenc Wagner writes: > -execvp("udhcpc", arguments); > +/* execvp doesn't like const strings for no reason, so we can > + cast away the const to suppress the compiler warning */ > +execvp("udhcpc", (char **)arguments); Actually, I started to fee

Re: Recurrent "old builds" for D-I

2011-01-06 Thread Gaudenz Steinlin
Excerpts from Otavio Salvador's message of Don Jan 06 12:32:20 +0100 2011: > On Thu, Jan 6, 2011 at 04:01, Christian PERRIER wrote: > > Goal: stop having a daily mail about failed builds asthis just > > makes everybody ignore them after a few days. > > We might try to have this mail reversed

Bug#606227: addining multiple issue (was: Re: cdset broken)

2011-01-06 Thread Steve McIntyre
On Sun, Jan 02, 2011 at 09:17:34AM +0200, George Danchev wrote: > >2) Next, apt-setup uses apt-cdrom ident to identify the additionally supplied >CDs. According to elmig from #debian-cd, apt-cdrom from debian 5.0.7 release >correctly scans squeeze discs, while apt-cdrom from squeeze's cdrom only

Re: Recurrent "old builds" for D-I

2011-01-06 Thread Gaudenz Steinlin
Excerpts from Christian PERRIER's message of Don Jan 06 07:01:07 +0100 2011: > Quoting Daily build aggregator (debian-boot@lists.debian.org): > > Debian installer build overview > > --- > > > > Failed or old builds: > > > > * OLD BUILD:mipsel Dec 09 00:12 bui...@re

Bug#394993: marked as done (apt-setup should clean up its mess)

2011-01-06 Thread Debian Bug Tracking System
Your message dated Thu, 06 Jan 2011 21:37:08 + with message-id <1294349828.2683.0.ca...@eeepc.belkin> and subject line This was fixed by #378868. has caused the Debian Bug report #394993, regarding apt-setup should clean up its mess to be marked as done. This means that you claim that the prob

[PATCH 1/3] Fix the type of the option array element.

2011-01-06 Thread Ferenc Wagner
As long as all pointers are of the same size (as usual), this doesn't make a difference. Signed-off-by: Ferenc Wagner --- packages/netcfg/dhcp.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/packages/netcfg/dhcp.c b/packages/netcfg/dhcp.c index f7ffa00..f706c5c 100644

[PATCH 0/3] Make udhcpc continuously retry getting a lease until dhcp_timeout

2011-01-06 Thread Ferenc Wagner
Hi, Turns out my problem wasn't exactly network card specific, but somehow more deeply related to the surrounding network switch configurations. Anyhow, the concrete problem was that udhcpc sent out 3 DHCPDISCOVER packets only in the first couple of seconds, then spent its remaining time before ne

[PATCH 2/3] Make udhcpc continuously retry getting a lease until dhcp_timeout.

2011-01-06 Thread Ferenc Wagner
Signed-off-by: Ferenc Wagner --- packages/netcfg/dhcp.c | 10 -- 1 files changed, 8 insertions(+), 2 deletions(-) diff --git a/packages/netcfg/dhcp.c b/packages/netcfg/dhcp.c index f706c5c..385799b 100644 --- a/packages/netcfg/dhcp.c +++ b/packages/netcfg/dhcp.c @@ -138,6 +138,7 @@ in

[PATCH 3/3] Silence a compiler warning.

2011-01-06 Thread Ferenc Wagner
Signed-off-by: Ferenc Wagner --- packages/netcfg/dhcp.c |7 --- 1 files changed, 4 insertions(+), 3 deletions(-) diff --git a/packages/netcfg/dhcp.c b/packages/netcfg/dhcp.c index 385799b..ce93b26 100644 --- a/packages/netcfg/dhcp.c +++ b/packages/netcfg/dhcp.c @@ -133,8 +133,7 @@ stati

reopening 608641, reassign 608641 to cdebconf

2011-01-06 Thread Colin Watson
# Automatically generated email from bts, devscripts version 2.10.35lenny7 reopen 608641 reassign 608641 cdebconf -- To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/1294

apt-setup_0.52_i386.changes ACCEPTED into unstable

2011-01-06 Thread Debian FTP Masters
Accepted: apt-cdrom-setup_0.52_all.udeb to main/a/apt-setup/apt-cdrom-setup_0.52_all.udeb apt-mirror-setup_0.52_all.udeb to main/a/apt-setup/apt-mirror-setup_0.52_all.udeb apt-setup-udeb_0.52_all.udeb to main/a/apt-setup/apt-setup-udeb_0.52_all.udeb apt-setup_0.52.dsc to main/a/apt-setup

Processing of apt-setup_0.52_i386.changes

2011-01-06 Thread Debian FTP Masters
apt-setup_0.52_i386.changes uploaded successfully to localhost along with the files: apt-setup_0.52.dsc apt-setup_0.52.tar.gz apt-setup-udeb_0.52_all.udeb apt-mirror-setup_0.52_all.udeb apt-cdrom-setup_0.52_all.udeb Greetings, Your Debian queue daemon (running on host franck.deb

Processed: reopening 608641, reassign 608641 to cdebconf

2011-01-06 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org: > # Automatically generated email from bts, devscripts version 2.10.35lenny7 > reopen 608641 Bug #608641 {Done: Christian PERRIER } [debian-installer] debian-installer: Debian installer lose its mind when doing again the process after an error in

Bug#607467: marked as done (installation : disk set analysis)

2011-01-06 Thread Debian Bug Tracking System
Your message dated Thu, 06 Jan 2011 17:32:07 + with message-id and subject line Bug#602421: fixed in apt-setup 1:0.52 has caused the Debian Bug report #602421, regarding installation : disk set analysis to be marked as done. This means that you claim that the problem has been dealt with. If t

Bug#602421: marked as done (installation-reports: Squeeze Installation - apt does not appear to be scanning multiple DVDs correctly during graphical installation)

2011-01-06 Thread Debian Bug Tracking System
Your message dated Thu, 06 Jan 2011 17:32:07 + with message-id and subject line Bug#602421: fixed in apt-setup 1:0.52 has caused the Debian Bug report #602421, regarding installation-reports: Squeeze Installation - apt does not appear to be scanning multiple DVDs correctly during graphical in

Bug#606227: marked as done ('DVD set' scan, debian-squeeze-di-beta1-i386-DVD-2 label missing from install screen.)

2011-01-06 Thread Debian Bug Tracking System
Your message dated Thu, 06 Jan 2011 17:32:07 + with message-id and subject line Bug#602421: fixed in apt-setup 1:0.52 has caused the Debian Bug report #602421, regarding 'DVD set' scan, debian-squeeze-di-beta1-i386-DVD-2 label missing from install screen. to be marked as done. This means tha

debian-installer_20110106_amd64.changes ACCEPTED into unstable

2011-01-06 Thread Debian FTP Masters
/debian-installer/debian-installer_20110106_amd64.deb Changes: debian-installer (20110106) unstable; urgency=low . * Use SpaceFun theme. Closes #603554. * Update Linux kernel to 2.6.32-29. Override entries for your package: debian-installer_20110106.dsc - source devel debian

Processing of debian-installer_20110106_amd64.changes

2011-01-06 Thread Debian FTP Masters
debian-installer_20110106_amd64.changes uploaded successfully to localhost along with the files: debian-installer_20110106.dsc debian-installer_20110106.tar.gz debian-installer_20110106_amd64.deb debian-installer-images_20110106_amd64.tar.gz Greetings, Your Debian queue daemon (ru

netinst.iso with 2.6.36 amd64

2011-01-06 Thread Joelly Alexander
howto build a netinst with a new 2.6.36 kernel? newer 6gb sas/sata raid-controllers are not supported in the actual 2.6.32 kernel but in the 2.6.36 like the areca 18x series; i tried to build a custom netinst with packages from the squeeze repository what is not the problem because alle the p

Re: Recurrent "old builds" for D-I

2011-01-06 Thread Otavio Salvador
On Thu, Jan 6, 2011 at 04:01, Christian PERRIER wrote: > Goal: stop having a daily mail about failed builds asthis just > makes everybody ignore them after a few days. We might try to have this mail reversed sorted by failure date. So the most recent failure will always be show at first item.

Re: how can I get all the udeb source packages list?

2011-01-06 Thread Matthew Palmer
On Thu, Jan 06, 2011 at 04:07:38PM +0800, Qin Bo wrote: >I want to build all the udeb packages, but I couldn't confirm the udeb > source packages list and udeb packages list which use by debian installer. >How can I get all the udeb source packages list? >As far as I know now: >dif

Processed: tagging 608996

2011-01-06 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org: > tags 608996 + pending Bug #608996 [partman-target] debian-installer: reference to vol_id in /etc/fstab should be replaced by blkid Added tag(s) pending. > thanks Stopping processing here. Please contact me if you need assistance. -- 608996: htt

how can I get all the udeb source packages list?

2011-01-06 Thread Qin Bo
hi all: I want to build all the udeb packages, but I couldn't confirm the udeb source packages list and udeb packages list which use by debian installer. How can I get all the udeb source packages list? As far as I know now: different architecture the source package may is different li