How to detect network from custom udeb?

2009-11-16 Thread Geronimo Ma. Hernandez
Hello,

I'd like to create a custom udeb-module, which shall be executed after the 
base-installer. I'd like to support 2 different flavours, one without any 
network and the other with network.
For so I don't like to depend my udeb from network.

I thought about using debconf, but I did not find any saved question related 
to network in config.dat ...

So how can I best detect, wether the system has any networking?

regards
Geronimo


-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Re: How to detect network from custom udeb?

2009-11-16 Thread Frans Pop
On Monday 16 November 2009, Geronimo Ma. Hernandez wrote:
 I thought about using debconf, but I did not find any saved question
 related to network in config.dat ...

config.dat is from _debconf_ and contains only debconf information for the 
*installed* system.

For values for Debian Installer questions you need to look at the database 
from _cdebconf_ (or more exact cdebconf-udeb), which is:
/var/lib/cdebconf/questions.dat

And obviously you need to check that database in the D-I environment (while 
D-I is running), although at the end of an installation a copy does get 
saved on the installed system under /var/log/installer.


-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Re: How to detect network from custom udeb?

2009-11-16 Thread Geronimo Ma. Hernandez
Hello,

Thank you for telling me both locations!
Now I can search for the question to use.

regards Geronimo


-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Re: [RFC] choose-mirror rewrite - please review/test

2009-11-16 Thread Frans Pop
On Monday 16 November 2009, Frans Pop wrote:
 I think the attached incremental patch addresses all your comments.

Eh, wrong commit. Correct patch attached.

commit 888015f06c122e1fa723f14bb69a527b2ef7585b
Author: Frans Pop f...@debian.org
Date:   Sun Nov 15 23:51:38 2009 +0100

More improvements from Jeremy

diff --git a/packages/choose-mirror/choose-mirror.c b/packages/choose-mirror/choose-mirror.c
index 45c4cf5..43e7344 100644
--- a/packages/choose-mirror/choose-mirror.c
+++ b/packages/choose-mirror/choose-mirror.c
@@ -159,22 +159,29 @@ void log_invalid_release(const char *name, const char *field) {
 static int get_release(struct release_t *release, const char *name);
 
 /*
- * Try to fetch a Release file using its codename and, if successful, check
+ * Try to fetch a Release file using its codename; if successful, check
  * that it matches the Release file that was fetched using the suite.
+ * Returns false only if an invalid Release file was found.
  */
-static int validate_codename(int *status, const char *codename, const char *suite) {
-	struct release_t release;
-	int ret = 0;
+static int validate_codename(struct release_t *s_release) {
+	struct release_t cn_release;
+	int ret = 1;
 
-	if (get_release(release, codename)) {
-		*status = release.status;
-		if (strcmp(release.suite, suite) != 0)
-			*status = ~IS_VALID;
-		ret = 1;
+	memset(cn_release, 0, sizeof(struct release_t));
+
+	/* s_release-name is the codename to check */
+	if (get_release(cn_release, s_release-name)) {
+		if ((cn_release.status  IS_VALID) 
+		strcmp(cn_release.suite, s_release-suite) == 0) {
+			s_release-status |= (cn_release.status  GET_CODENAME);
+		} else {
+			s_release-status = ~IS_VALID;
+			ret = 0;
+		}
 	}
 
-	free(release.name);
-	free(release.suite);
+	free(cn_release.name);
+	free(cn_release.suite);
 
 	return ret;
 }
@@ -206,9 +213,6 @@ static int get_release(struct release_t *release, const char *name) {
 	free(hostname);
 	free(directory);
 
-	release-name = NULL;
-	release-suite = NULL;
-	release-status = 0;
 	if (f != NULL) {
 		while (fgets(line, sizeof(line), f) != NULL) {
 			char *value;
@@ -235,17 +239,9 @@ static int get_release(struct release_t *release, const char *name) {
 
 		/* Check if release can also be gotten using codename */
 		if ((release-status  IS_VALID)  release-name != NULL 
-		!(release-status  GET_CODENAME)) {
-			int cn_status = 0;
-			if (validate_codename(cn_status, release-name, name)) {
-if (cn_status  IS_VALID) {
-	release-status |= (cn_status  GET_CODENAME);
-} else {
-	release-status = ~IS_VALID;
-	log_invalid_release(name, Codename);
-}
-			}
-		}
+		!(release-status  GET_CODENAME))
+			if (! validate_codename(release))
+log_invalid_release(name, Codename);
 
 		/* In case there is no Codename field */
 		if ((release-status  IS_VALID)  release-name == NULL)
@@ -257,7 +253,13 @@ static int get_release(struct release_t *release, const char *name) {
 
 	pclose(f);
 
-	return (release-name != NULL);
+	if (release-name != NULL) {
+		return 1;
+	} else {
+		if (release-suite)
+			free(release-suite);
+		return 0;
+	}
 }
 
 static int find_releases(void) {
@@ -277,9 +279,13 @@ static int find_releases(void) {
   DEBCONF_BASE checking_download);
 	}
 
+	/* Initialize releases; also ensures NULL termination for .name */
+	memset(releases, 0, MAXRELEASES * sizeof(struct release_t));
+
 	/* Get releases for all suites */
 	if (! base_on_cd) {
 		for (i=0; i  nbr_suites  r  MAXRELEASES; i++) {
+			memset(release, 0, sizeof(struct release_t));
 			if (get_release(release, suites[i])) {
 if (release.status  IS_VALID) {
 	if (strcmp(release.name, default_suite) == 0 ||
@@ -303,6 +309,7 @@ static int find_releases(void) {
 
 	/* Try to get release using the default suite */
 	if (! bad_mirror  (base_on_cd || r == 0)) {
+		memset(release, 0, sizeof(struct release_t));
 		if (get_release(release, default_suite)) {
 			if (release.status  IS_VALID) {
 release.status |= IS_DEFAULT;
@@ -313,9 +320,6 @@ static int find_releases(void) {
 		}
 	}
 
-	/* Mark end of list */
-	releases[r].name = NULL;
-
 	if (show_progress) {
 		debconf_progress_step(debconf, nbr_suites);
 		debconf_progress_stop(debconf);
@@ -324,6 +328,11 @@ static int find_releases(void) {
 	free(default_suite);
 
 	if (r == 0 || bad_mirror) {
+		if (release.name)
+			free(release.name);
+		if (release.suite)
+			free(release.suite);
+
 		debconf_input(debconf, critical, DEBCONF_BASE bad);
 		if (debconf_go(debconf) == 30)
 			exit(10); /* back up to menu */
@@ -652,16 +661,18 @@ static int check_mirror(void) {
 }
 
 static int choose_suite(void) {
-	char **choices_c, **choices, *list;
+	char *choices_c[MAXRELEASES], *choices[MAXRELEASES], *list;
 	int i, ret;
 
 	ret = find_releases();
 	if (ret)
 		return ret;
 
+	/* Also ensures NULL termination */
+	memset(choices, 0, MAXRELEASES * sizeof(char *));
+	memset(choices_c, 0, MAXRELEASES * sizeof(char *));
+
 	/* 

Processing of localechooser_2.17_amd64.changes

2009-11-16 Thread Archive Administrator
localechooser_2.17_amd64.changes uploaded successfully to ftp-master.debian.org
along with the files:
  localechooser_2.17.dsc
  localechooser_2.17.tar.gz
  localechooser_2.17_amd64.udeb

Greetings,

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


-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Processing of preseed_1.43_amd64.changes

2009-11-16 Thread Archive Administrator
preseed_1.43_amd64.changes uploaded successfully to ftp-master.debian.org
along with the files:
  preseed_1.43.dsc
  preseed_1.43.tar.gz
  preseed-common_1.43_all.udeb
  network-preseed_1.43_all.udeb
  file-preseed_1.43_all.udeb
  initrd-preseed_1.43_all.udeb
  env-preseed_1.43_all.udeb

Greetings,

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


-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Processing of base-installer_1.103_amd64.changes

2009-11-16 Thread Archive Administrator
base-installer_1.103_amd64.changes uploaded successfully to 
ftp-master.debian.org
along with the files:
  base-installer_1.103.dsc
  base-installer_1.103.tar.gz
  base-installer_1.103_all.udeb
  bootstrap-base_1.103_amd64.udeb

Greetings,

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


-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Processing of localechooser_2.17_amd64.changes

2009-11-16 Thread Archive Administrator
localechooser_2.17_amd64.changes uploaded successfully to localhost
along with the files:
  localechooser_2.17.dsc
  localechooser_2.17.tar.gz
  localechooser_2.17_amd64.udeb

Greetings,

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


-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Processing of base-installer_1.103_amd64.changes

2009-11-16 Thread Archive Administrator
base-installer_1.103_amd64.changes uploaded successfully to localhost
along with the files:
  base-installer_1.103.dsc
  base-installer_1.103.tar.gz
  base-installer_1.103_all.udeb
  bootstrap-base_1.103_amd64.udeb

Greetings,

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


-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Processing of preseed_1.43_amd64.changes

2009-11-16 Thread Archive Administrator
preseed_1.43_amd64.changes uploaded successfully to localhost
along with the files:
  preseed_1.43.dsc
  preseed_1.43.tar.gz
  preseed-common_1.43_all.udeb
  network-preseed_1.43_all.udeb
  file-preseed_1.43_all.udeb
  initrd-preseed_1.43_all.udeb
  env-preseed_1.43_all.udeb

Greetings,

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


-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#469680: marked as done (localechooser: Current preseeding does not support some language/country options)

2009-11-16 Thread Debian Bug Tracking System
Your message dated Mon, 16 Nov 2009 13:17:19 +
with message-id e1na1sj-0005ky...@ries.debian.org
and subject line Bug#469680: fixed in localechooser 2.17
has caused the Debian Bug report #469680,
regarding localechooser: Current preseeding does not support some 
language/country options
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
469680: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=469680
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: localechooser
Version: 1.37

Currently language and country can only be preseeded through the locale 
debconf template. Although this works well for most situations, there are a 
few that are not supported by this system.

Example is language Traditional Chinese (zh_TW) + country Hong Kong (HK).

Selecting that manually will result in language=zh_TW:zh; locale=zh_HK.UTF-8 
and country=HK.

Preseeding 'locale=zh_HK' will result in language=zh_CN (wrong) and a prompt 
for the country (with default not equal to HK).
Preseeding 'locale=zh_TW debian-installer/country=HK' does not improve 
things (the country basically gets ignored).

For such cases, it should be possible to preseed locale, language and 
country separately.


signature.asc
Description: This is a digitally signed message part.
---End Message---
---BeginMessage---
Source: localechooser
Source-Version: 2.17

We believe that the bug you reported is fixed in the latest version of
localechooser, which is due to be installed in the Debian FTP archive:

localechooser_2.17.dsc
  to main/l/localechooser/localechooser_2.17.dsc
localechooser_2.17.tar.gz
  to main/l/localechooser/localechooser_2.17.tar.gz
localechooser_2.17_amd64.udeb
  to main/l/localechooser/localechooser_2.17_amd64.udeb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 469...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Frans Pop f...@debian.org (supplier of updated localechooser package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 16 Nov 2009 13:58:18 +0100
Source: localechooser
Binary: localechooser
Architecture: source amd64
Version: 2.17
Distribution: unstable
Urgency: low
Maintainer: Debian Install System Team debian-boot@lists.debian.org
Changed-By: Frans Pop f...@debian.org
Description: 
 localechooser - choose language/country/locale (udeb)
Closes: 469680 552560 553389
Changes: 
 localechooser (2.17) unstable; urgency=low
 .
   * Move selection of additional locales before selection of a default locale
 so that any additional locale can be set as default. If no additional
 locales are selected, the dialog to select a default can now be skipped.
 Closes: #552560.
   * Rewrite of the templates for all primary dialogs to fix style issues and
 improve usability. Add a help dialog for both locale dialogs explaining
 what a locale is.
   * Prevent overriding a language explicitly selected by the user. Makes it
 possible to select pt (pt_PT) as language in combination with BR as 
country.
   * Allow separate preseeding of language and country. Closes: #469680.
 The old method of specifying only locale remains supported.
   * Preserve preseeded locale if language/country were also preseeded.
 Closes: #553389.
   * Various code cleanups and improvements.
 .
   [ Updated translations ]
   * Asturian (ast.po) by Softastur
   * French (fr.po) by Christian Perrier
   * Dutch (nl.po) by Frans Pop
   * Portuguese (pt.po) by Miguel Figueiredo
   * Swedish (sv.po) by Daniel Nylander
Checksums-Sha1: 
 e7dc37cdd0ca4b66647f49399325b04f712c77e3 993 localechooser_2.17.dsc
 329592557c52771e928b440e412ddfc230b7b401 151571 localechooser_2.17.tar.gz
 3baa32f085887371cee59fe90a9bab195ede3048 185070 localechooser_2.17_amd64.udeb
Checksums-Sha256: 
 c7dc8dbcf9afa80d27ad4339ed9ab1663fe2f1152acf7e306cee6fcffe91f36f 993 
localechooser_2.17.dsc
 9a91e0246440021f8399461a5bdfe556562238df60bd657e279bad2eb4692a07 151571 
localechooser_2.17.tar.gz
 940be32b44eb415ea34a0a85f3719a06023b0e2990df3706842d9bc6d6d6b16a 185070 
localechooser_2.17_amd64.udeb
Files: 
 ec574f2030bc2baa4a2ce31add451679 993 debian-installer optional 
localechooser_2.17.dsc
 18b4f8f05767dfa94fb40dd30eb85df2 151571 

Bug#543256: marked as done (Make installing recommends optional)

2009-11-16 Thread Debian Bug Tracking System
Your message dated Mon, 16 Nov 2009 13:17:08 +
with message-id e1na1s8-0005is...@ries.debian.org
and subject line Bug#543256: fixed in base-installer 1.103
has caused the Debian Bug report #543256,
regarding Make installing recommends optional
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
543256: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=543256
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: debian-installer
Version: 20090123lenny1
Severity: wishlist

Heya,

Please make installation of recommended packages in d-i optional, at
least by adding a question in expert mode. This is one of the features
quite a lot admins turn off right after installations (found out by an
ad-hoc survey here at FrOSCon).

Marc


---End Message---
---BeginMessage---
Source: base-installer
Source-Version: 1.103

We believe that the bug you reported is fixed in the latest version of
base-installer, which is due to be installed in the Debian FTP archive:

base-installer_1.103.dsc
  to main/b/base-installer/base-installer_1.103.dsc
base-installer_1.103.tar.gz
  to main/b/base-installer/base-installer_1.103.tar.gz
base-installer_1.103_all.udeb
  to main/b/base-installer/base-installer_1.103_all.udeb
bootstrap-base_1.103_amd64.udeb
  to main/b/base-installer/bootstrap-base_1.103_amd64.udeb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 543...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Frans Pop f...@debian.org (supplier of updated base-installer package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 16 Nov 2009 14:05:24 +0100
Source: base-installer
Binary: base-installer bootstrap-base
Architecture: source all amd64
Version: 1.103
Distribution: unstable
Urgency: low
Maintainer: Debian Install System Team debian-boot@lists.debian.org
Changed-By: Frans Pop f...@debian.org
Description: 
 base-installer - base system installation framework (udeb)
 bootstrap-base - Install the base system (udeb)
Closes: 543256
Changes: 
 base-installer (1.103) unstable; urgency=low
 .
   [ Aurelien Jarno ]
   * Add scripts to select GNU/kFreeBSD kernels.
   * Add kfreebsd-amd64 and kfreebsd-i386 to the testsuite.
 .
   [ Frans Pop ]
   * Allow to configure APT in the target system to not install Recommends by
 default using the base-installer/install-recommends template. The option
 is only intended for experienced users and is therefore not offered in a
 dialog. It can be either preseeded or set at the boot prompt.
 Together with changes in other components, this also makes what's set
 using this option the global default for all package installs during the
 installation process (with the exception of debootstrap).
 Closes: #543256.
 .
   [ Christian Perrier ]
   * Replace one occurrence of bootloader in debconf templates
 .
   [ Frans Pop ]
   * Remove no longer needed Lintian override for missing Standards-
 Version field.
 .
   [ Updated translations ]
   * Asturian (ast.po) by Marcos Antonio Alvarez Costales
   * Czech (cs.po) by Miroslav Kure
   * Danish (da.po) by Ask Hjorth Larsen
   * German (de.po) by Holger Wansing
   * Greek, Modern (1453-) (el.po) by Emmanuel Galatoulas
   * Esperanto (eo.po) by Felipe Castro
   * Estonian (et.po) by Mattias Põldaru
   * Basque (eu.po) by Piarres Beobide
   * French (fr.po) by Christian Perrier
   * Italian (it.po) by Milo Casagrande
   * Korean (ko.po) by Changwoo Ryu
   * Lithuanian (lt.po) by Kęstutis Biliūnas
   * Polish (pl.po) by Bartosz Fenski
   * Portuguese (pt.po) by Miguel Figueiredo
   * Russian (ru.po) by Yuri Kozlov
   * Swedish (sv.po) by Daniel Nylander
   * Thai (th.po) by Theppitak Karoonboonyanan
   * Turkish (tr.po) by Mert Dirik
   * Vietnamese (vi.po) by Clytie Siddall
   * Simplified Chinese (zh_CN.po) by Deng Xiyue
Checksums-Sha1: 
 04ec2517c9cac629a025dfda041ce08188376b1a 1090 base-installer_1.103.dsc
 103c79461767fd275f588a919b2888ceab3fdadf 268391 base-installer_1.103.tar.gz
 cff4062d6ae8f794c98a798cc0340bd79b85f02c 42084 base-installer_1.103_all.udeb
 3069bde91a4eb75d4165653f58f532ca2fb67a97 165842 bootstrap-base_1.103_amd64.udeb
Checksums-Sha256: 
 

Bug#552560: marked as done (Should off all possible locales when language_country does not fit an existing locale)

2009-11-16 Thread Debian Bug Tracking System
Your message dated Mon, 16 Nov 2009 13:17:19 +
with message-id e1na1sj-0005l2...@ries.debian.org
and subject line Bug#552560: fixed in localechooser 2.17
has caused the Debian Bug report #552560,
regarding Should off all possible locales when language_country does not fit an 
existing locale
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
552560: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=552560
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: debian-installer
Version: 20091026-1
Severity: wishlist
Usertags: debianbook

I chose English/Switzerland in the language  country selection
dialogs, and d-i then offered only the en_US locales. Arguably,
there should be en_CH, given the international orientation of
Switzerland, but while that does not exist, en_GB would be a better
match for Switzerland.

-- System Information:
Debian Release: squeeze/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.31-rc6-amd64 (SMP w/1 CPU core)
Locale: LANG=en_GB, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash


-- 
 .''`.   martin f. krafft madd...@d.o  Related projects:
: :'  :  proud Debian developer   http://debiansystem.info
`. `'`   http://people.debian.org/~madduckhttp://vcs-pkg.org
  `-  Debian - when you have better things to do than fixing systems


digital_signature_gpg.asc
Description: Digital signature (see http://martin-krafft.net/gpg/)
---End Message---
---BeginMessage---
Source: localechooser
Source-Version: 2.17

We believe that the bug you reported is fixed in the latest version of
localechooser, which is due to be installed in the Debian FTP archive:

localechooser_2.17.dsc
  to main/l/localechooser/localechooser_2.17.dsc
localechooser_2.17.tar.gz
  to main/l/localechooser/localechooser_2.17.tar.gz
localechooser_2.17_amd64.udeb
  to main/l/localechooser/localechooser_2.17_amd64.udeb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 552...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Frans Pop f...@debian.org (supplier of updated localechooser package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 16 Nov 2009 13:58:18 +0100
Source: localechooser
Binary: localechooser
Architecture: source amd64
Version: 2.17
Distribution: unstable
Urgency: low
Maintainer: Debian Install System Team debian-boot@lists.debian.org
Changed-By: Frans Pop f...@debian.org
Description: 
 localechooser - choose language/country/locale (udeb)
Closes: 469680 552560 553389
Changes: 
 localechooser (2.17) unstable; urgency=low
 .
   * Move selection of additional locales before selection of a default locale
 so that any additional locale can be set as default. If no additional
 locales are selected, the dialog to select a default can now be skipped.
 Closes: #552560.
   * Rewrite of the templates for all primary dialogs to fix style issues and
 improve usability. Add a help dialog for both locale dialogs explaining
 what a locale is.
   * Prevent overriding a language explicitly selected by the user. Makes it
 possible to select pt (pt_PT) as language in combination with BR as 
country.
   * Allow separate preseeding of language and country. Closes: #469680.
 The old method of specifying only locale remains supported.
   * Preserve preseeded locale if language/country were also preseeded.
 Closes: #553389.
   * Various code cleanups and improvements.
 .
   [ Updated translations ]
   * Asturian (ast.po) by Softastur
   * French (fr.po) by Christian Perrier
   * Dutch (nl.po) by Frans Pop
   * Portuguese (pt.po) by Miguel Figueiredo
   * Swedish (sv.po) by Daniel Nylander
Checksums-Sha1: 
 e7dc37cdd0ca4b66647f49399325b04f712c77e3 993 localechooser_2.17.dsc
 329592557c52771e928b440e412ddfc230b7b401 151571 localechooser_2.17.tar.gz
 3baa32f085887371cee59fe90a9bab195ede3048 185070 localechooser_2.17_amd64.udeb
Checksums-Sha256: 
 c7dc8dbcf9afa80d27ad4339ed9ab1663fe2f1152acf7e306cee6fcffe91f36f 993 
localechooser_2.17.dsc
 9a91e0246440021f8399461a5bdfe556562238df60bd657e279bad2eb4692a07 151571 

Bug#473190: marked as done (Wish: ability to select any locale as default one)

2009-11-16 Thread Debian Bug Tracking System
Your message dated Mon, 16 Nov 2009 13:17:19 +
with message-id e1na1sj-0005l2...@ries.debian.org
and subject line Bug#552560: fixed in localechooser 2.17
has caused the Debian Bug report #552560,
regarding Wish: ability to select any locale as default one
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
552560: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=552560
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: localechooser
Version: 1.46
Severity: wishlist

Hi,

I have one wish to the localechooser.
My Default language is English,
my country is Russian,
and localechooser propose me only en_US locale to set primarily.
But I really dislike it! I like en_CA. It's much closer to Russia IMO.
(e.g. date format)

I know, I can change this later, after installation (and by adding
additional locales), but why? ;-))
And what should I do in case I don't need en_US locale at all?

I suppose other option there as in language-country option. I can
select country where English isn't official lang, by choosing other
and then my country from full list.

Thanks,
Stas


---End Message---
---BeginMessage---
Source: localechooser
Source-Version: 2.17

We believe that the bug you reported is fixed in the latest version of
localechooser, which is due to be installed in the Debian FTP archive:

localechooser_2.17.dsc
  to main/l/localechooser/localechooser_2.17.dsc
localechooser_2.17.tar.gz
  to main/l/localechooser/localechooser_2.17.tar.gz
localechooser_2.17_amd64.udeb
  to main/l/localechooser/localechooser_2.17_amd64.udeb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 552...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Frans Pop f...@debian.org (supplier of updated localechooser package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 16 Nov 2009 13:58:18 +0100
Source: localechooser
Binary: localechooser
Architecture: source amd64
Version: 2.17
Distribution: unstable
Urgency: low
Maintainer: Debian Install System Team debian-boot@lists.debian.org
Changed-By: Frans Pop f...@debian.org
Description: 
 localechooser - choose language/country/locale (udeb)
Closes: 469680 552560 553389
Changes: 
 localechooser (2.17) unstable; urgency=low
 .
   * Move selection of additional locales before selection of a default locale
 so that any additional locale can be set as default. If no additional
 locales are selected, the dialog to select a default can now be skipped.
 Closes: #552560.
   * Rewrite of the templates for all primary dialogs to fix style issues and
 improve usability. Add a help dialog for both locale dialogs explaining
 what a locale is.
   * Prevent overriding a language explicitly selected by the user. Makes it
 possible to select pt (pt_PT) as language in combination with BR as 
country.
   * Allow separate preseeding of language and country. Closes: #469680.
 The old method of specifying only locale remains supported.
   * Preserve preseeded locale if language/country were also preseeded.
 Closes: #553389.
   * Various code cleanups and improvements.
 .
   [ Updated translations ]
   * Asturian (ast.po) by Softastur
   * French (fr.po) by Christian Perrier
   * Dutch (nl.po) by Frans Pop
   * Portuguese (pt.po) by Miguel Figueiredo
   * Swedish (sv.po) by Daniel Nylander
Checksums-Sha1: 
 e7dc37cdd0ca4b66647f49399325b04f712c77e3 993 localechooser_2.17.dsc
 329592557c52771e928b440e412ddfc230b7b401 151571 localechooser_2.17.tar.gz
 3baa32f085887371cee59fe90a9bab195ede3048 185070 localechooser_2.17_amd64.udeb
Checksums-Sha256: 
 c7dc8dbcf9afa80d27ad4339ed9ab1663fe2f1152acf7e306cee6fcffe91f36f 993 
localechooser_2.17.dsc
 9a91e0246440021f8399461a5bdfe556562238df60bd657e279bad2eb4692a07 151571 
localechooser_2.17.tar.gz
 940be32b44eb415ea34a0a85f3719a06023b0e2990df3706842d9bc6d6d6b16a 185070 
localechooser_2.17_amd64.udeb
Files: 
 ec574f2030bc2baa4a2ce31add451679 993 debian-installer optional 
localechooser_2.17.dsc
 18b4f8f05767dfa94fb40dd30eb85df2 151571 debian-installer optional 
localechooser_2.17.tar.gz
 950b01ce3cb0bedd749680ef7e4c4470 185070 debian-installer optional 
localechooser_2.17_amd64.udeb
Package-Type: udeb


Re: Not sure about recent change in tzsetup

2009-11-16 Thread Frans Pop
On Sunday 15 November 2009, Frans Pop wrote:
 I've implemented this at the cost of (only?) 58 lines of code (including
 blank lines) and 1 template [1] in localechooser.

Although adding this template plus its translations will be a similar size 
increase as Colin's new template for tzdata, the major difference is that 
unused translations for the localechooser template will be dropped after 
anna, while the tzdata template remains huge. And in lowmem mode all 
translations for the localechooser template can be dropped.


-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#458663: gz/bz2/xz for debootstrap data.tar

2009-11-16 Thread Clint Adams
This anticipates the eventuality of data.tar.xz.

--- functions.orig  2009-11-16 08:41:11.094921291 -0500
+++ functions   2009-11-16 08:48:13.883895352 -0500
@@ -719,13 +719,19 @@
 
 extract () { (
cd $TARGET
-   local p=0
+   local p=0 tarball
for pkg in $(debfor $@); do
p=$(($p + 1))
progress $p $# EXTRACTPKGS Extracting packages
packagename=$(echo $pkg | sed 's,^.*/,,;s,_.*$,,')
info EXTRACTING Extracting %s... $packagename
-   ar -p ./$pkg data.tar.gz | zcat | tar -xf -
+   tarball=$(ar -t ./$pkg | grep ^data.tar.[bgx]z)
+   case $tarball in
+   (data.tar.gz) ar -p ./$pkg data.tar.gz | zcat | tar 
-xf - ;;
+   (data.tar.bz2) ar -p ./$pkg data.tar.bz2 | bzcat | 
tar -xf - ;;
+   (data.tar.xz) ar -p ./$pkg data.tar.xz | xzcat | tar 
-xf - ;;
+   (*) error 1 UNKNOWNDATACOMP Unknown compression type 
for %s in %s $tarball $pkg ;;
+   esac
done
 ); }
 



-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



udeb: illegal instructions with AMD-K6-2

2009-11-16 Thread Mats Erik Andersson
Hello,

I have encountered an unexpected problem, of which you ought
to take notice. In tracking down another problem with the
console charsets, I tried to install

  debian-503-i386-CD-1
  debian-40r8-i386-CD-1 (also older images).

on a machine using

  AMD-K6-2 at 450 MHz, VIA chipset.

It has never succeded, in spite of repeated efforts in expert mode.
Already at language selection the first illegal instruction errors
appear. Some times tzdata-udeb produces statements on illegal
instructions, but the install comes to a halt every time when
debootstrap malfunctions. A pair of times I managed to get a glimps
of further illegal instruction before that final stop.

In contrast, the image

  debian-31r8-i386-CD-1

can indeed be install without problems for AMD-K6-2. I tried this
in order to diagnose the problem better.

However, when I replace the AMD processor with

  Pentium MMX at 233 MHz, (changing clock and voltage)

then installation of both images proceed without any problems at all!


It is my hope that this message will make you cross check the
udeb i386-packages for processor dependencies, at least for Squeeze.

Please, use a CC inclusion in case you want to reach me.


With the best of intentions,

   Mats Erik Andersson


-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Re: udeb: illegal instructions with AMD-K6-2

2009-11-16 Thread Frans Pop
On Monday 16 November 2009, Mats Erik Andersson wrote:
   AMD-K6-2 at 450 MHz, VIA chipset.

 It has never succeded, in spite of repeated efforts in expert mode.

The installer uses the most generic x86 kernel available in Debian, which 
is suitable even for Intel 486 processors. So if your system fails during 
installation with illegal instructions, that indicates a kernel problem, 
not an installer problem.

Please file a bug report against the linux-2.6 source package so the kernel 
maintainers can look into and properly track this problem.

You should include the contents of /proc/cpuinfo in the report.

I have no idea if they can/want to solve this, or if they'll decide to 
leave the processor as unsupported for Debian.

Cheers,
FJP


-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Re: Not sure about recent change in tzsetup

2009-11-16 Thread Ferenc Wagner
Frans Pop elen...@planet.nl writes:

 However, it would then be even better to just drop the
 tzsetup/selected question and just ask time/zone of everybody, as I
 did in my UTC patch. Users in countries with one timezone would then
 simply get e.g:
   Europe/Amsterdam
   other

I'm not particularly well versed (understand: I don't know a thing)
about this field, but I have some opinion and questions, and you asked
for more discussion lately, so here it goes...

First of all, I find this discussion very interesting.  I empirically
settled to preseed my installations with debian-installer/locale=en_HU
and console-keymaps-at/keymap=us (I live and work in Hungary, but prefer
the UTF-8 English interface), because that gives me correct values for
time zone, mirror, locale and whatnot.  However, this isn't particularly
intuitive nor flexible enough in general.

It would be useful to make a list of things which must be set up by
the installer, and *then* conceive a set of questions and priorities,
from which these things could be derived.  (These relations could then
be mentioned -- at least to some extent -- in the templates, too.)  Once
the interested parties agree on these (perhaps not yet implemented)
relations, we can discuss the wording.

Is the installation language (together with its country variant) the
default locale (with which encoding?) of the installed system?  Do we
support no (C) locale?

As we can't rely on the administrator to dpkg-reconfigure locales after
installation to get other locales supported, supplementary locales have
to be asked, but with a lowish priority (like it's done now, I think).
The encoding part of the locale could similarly almost always stay the
default UTF-8.

I like the above time zone question, but I'd prefer just going with the
single choice if applicable (at least on high priority).

Same for the mirror selection (not sure about countries without a single
dedicated mirror).

I wonder what else is determined or defaulted by locale or time zone or
similar things, which should be discussed toghether with this bunch.
-- 
Regards,
Feri.


-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#511679: installation-guide-i386: Provide information on how to restore USB stick to its previous state

2009-11-16 Thread Otavio Salvador
Hello,

On Sun, Nov 15, 2009 at 7:01 AM, M.-A. DARCHE ma.dar...@cynode.org wrote:
 parted mklabel your usbstick msdos


 $ LC_ALL=C sudo parted mklabel /dev/sdb msdos
 Error: Could not stat device mklabel - No such file or directory.
 Retry/Cancel?

Sorry, my fault.

parted /dev/sdb mklabel msdos

You can use:

parted /dev/sdb mkpart

To create a partition on it. After that you'll need to format it later.

-- 
Otavio Salvador  O.S. Systems
E-mail: ota...@ossystems.com.br  http://www.ossystems.com.br
Mobile: +55 53 9981-7854 http://projetos.ossystems.com.br



-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Processed: limit source to debootstrap, tagging 458663

2009-11-16 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 #debootstrap (1.0.21) UNRELEASED; urgency=low
 #
 #  * Apply patch from Clint Adams sch...@debian.org to add support for
 #gz/bz2/xz data.tar (closes: #458663).
 #
 limit source debootstrap
Limiting to bugs with field 'source' containing at least one of 'debootstrap'
Limit currently set to 'source':'debootstrap'

 tags 458663 + pending
Bug #458663 [debootstrap] Missing support for data.tar.bz2-based debs
Added tag(s) pending.

End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Re: Not sure about recent change in tzsetup

2009-11-16 Thread Frans Pop
(No need to CC me on list mail.)

On Monday 16 November 2009, Ferenc Wagner wrote:
 It would be useful to make a list of things which must be set up by
 the installer, and *then* conceive a set of questions and priorities,
 from which these things could be derived.

Most people working on the installer already know that list and the various 
interrelationships.

 (These relations could then be mentioned -- at least to some extent -- in
 the templates, too.) 

That is one of the changes I recently committed in localechooser. In 
country selection dialogs it now says:
   The country selected here will be used for example to select a default
   location and time zone Normally this should be the country where you
   live.

 Is the installation language (together with its country variant) the
 default locale (with which encoding?) of the installed system?

No, it's more complex than that.

 Do we support no (C) locale?

Yes, we do.

 As we can't rely on the administrator to dpkg-reconfigure locales after
 installation to get other locales supported, supplementary locales have
 to be asked, but with a lowish priority (like it's done now, I think).
 The encoding part of the locale could similarly almost always stay the
 default UTF-8.

That is both the case.

 I like the above time zone question, but I'd prefer just going with the
 single choice if applicable (at least on high priority).

My current proposal is keep the time zone question simple as users should 
already have selected the country where they live and thus automatically 
get the correct time zone.

Why don't you give the test image I posted [1] a try and tell us what you 
think. It should now perfectly support your use case (although the text 
quoted above may need some final adjustment).

Cheers,
FJP

[1] http://people.debian.org/~fjp/tmp/d-i/choose-mirror/


-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Re: Avoiding display of console-setup dialogs during base-installation

2009-11-16 Thread Frans Pop
On Sunday 15 November 2009, Frans Pop wrote:
 I've just committed the following patch for kbd-chooser (which is
 currently responsible for installing console-setup). The patch sets the
 seen flag for the keyboard variant debconf question to avoid its display
 during base-installer.

Question.

How is console-setup currently supposed to determine the correct settings 
when it is installed (and thus configured) in /target?

Otavio committed the change [1] that moved the installation of 
console-setup from
- *finish-install.d* in localechooser
to
- *post-base-installer.d* in kbd-chooser

The mistake here may be that it was assumed that the D-I settings would be 
available in /target, but that is not the case as those settings only get 
copied to the target environment during the start of pkgsel.

So the result is that basically console-setup always gets installed with 
its default settings...

No wonder users are complaining that they don't get the correct keymap set.
Pity that despite all the reports from users now nobody ever took the 
trouble to diagnose this properly (or to test the change before 
committing/uploading). It's pretty clear when you actually look into it.

The obvious solution would seem to be to move it back to finish-install.d, 
but there's a problem. In hw-detect we apt-install acpi-support-base, so 
that gets installed during base-installer. And that package pulls in kbd 
which, if console-setup is not already installed, pulls in console-common 
and console-data. Not sure yet how to solve this. Maybe we need a late 
option to apt-install.

Cheers,
FJP

[1] Yes, I did suggest the move to kbd-chooser myself, but not the move 
from finish-install to base-installer. That really should have been 
thought through more carefully.


-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#458663: gz/bz2/xz for debootstrap data.tar

2009-11-16 Thread Otavio Salvador
Hello Clint,

On Mon, Nov 16, 2009 at 12:18 PM, Clint Adams sch...@debian.org wrote:
 This anticipates the eventuality of data.tar.xz.

I've commited your patch in SVN; even though it is not yet clear that
.bz2 data.tar are going to be accepted for base packages I see now
reason to now support it in debootstrap leaving this decision to FTP
masters.

Personally I think the size difference don't justify the complexity
that could involve to have a xz binary available in a  foreign system
and like so I'm against it for base packages.

Cheers,

-- 
Otavio Salvador  O.S. Systems
E-mail: ota...@ossystems.com.br  http://www.ossystems.com.br
Mobile: +55 53 9981-7854 http://projetos.ossystems.com.br



-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#458663: gz/bz2/xz for debootstrap data.tar

2009-11-16 Thread Frans Pop
On Monday 16 November 2009, Otavio Salvador wrote:
 On Mon, Nov 16, 2009 at 12:18 PM, Clint Adams sch...@debian.org wrote:
  This anticipates the eventuality of data.tar.xz.

 I've commited your patch in SVN; even though it is not yet clear that
 .bz2 data.tar are going to be accepted for base packages I see now
 reason to now support it in debootstrap leaving this decision to FTP
 masters.

Have you thought this through?

Have you considered Joey's arguments that as a distribution we should not 
*want* to support multiple compression methods in debootstrap because the 
decompressors may not be available?

How will debootstrap react when the decompressors are not available?

If you do add this to SVN, shouldn't you also add a dependency on the 
decompressors?

Please don't commit patches blindly.

Cheers,
FJP



-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Re: Avoiding display of console-setup dialogs during base-installation

2009-11-16 Thread Frans Pop
On Sunday 15 November 2009, Frans Pop wrote:
 I've just committed the following patch for kbd-chooser (which is
 currently responsible for installing console-setup). The patch sets the
 seen flag for the keyboard variant debconf question to avoid its display
 during base-installer.

 The line that sets the value to an empty string is needed because you
 cannot set the seen flag for a question that does not yet exist. An
 empty value does not interfere with setting the value by c-s itself (and
 there is no risk that the question already exists through preseeding,
 otherwise the existence of the question would need to be tested first).

OK, this does not work after all. At least for Lenny installs the empty 
value *does* interfere with the configuration and results in Afghanistan 
(the first option) being selected.

The test yesterday with Squeeze looked OK, so this may be specific to 
Lenny. I'll investigate further and report back.


-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Re: [RFC] lenny-support udeb

2009-11-16 Thread Martin Michlmayr
* Frans Pop elen...@planet.nl [2009-11-15 21:09]:
 Please let me know if you have comments on the above or if you're
 aware of other issues that should be addressed.

I haven't had the time yet to test this but I just wanted to say that
I'm really interested in this.  Thanks a lot for working on it!
-- 
Martin Michlmayr
http://www.cyrius.com/


-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Re: Avoiding display of console-setup dialogs during base-installation

2009-11-16 Thread Frans Pop
On Monday 16 November 2009, Frans Pop wrote:
 The mistake here may be that it was assumed that the D-I settings would
 be available in /target, but that is not the case as those settings only
 get copied to the target environment during the start of pkgsel.

 So the result is that basically console-setup always gets installed with
 its default settings...

 No wonder users are complaining that they don't get the correct keymap
 set. Pity that despite all the reports from users now nobody ever took
 the trouble to diagnose this properly (or to test the change before
 committing/uploading). It's pretty clear when you actually look into it.

After some thought and testing the simplest solution turns out to be to lat 
the kbd-chooser post-base-installer script copy the needed templates to 
the target environment before calling 'apt-install console-setup'.

I'll commit the necessary changes and upload kbd-chooser.


-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Re: Avoiding display of console-setup dialogs during base-installation

2009-11-16 Thread Frans Pop
On Monday 16 November 2009, Frans Pop wrote:
 On Sunday 15 November 2009, Frans Pop wrote:
  I've just committed the following patch for kbd-chooser (which is
  currently responsible for installing console-setup). The patch sets
  the seen flag for the keyboard variant debconf question to avoid its
  display during base-installer.
 
  The line that sets the value to an empty string is needed because you
  cannot set the seen flag for a question that does not yet exist. An
  empty value does not interfere with setting the value by c-s itself
  (and there is no risk that the question already exists through
  preseeding, otherwise the existence of the question would need to be
  tested first).

 OK, this does not work after all. At least for Lenny installs the empty
 value *does* interfere with the configuration and results in Afghanistan
 (the first option) being selected.

Pfew, it was just a Lenny issue after all. For Lenny we need to set:
   console-setup console-setup/layoutcode string
   console-setup console-setup/variantcode string

I.e, *code templates instead of layout and variant.
I've modified lenny-support to do this.

My original patch was not 100% clean. All that's needed for Squeeze is:
   keyboard-configuration keyboard-configuration/variant select

Changes:
- removed the ; simply omitting a value is the correct way;
- no need to separately set the seen flag as setting the value will
  do that by default.

It works for both Lenny and Squeeze now. Tested for both us and fr-latin9.

Cheers,
FJP


-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Log from the November 16th 2009 D-I team meeting

2009-11-16 Thread Christian Perrier
The (not so) bi-monthly D-I team meeting happened today at 21:00UTC.
  
  
As usual, the logs are available from
http://wiki.debian.org/DebianInstaller/Meetings

The attendance was low (Otavio, Marc Hymers, blindvt...mostly
lurking, and me) but we could put in light the current blockers for the
release: mips kernel udebs that need NEW processing, plus cdrom-detect
and di-utils builds and transition to testing.

One will also note that it was ack'ed that Frans Pop work on various
items more or less related to internationalization were agreed to be
incorporated in the release (if that's possible without delaying them)
and we encourage Frans to bild and upload them (which might include
reverting Colin's changes in tzsetup).

On a personal note, I'd like to particularly thank Colin for
triggering the discussion that happened about time zones setup
strategies even though we finally rule out the changes as they were
done. It's quite possible that more discussion happens on this issue
and we find even better solutions to all possible situations in the future.




-- 




signature.asc
Description: Digital signature


Bug#548837: marked as done (Console keymap not set when rebooting after install)

2009-11-16 Thread Debian Bug Tracking System
Your message dated Mon, 16 Nov 2009 21:40:10 +
with message-id e1na9iw-0007y2...@ries.debian.org
and subject line Bug#548837: fixed in console-setup 1.47
has caused the Debian Bug report #548837,
regarding Console keymap not set when rebooting after install
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
548837: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=548837
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: installation-reports
Severity: normal



-- Package-specific info:

Boot method: CD
Image version: 
http://cdimage.debian.org/cdimage/weekly-builds/amd64/iso-cd/debian-testing-amd64-CD-1.iso
 - at sources.list the CD is identified as: deb cdrom:[Debian GNU/Linux 
testing _Squeeze_ - Official Snapshot amd64 CD Binary-1 20090921-07:44]/ 
squeeze main .
Date: 26/Sep/2009

Machine: Acer Extensa 5630G-644G32Mn
Partitions:

# df -Tl
FilesystemType   1K-blocks  Used Available Use% Mounted on
/dev/sda5 ext414413312   2597160  11083992  19% /
tmpfstmpfs 2029888 0   2029888   0% /lib/init/rw
udev tmpfs   10240   188 10052   2% /dev
tmpfstmpfs 2029888 0   2029888   0% /dev/shm
/dev/sda7 ext432684968405652  30619000   2% /home

# fdisk -l
Disk /dev/sda: 320.1 GB, 320072933376 bytes
255 heads, 63 sectors/track, 38913 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Disk identifier: 0x23ef46ec

   Device Boot  Start End  Blocks   Id  System
/dev/sda1   112751024   27  Unknown
/dev/sda2   *1275   20096   1511731207  HPFS/NTFS
/dev/sda3   20096   26623524288007  HPFS/NTFS
/dev/sda4   26624   3270248829567+   5  Extended
/dev/sda5   26624   2844614643216   83  Linux
/dev/sda6   28447   28568  979933+  82  Linux swap / Solaris
/dev/sda7   28569   3270233206323+  83  Linux



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 drives:  [O]
Install base system:[O]
Clock/timezone setup:   [O]
User/password setup:[O]
Install tasks:  [O]
Install boot loader:[O]
Overall install:[O]

Comments/Problems:
The install went surprinsingly well. I didn't expect to have so many things
working out-of-the-box and without any effort.
There is currently only one issue with the keyboard: I have two keys over the
arrow keys: an euro sign (€) one and a dollar sign ($) one. I can't use them
either in a tty or under X. When I press them I see the following on
/var/log/Xorg.0.log:
(WW) AT Translated Set 2 keyboard: unable to handle keycode 435
(WW) AT Translated Set 2 keyboard: unable to handle keycode 434

Besides, using console-setup configured for my keyboard layout, it keeps 
using a wrong layout on the ttys. The setupcon command seems to not be doing
anything. Maybe this is related to the console-setup package, I'm not sure.
Also, some multimedia keys do not work out-of-the-box. If you want, I may try
to elaborate on this later, I just haven't tested them exhaustively.

I also posted some information about this laptop on the debian.org wiki:
http://wiki.debian.org/InstallingDebianOn/Acer/Extensa%205630G

Regards,
Pitxyoki

-- 

Please make sure that the hardware-summary log file, and any other
installation logs that you think would be useful are attached to this
report. Please compress large files using gzip.

Once you have filled out this report, mail it to sub...@bugs.debian.org.

==
Installer lsb-release:
==
DISTRIB_ID=Debian
DISTRIB_DESCRIPTION=Debian GNU/Linux installer
DISTRIB_RELEASE=6.0 (squeeze) - installer build 20090921-00:00
X_INSTALLATION_MEDIUM=cdrom

==
Installer hardware-summary:
==
uname -a: Linux C-9 2.6.30-1-amd64 #1 SMP Sat Aug 15 18:09:19 UTC 2009 x86_64 
GNU/Linux
lspci -knn: 00:00.0 Host bridge [0600]: Intel Corporation Mobile 4 Series 
Chipset Memory Controller Hub [8086:2a40] (rev 07)
lspci -knn: Subsystem: Acer Incorporated [ALI] Device [1025:013c]
lspci -knn: 00:01.0 PCI bridge [0604]: Intel Corporation Mobile 4 Series 
Chipset PCI Express Graphics Port [8086:2a41] (rev 07)
lspci -knn: Kernel driver 

Bug#548262: marked as done (console-setup-mini does not own /etc/default/console-setup)

2009-11-16 Thread Debian Bug Tracking System
Your message dated Mon, 16 Nov 2009 21:40:10 +
with message-id e1na9iw-0007xu...@ries.debian.org
and subject line Bug#548262: fixed in console-setup 1.47
has caused the Debian Bug report #548262,
regarding console-setup-mini does not own /etc/default/console-setup
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
548262: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=548262
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: console-setup-mini
Version: 1.45
Severity: important


I replaced console-setup with console-setup-mini.  When I later
purged console-setup, /etc/default/console-setup was deleted,
causing console initialization to fail.  Indeed, dpkg -L shows
/etc/default but not /etc/default/console-setup.  Workaround is
to restore the file.

-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)

Kernel: Linux 2.6.30-1-686 (SMP w/2 CPU cores)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Shell: /bin/sh linked to /bin/bash

Versions of packages console-setup-mini depends on:
ii  debconf [debconf-2.0] 1.5.27 Debian configuration management sy

Versions of packages console-setup-mini recommends:
ii  console-tools  1:0.2.3dbs-66 Linux console and font utilities

Versions of packages console-setup-mini suggests:
ii  lsb-base  3.2-23 Linux Standard Base 3.2 init scrip

-- debconf information:
  console-setup/variant: USA
  console-setup/unsupported_options: true
  console-setup/fontsize-text: 16
  console-setup/compose: No compose key
  debian-installer/console-setup-udeb/title:
  console-setup/other:
  console-setup/ctrl_alt_bksp: true
  console-setup/modelcode: pc104
  console-setup/switch: No temporary switch
  console-setup/unsupported_config_layout: true
  console-setup/use_system_font:
  console-setup/fontsize: 16
  console-setup/unsupported_layout: true
  console-setup/charmap: UTF-8
  console-setup/layoutcode: us
  console-setup/optionscode: terminate:ctrl_alt_bksp
  console-setup/unsupported_config_options: true
  console-setup/layout:
  console-setup/variantcode:
  console-setup/codesetcode: Lat15
  console-setup/altgr: The default for the keyboard layout
* console-setup/model:
  console-setup/fontsize-fb: 16
* console-setup/codeset: # Latin1 and Latin5 - western Europe and Turkic 
languages
  console-setup/toggle: No toggling
  console-setup/fontface: VGA


---End Message---
---BeginMessage---
Source: console-setup
Source-Version: 1.47

We believe that the bug you reported is fixed in the latest version of
console-setup, which is due to be installed in the Debian FTP archive:

bdf2psf_1.47_all.deb
  to main/c/console-setup/bdf2psf_1.47_all.deb
console-setup-amiga-ekmap_1.47_all.udeb
  to main/c/console-setup/console-setup-amiga-ekmap_1.47_all.udeb
console-setup-ataritt-ekmap_1.47_all.udeb
  to main/c/console-setup/console-setup-ataritt-ekmap_1.47_all.udeb
console-setup-fonts-udeb_1.47_all.udeb
  to main/c/console-setup/console-setup-fonts-udeb_1.47_all.udeb
console-setup-macintoshold-ekmap_1.47_all.udeb
  to main/c/console-setup/console-setup-macintoshold-ekmap_1.47_all.udeb
console-setup-mini_1.47_all.deb
  to main/c/console-setup/console-setup-mini_1.47_all.deb
console-setup-pc-ekmap_1.47_all.udeb
  to main/c/console-setup/console-setup-pc-ekmap_1.47_all.udeb
console-setup-sun4-ekmap_1.47_all.udeb
  to main/c/console-setup/console-setup-sun4-ekmap_1.47_all.udeb
console-setup-sun5-ekmap_1.47_all.udeb
  to main/c/console-setup/console-setup-sun5-ekmap_1.47_all.udeb
console-setup-udeb_1.47_all.udeb
  to main/c/console-setup/console-setup-udeb_1.47_all.udeb
console-setup_1.47.dsc
  to main/c/console-setup/console-setup_1.47.dsc
console-setup_1.47.tar.gz
  to main/c/console-setup/console-setup_1.47.tar.gz
console-setup_1.47_all.deb
  to main/c/console-setup/console-setup_1.47_all.deb
keyboard-configuration_1.47_all.deb
  to main/c/console-setup/keyboard-configuration_1.47_all.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 548...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Anton Zinoviev zinov...@debian.org (supplier of updated console-setup package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing 

Bug#536614: marked as done (Provides wrong information about the encoding of the locales)

2009-11-16 Thread Debian Bug Tracking System
Your message dated Mon, 16 Nov 2009 21:40:10 +
with message-id e1na9iw-0007xv...@ries.debian.org
and subject line Bug#536614: fixed in console-setup 1.47
has caused the Debian Bug report #536614,
regarding Provides wrong information about the encoding of the locales
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
536614: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=536614
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: localechooser
Version: 2.12

At the end of the file localechooser from the package localechooser 
there is the following code:

# All locales being UTF-8, unconditionnally set this, for
# console-setup purposes
db_set debian-installer/charmap UTF-8

However, I noticed that in expert mode localechooser permits non-UTF-8 
locales.  Console-setup-udeb will generate wrong configuration for such 
locales.

Localechooser should provide somehow information about the right 
encoding of the locale.

Anton Zinoviev



---End Message---
---BeginMessage---
Source: console-setup
Source-Version: 1.47

We believe that the bug you reported is fixed in the latest version of
console-setup, which is due to be installed in the Debian FTP archive:

bdf2psf_1.47_all.deb
  to main/c/console-setup/bdf2psf_1.47_all.deb
console-setup-amiga-ekmap_1.47_all.udeb
  to main/c/console-setup/console-setup-amiga-ekmap_1.47_all.udeb
console-setup-ataritt-ekmap_1.47_all.udeb
  to main/c/console-setup/console-setup-ataritt-ekmap_1.47_all.udeb
console-setup-fonts-udeb_1.47_all.udeb
  to main/c/console-setup/console-setup-fonts-udeb_1.47_all.udeb
console-setup-macintoshold-ekmap_1.47_all.udeb
  to main/c/console-setup/console-setup-macintoshold-ekmap_1.47_all.udeb
console-setup-mini_1.47_all.deb
  to main/c/console-setup/console-setup-mini_1.47_all.deb
console-setup-pc-ekmap_1.47_all.udeb
  to main/c/console-setup/console-setup-pc-ekmap_1.47_all.udeb
console-setup-sun4-ekmap_1.47_all.udeb
  to main/c/console-setup/console-setup-sun4-ekmap_1.47_all.udeb
console-setup-sun5-ekmap_1.47_all.udeb
  to main/c/console-setup/console-setup-sun5-ekmap_1.47_all.udeb
console-setup-udeb_1.47_all.udeb
  to main/c/console-setup/console-setup-udeb_1.47_all.udeb
console-setup_1.47.dsc
  to main/c/console-setup/console-setup_1.47.dsc
console-setup_1.47.tar.gz
  to main/c/console-setup/console-setup_1.47.tar.gz
console-setup_1.47_all.deb
  to main/c/console-setup/console-setup_1.47_all.deb
keyboard-configuration_1.47_all.deb
  to main/c/console-setup/keyboard-configuration_1.47_all.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 536...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Anton Zinoviev zinov...@debian.org (supplier of updated console-setup package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 13 Nov 2009 18:03:11 +0200
Source: console-setup
Binary: keyboard-configuration console-setup console-setup-mini bdf2psf 
console-setup-udeb console-setup-amiga-ekmap console-setup-ataritt-ekmap 
console-setup-macintoshold-ekmap console-setup-pc-ekmap 
console-setup-sun4-ekmap console-setup-sun5-ekmap console-setup-fonts-udeb
Architecture: source all
Version: 1.47
Distribution: unstable
Urgency: low
Maintainer: Debian Install System Team debian-boot@lists.debian.org
Changed-By: Anton Zinoviev zinov...@debian.org
Description: 
 bdf2psf- font converter to generate console fonts from BDF source fonts
 console-setup - console font and keymap setup program
 console-setup-amiga-ekmap - encoded keyboard layouts for Amiga keyboards (udeb)
 console-setup-ataritt-ekmap - encoded keyboard layouts for Atari TT keyboards 
(udeb)
 console-setup-fonts-udeb - console fonts for Debian Installer (udeb)
 console-setup-macintoshold-ekmap - encoded keyboard layouts for old-style 
Macintosh keyboards (udeb)
 console-setup-mini - console font and keymap setup program - reduced version
 console-setup-pc-ekmap - encoded keyboard layouts for PC keyboards (udeb)
 console-setup-sun4-ekmap - encoded keyboard layouts for Sun4 keyboards (udeb)
 console-setup-sun5-ekmap - encoded keyboard layouts for Sun5 keyboards (udeb)
 console-setup-udeb - Configure the keyboard (udeb)
 keyboard-configuration - system-wide 

Bug#542003: marked as done (settings chosen from console-setup-udeb not preserved on installed system)

2009-11-16 Thread Debian Bug Tracking System
Your message dated Mon, 16 Nov 2009 21:40:10 +
with message-id e1na9iw-0007xz...@ries.debian.org
and subject line Bug#542003: fixed in console-setup 1.47
has caused the Debian Bug report #542003,
regarding settings chosen from console-setup-udeb not preserved on installed 
system
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
542003: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=542003
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: installation-reports
Severity: important

-- Package-specific info:

Boot method: USB flash drive
Image version: 
http://ftp.nl.debian.org/debian/dists/lenny/main/installer-i386/current/images/hd-media/boot.img.gz
 and 
http://cdimage.debian.org/debian-cd/5.0.2/i386/iso-cd/debian-502-i386-netinst.iso

[I think.  The installation was done on July 30, and the images were from about
then.]

Date: July 30, 2009

Machine: Acer Aspire 3690
Partitions:

~# df -Tl
FilesystemType   1K-blocks  Used Available Use% Mounted on
/dev/dm-1 ext3  959512284756626016  32% /
tmpfstmpfs 103285216   1032836   1% /lib/init/rw
udev tmpfs   10240   216 10024   3% /dev
tmpfstmpfs 1032852 0   1032852   0% /dev/shm
/dev/hda3 ext3   93327 66521 21987  76% /boot
/dev/dm-4 ext321146204   2939532  17132496  15% /home
/dev/dm-2 ext3 1919048   1016480805084  56% /usr
/dev/dm-3 ext3 3842104   1013408   2633524  28% /var
none tmpfs 1032852  2064   1030788   1% /tmp
/dev/dm-7 ext350395844   2689952  45145892   6% /media/software

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

Initial boot:   [O ]
Detect network card:[E ]
Configure network:  [ ]
Detect CD:  [E ]
Load installer modules: [E ]
Detect hard drives: [O ]
Partition hard drives:  [E ]
Install base system:[O ]
Clock/timezone setup:   [O ]
User/password setup:[O ]
Install tasks:  [ ]
Install boot loader:[O ]
Overall install:[E ]

Comments/Problems:

1)  The installer allowed me to set a keymap and layout (us / dvorak), but this
was not preserved in the actual install, which reverted to standard us.

2)  The installer consistently failed to find the installer ISO on the first
try (I wound up running it quite a few times, due to various problems),
although it always found it on the second.

3)  AFAICT, the installer kernel doesn't include b43.  Why?  I understand that
we can't ship non-free firmware, but why not include the driver for those of us
who are able and willing to provide  firmware?

4)  I was unable to delete a LUKS encrypted disk that I had created on a
partition.  The installer refused to delete the partition since it was used by
the encrypted disk, but it also apparently offered no way to delete the
encrypted disk.

5)  The showstopper:  I installed the entire system (except for /boot) onto LVM
volumes in a vg on top of a LUKS volume created out of a primary partition.
When I rebooted, the system wouldn't bring up the LUKS volume.  The eventual
fix that worked is to add this line to /boot/grub/menu.lst:

# kopt=cryptopts=target=hda4_crypt,source=/dev/hda4,lvm=lizzie-root 
root=/dev/mapper/lizzie-root ro

This is:

http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=492790

and

http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=522041
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=507721
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=503062

6)  Should installation reports be filed against 'installation-report' or
'installation-reports'?  The README from the installation-report package says
'report', but most reports seem to be filed against 'reports'.


-- 

Please make sure that the hardware-summary log file, and any other
installation logs that you think would be useful are attached to this
report. Please compress large files using gzip.

Once you have filled out this report, mail it to sub...@bugs.debian.org.

==
Installer lsb-release:
==
DISTRIB_ID=Debian
DISTRIB_DESCRIPTION=Debian GNU/Linux installer
DISTRIB_RELEASE=6.0 (squeeze) - installer build 20090729-19:09
X_INSTALLATION_MEDIUM=hd-media

==
Installer hardware-summary:
==
uname -a: Linux (none) 2.6.30-1-486 #1 Sat Jul 18 12:47:00 UTC 2009 i686 unknown
lspci -knn: 00:00.0 Host bridge [0600]: Intel Corporation 

Bug#546740: marked as done (console-setup: Should permit personnal keymaps)

2009-11-16 Thread Debian Bug Tracking System
Your message dated Mon, 16 Nov 2009 21:40:10 +
with message-id e1na9iw-0007xh...@ries.debian.org
and subject line Bug#546740: fixed in console-setup 1.47
has caused the Debian Bug report #546740,
regarding console-setup: Should permit personnal keymaps
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
546740: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=546740
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: console-setup
Version: 1.44
Severity: normal

Hello,

People have been used to use their own keymap, but now that Xorg
requires console-setup they are forced to use an xkb keymap, resulting
to regressions like the one I reported about incr/decr console. Could
there perhaps be an optional way to specify a path to a kmap file
instead in /etc/default/console-setup?

Samuel

-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable'), (500, 'stable'), (1, 
'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.31 (SMP w/2 CPU cores)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages console-setup depends on:
ii  console-terminus  4.28-1 Fixed-width fonts for fast reading
ii  debconf [debconf-2.0] 1.5.27 Debian configuration management sy
ii  xkb-data  1.6-1  X Keyboard Extension (XKB) configu

Versions of packages console-setup recommends:
ii  kbd   1.15-4 Linux console font and keytable ut

Versions of packages console-setup suggests:
ii  locales   2.9-25 GNU C Library: National Language (
ii  locales-all [locales] 2.9-25 GNU C Library: Precompiled locale 
ii  lsb-base  3.2-23 Linux Standard Base 3.2 init scrip

-- debconf information:
* console-setup/variant: France
  console-setup/unsupported_options: true
  console-setup/ctrl_alt_bksp: false
  console-setup/modelcode: geniuskb19e
  console-setup/use_system_font:
  console-setup/fontsize: 8
* console-setup/unsupported_layout: true
  console-setup/layoutcode: fr,brai
  debian-installer/console-setup/title:
  console-setup/codesetcode: Lat15
  console-setup/altgr: The default for the keyboard layout
* console-setup/ttys: /dev/tty[1-6]
* console-setup/codeset: # Latin1 and Latin5 - western Europe and Turkic 
languages
  console-setup/toggle: Alt+Caps Lock
* console-setup/fontface: VGA
* console-setup/fontsize-text: 8
  console-setup/compose: Right Logo key
  debian-installer/console-setup-udeb/title:
  console-setup/other:
  console-setup/switch: No temporary switch
* console-setup/unsupported_config_layout: true
* console-setup/charmap: UTF-8
* console-setup/optionscode: grp:alt_caps_toggle,compose:rwin,nbsp:level3n
  console-setup/unsupported_config_options: true
* console-setup/layout: France
  console-setup/variantcode: oss,
* console-setup/model: Genius KB-19e NB
  console-setup/fontsize-fb: 8

-- 
Samuel Thibault samuel.thiba...@fnac.net
T csp.tar.gz: ascii text
 -+- #ens-mim - vive les browsers qui prennent des initiatives � la con -+-


---End Message---
---BeginMessage---
Source: console-setup
Source-Version: 1.47

We believe that the bug you reported is fixed in the latest version of
console-setup, which is due to be installed in the Debian FTP archive:

bdf2psf_1.47_all.deb
  to main/c/console-setup/bdf2psf_1.47_all.deb
console-setup-amiga-ekmap_1.47_all.udeb
  to main/c/console-setup/console-setup-amiga-ekmap_1.47_all.udeb
console-setup-ataritt-ekmap_1.47_all.udeb
  to main/c/console-setup/console-setup-ataritt-ekmap_1.47_all.udeb
console-setup-fonts-udeb_1.47_all.udeb
  to main/c/console-setup/console-setup-fonts-udeb_1.47_all.udeb
console-setup-macintoshold-ekmap_1.47_all.udeb
  to main/c/console-setup/console-setup-macintoshold-ekmap_1.47_all.udeb
console-setup-mini_1.47_all.deb
  to main/c/console-setup/console-setup-mini_1.47_all.deb
console-setup-pc-ekmap_1.47_all.udeb
  to main/c/console-setup/console-setup-pc-ekmap_1.47_all.udeb
console-setup-sun4-ekmap_1.47_all.udeb
  to main/c/console-setup/console-setup-sun4-ekmap_1.47_all.udeb
console-setup-sun5-ekmap_1.47_all.udeb
  to main/c/console-setup/console-setup-sun5-ekmap_1.47_all.udeb
console-setup-udeb_1.47_all.udeb
  to main/c/console-setup/console-setup-udeb_1.47_all.udeb
console-setup_1.47.dsc
  to main/c/console-setup/console-setup_1.47.dsc
console-setup_1.47.tar.gz
  to main/c/console-setup/console-setup_1.47.tar.gz
console-setup_1.47_all.deb
  to 

Bug#536600: marked as done (Doesn't reconfigure CODESET, CHARMAP and FONT when the language is changed)

2009-11-16 Thread Debian Bug Tracking System
Your message dated Mon, 16 Nov 2009 21:40:10 +
with message-id e1na9iw-0007xm...@ries.debian.org
and subject line Bug#536600: fixed in console-setup 1.47
has caused the Debian Bug report #536600,
regarding Doesn't reconfigure CODESET, CHARMAP and FONT when the language is 
changed
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
536600: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=536600
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: console-setup-udeb
Version: 1.44

Consider these three scenarios:

A1. The user selects language
A2. The user configures the keyboard
A3. The user changes the language but doesn't reconfigure the keyboard.

Outcome: CHARMAP and CODESET in console-setup do not correspond to the 
chosen language.  This bug will belong not only to console-setup but 
also to debian-installer when/if console-setup-udeb becomes part of d-i.

B1. The user selects language
B2. The user configures the keyboard
B3. The user changes the language
B4. The user reconfigures the keyboard with high Debconf priority

Here CHARMAP and CODESET will not be changed by version 1.44.

Suppose some future version of console-setup-udeb is fixed to update the 
CHARMAP and CODESET after the language is changed and consider the 
following scenario:

C0. The user starts the installation in expert mode.
C1. The user selects language
C2. The user configures the keyboard and selects manualy CODESET=Uni1
(because the user requires support for many languages).
C3. The user changes the language
C4. The user changes Debconf priority.
C5. The user reconfigures the keyboard.  The user's choice for CODESET
will be overwritten with CODESET=Lat15 (because this is the default 
for the language of the user).

Anton Zinoviev




---End Message---
---BeginMessage---
Source: console-setup
Source-Version: 1.47

We believe that the bug you reported is fixed in the latest version of
console-setup, which is due to be installed in the Debian FTP archive:

bdf2psf_1.47_all.deb
  to main/c/console-setup/bdf2psf_1.47_all.deb
console-setup-amiga-ekmap_1.47_all.udeb
  to main/c/console-setup/console-setup-amiga-ekmap_1.47_all.udeb
console-setup-ataritt-ekmap_1.47_all.udeb
  to main/c/console-setup/console-setup-ataritt-ekmap_1.47_all.udeb
console-setup-fonts-udeb_1.47_all.udeb
  to main/c/console-setup/console-setup-fonts-udeb_1.47_all.udeb
console-setup-macintoshold-ekmap_1.47_all.udeb
  to main/c/console-setup/console-setup-macintoshold-ekmap_1.47_all.udeb
console-setup-mini_1.47_all.deb
  to main/c/console-setup/console-setup-mini_1.47_all.deb
console-setup-pc-ekmap_1.47_all.udeb
  to main/c/console-setup/console-setup-pc-ekmap_1.47_all.udeb
console-setup-sun4-ekmap_1.47_all.udeb
  to main/c/console-setup/console-setup-sun4-ekmap_1.47_all.udeb
console-setup-sun5-ekmap_1.47_all.udeb
  to main/c/console-setup/console-setup-sun5-ekmap_1.47_all.udeb
console-setup-udeb_1.47_all.udeb
  to main/c/console-setup/console-setup-udeb_1.47_all.udeb
console-setup_1.47.dsc
  to main/c/console-setup/console-setup_1.47.dsc
console-setup_1.47.tar.gz
  to main/c/console-setup/console-setup_1.47.tar.gz
console-setup_1.47_all.deb
  to main/c/console-setup/console-setup_1.47_all.deb
keyboard-configuration_1.47_all.deb
  to main/c/console-setup/keyboard-configuration_1.47_all.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 536...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Anton Zinoviev zinov...@debian.org (supplier of updated console-setup package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 13 Nov 2009 18:03:11 +0200
Source: console-setup
Binary: keyboard-configuration console-setup console-setup-mini bdf2psf 
console-setup-udeb console-setup-amiga-ekmap console-setup-ataritt-ekmap 
console-setup-macintoshold-ekmap console-setup-pc-ekmap 
console-setup-sun4-ekmap console-setup-sun5-ekmap console-setup-fonts-udeb
Architecture: source all
Version: 1.47
Distribution: unstable
Urgency: low
Maintainer: Debian Install System Team debian-boot@lists.debian.org
Changed-By: Anton Zinoviev zinov...@debian.org
Description: 
 bdf2psf- font converter to generate console fonts from BDF source 

Bug#546983: marked as done (console-setup-mini: fails to set the keyboard layout (and falls back to us layout))

2009-11-16 Thread Debian Bug Tracking System
Your message dated Mon, 16 Nov 2009 21:40:10 +
with message-id e1na9iw-0007xl...@ries.debian.org
and subject line Bug#546983: fixed in console-setup 1.47
has caused the Debian Bug report #546983,
regarding console-setup-mini: fails to set the keyboard layout (and falls back 
to us layout)
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
546983: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=546983
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: console-setup-mini
Version: 1.44
Severity: important

Hi!

I upgraded my Debian testing (squeeze) notebook yesterday and various
packages were upgraded (among which several xorg packages).
Due to dependencies, console-setup-mini was pulled in, as confirmed
by /var/log/aptitude :

  [INSTALL, DEPENDENCIES] console-setup-mini

During the configuration step, various debconf questions were asked:
I tried hard to reply reasonably.

Today, I booted up the notebook and logged in on the console
(I do not use any graphical login manager) and noticed that
the keyboard layout was set to US, while my notebook has an
Italian keyboard (buying a notebook with a US keyboard is close
to impossible down here in Italy...).

I thought I messed up with debconf questions, hence I re-ran:

  # dpkg-reconfigure console-setup-mini

The resulting configuration is shown below and translates into the
following conffile:

  $ grep -v '^#\|^$' /etc/default/console-setup 
  VERBOSE_OUTPUT=no
  ACTIVE_CONSOLES=/dev/tty[1-6]
  CHARMAP=UTF-8
  CODESET=Lat15
  FONTFACE=VGA
  FONTSIZE=16
  XKBMODEL=pc105
  XKBLAYOUT=it
  XKBVARIANT=
  XKBOPTIONS=

Despite XKBLAYOUT is clearly set to it, I still get a US keyboard
map on the console (X is fine, instead).
I even tried to upgrade to console-setup-mini/1.45 from unstable
and I even rebooted the notebook, just in case...
Nothing changed: still US layout, no matter what!

I tried to issue the following command (going from memory, since
the last time I needed to *manually* set the keyboard layout was
some 7 or 8 years ago!):

  $ loadkeys it
  Loading /usr/share/keymaps/i386/qwerty/it.kmap.gz
  Keymap 0: Permission denied
  Keymap 1: Permission denied
  Keymap 2: Permission denied
  KDSKBENT: Operation not permitted
  loadkeys: could not deallocate keymap 3

As you can see, it didn't work.

Please help!
I really cannot understand why setting a non-US keyboard layout
has suddenly become *so* hard in Debian testing!

What's wrong with my notebook?



-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (800, 'testing'), (500, 'unstable')
Architecture: i386 (i686)

Kernel: Linux 2.6.30-1-686 (SMP w/1 CPU core)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages console-setup-mini depends on:
ii  debconf [debconf-2.0] 1.5.27 Debian configuration management sy

Versions of packages console-setup-mini recommends:
ii  console-tools  1:0.2.3dbs-66 Linux console and font utilities

Versions of packages console-setup-mini suggests:
ii  lsb-base  3.2-23 Linux Standard Base 3.2 init scrip

-- debconf information:
* console-setup/variant: Italy
  console-setup/unsupported_options: true
* console-setup/ctrl_alt_bksp: false
  console-setup/modelcode: pc105
  console-setup/use_system_font:
  console-setup/fontsize: 16
  console-setup/unsupported_layout: true
  console-setup/layoutcode: it
  console-setup/codesetcode: Lat15
* console-setup/altgr: The default for the keyboard layout
* console-setup/codeset: # Latin1 and Latin5 - western Europe and Turkic 
languages
  console-setup/toggle: No toggling
* console-setup/fontface: VGA
* console-setup/fontsize-text: 16
* console-setup/compose: No compose key
  debian-installer/console-setup-udeb/title:
  console-setup/other:
  console-setup/switch: No temporary switch
  console-setup/unsupported_config_layout: true
* console-setup/charmap: UTF-8
  console-setup/optionscode:
  console-setup/unsupported_config_options: true
  console-setup/layout:
  console-setup/variantcode:
* console-setup/model:
  console-setup/fontsize-fb: 16


---End Message---
---BeginMessage---
Source: console-setup
Source-Version: 1.47

We believe that the bug you reported is fixed in the latest version of
console-setup, which is due to be installed in the Debian FTP archive:

bdf2psf_1.47_all.deb
  to main/c/console-setup/bdf2psf_1.47_all.deb
console-setup-amiga-ekmap_1.47_all.udeb
  to main/c/console-setup/console-setup-amiga-ekmap_1.47_all.udeb

Processing of linux-kernel-di-mips-2.6_1.17_multi.changes

2009-11-16 Thread Archive Administrator
linux-kernel-di-mips-2.6_1.17_multi.changes uploaded successfully to localhost
along with the files:
  crypto-dm-modules-2.6.30-2-r5k-ip32-di_1.17_mips.udeb
  crypto-modules-2.6.30-2-4kc-malta-di_1.17_mips.udeb
  nic-shared-modules-2.6.30-2-r4k-ip22-di_1.17_mips.udeb
  kernel-image-2.6.30-2-4kc-malta-di_1.17_mips.udeb
  squashfs-modules-2.6.30-2-4kc-malta-di_1.17_mips.udeb
  multipath-modules-2.6.30-2-4kc-malta-di_1.17_mips.udeb
  isofs-modules-2.6.30-2-r4k-ip22-di_1.17_mips.udeb
  ext4-modules-2.6.30-2-r5k-ip32-di_1.17_mips.udeb
  ext4-modules-2.6.30-2-4kc-malta-di_1.17_mips.udeb
  jfs-modules-2.6.30-2-r4k-ip22-di_1.17_mips.udeb
  ipv6-modules-2.6.30-2-r4k-ip22-di_1.17_mips.udeb
  multipath-modules-2.6.30-2-r5k-ip32-di_1.17_mips.udeb
  squashfs-modules-2.6.30-2-r5k-ip32-di_1.17_mips.udeb
  reiserfs-modules-2.6.30-2-r4k-ip22-di_1.17_mips.udeb
  linux-kernel-di-mips-2.6_1.17.dsc
  loop-modules-2.6.30-2-r5k-ip32-di_1.17_mips.udeb
  sata-modules-2.6.30-2-4kc-malta-di_1.17_mips.udeb
  reiserfs-modules-2.6.30-2-4kc-malta-di_1.17_mips.udeb
  xfs-modules-2.6.30-2-r5k-ip32-di_1.17_mips.udeb
  cdrom-core-modules-2.6.30-2-4kc-malta-di_1.17_mips.udeb
  nls-core-modules-2.6.30-2-r5k-ip32-di_1.17_mips.udeb
  kernel-image-2.6.30-2-r5k-ip32-di_1.17_mips.udeb
  kernel-image-2.6.30-2-r4k-ip22-di_1.17_mips.udeb
  ipv6-modules-2.6.30-2-r5k-ip32-di_1.17_mips.udeb
  ipv6-modules-2.6.30-2-4kc-malta-di_1.17_mips.udeb
  nic-shared-modules-2.6.30-2-r5k-ip32-di_1.17_mips.udeb
  ppp-modules-2.6.30-2-4kc-malta-di_1.17_mips.udeb
  jfs-modules-2.6.30-2-r5k-ip32-di_1.17_mips.udeb
  usb-modules-2.6.30-2-4kc-malta-di_1.17_mips.udeb
  nls-core-modules-2.6.30-2-4kc-malta-di_1.17_mips.udeb
  crypto-modules-2.6.30-2-r5k-ip32-di_1.17_mips.udeb
  ide-modules-2.6.30-2-4kc-malta-di_1.17_mips.udeb
  reiserfs-modules-2.6.30-2-r5k-ip32-di_1.17_mips.udeb
  loop-modules-2.6.30-2-4kc-malta-di_1.17_mips.udeb
  crypto-modules-2.6.30-2-r4k-ip22-di_1.17_mips.udeb
  nls-core-modules-2.6.30-2-r4k-ip22-di_1.17_mips.udeb
  md-modules-2.6.30-2-r5k-ip32-di_1.17_mips.udeb
  ext4-modules-2.6.30-2-r4k-ip22-di_1.17_mips.udeb
  multipath-modules-2.6.30-2-r4k-ip22-di_1.17_mips.udeb
  loop-modules-2.6.30-2-r4k-ip22-di_1.17_mips.udeb
  isofs-modules-2.6.30-2-4kc-malta-di_1.17_mips.udeb
  xfs-modules-2.6.30-2-4kc-malta-di_1.17_mips.udeb
  usb-storage-modules-2.6.30-2-4kc-malta-di_1.17_mips.udeb
  xfs-modules-2.6.30-2-r4k-ip22-di_1.17_mips.udeb
  md-modules-2.6.30-2-r4k-ip22-di_1.17_mips.udeb
  input-modules-2.6.30-2-4kc-malta-di_1.17_mips.udeb
  linux-kernel-di-mips-2.6_1.17.tar.gz
  fat-modules-2.6.30-2-4kc-malta-di_1.17_mips.udeb
  crypto-dm-modules-2.6.30-2-r4k-ip22-di_1.17_mips.udeb
  squashfs-modules-2.6.30-2-r4k-ip22-di_1.17_mips.udeb
  md-modules-2.6.30-2-4kc-malta-di_1.17_mips.udeb
  crypto-dm-modules-2.6.30-2-4kc-malta-di_1.17_mips.udeb
  jfs-modules-2.6.30-2-4kc-malta-di_1.17_mips.udeb
  isofs-modules-2.6.30-2-r5k-ip32-di_1.17_mips.udeb

Greetings,

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


-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#458663: gz/bz2/xz for debootstrap data.tar

2009-11-16 Thread Otavio Salvador
On Mon, Nov 16, 2009 at 4:00 PM, Frans Pop elen...@planet.nl wrote:
 On Monday 16 November 2009, Otavio Salvador wrote:
 On Mon, Nov 16, 2009 at 12:18 PM, Clint Adams sch...@debian.org wrote:
  This anticipates the eventuality of data.tar.xz.

 I've commited your patch in SVN; even though it is not yet clear that
 .bz2 data.tar are going to be accepted for base packages I see now
 reason to now support it in debootstrap leaving this decision to FTP
 masters.

 Have you thought this through?

 Have you considered Joey's arguments that as a distribution we should not
 *want* to support multiple compression methods in debootstrap because the
 decompressors may not be available?

Yes; and I agree that Debian shouldn't support it _but_ it does't mean
deboostrap cannot support it.

 How will debootstrap react when the decompressors are not available?

It is going to output an error ... File not found! :-)

 If you do add this to SVN, shouldn't you also add a dependency on the
 decompressors?

No since it is not supported by Debian ATM; we're going to have
support on the code for it and derivatives can use it if desired but
I don't think we ought to add depends on something that is not used.

 Please don't commit patches blindly.

I did not.

-- 
Otavio Salvador  O.S. Systems
E-mail: ota...@ossystems.com.br  http://www.ossystems.com.br
Mobile: +55 53 9981-7854 http://projetos.ossystems.com.br



-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#458663: gz/bz2/xz for debootstrap data.tar

2009-11-16 Thread Frans Pop
On Monday 16 November 2009, Otavio Salvador wrote:
  How will debootstrap react when the decompressors are not available?

 It is going to output an error ... File not found! :-)

IMHO it should at the very least test if the decompressor is available [1] 
and output a more meaningful message than that. A user should not have to 
grub through the source to find out why it's failing.

  Please don't commit patches blindly.

 I did not.

OK.

[1] Using 'if type program /dev/null 21' for compatibility with D-I.



-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Processing of lenny-support_0.01_amd64.changes

2009-11-16 Thread Archive Administrator
lenny-support_0.01_amd64.changes uploaded successfully to ftp-master.debian.org
along with the files:
  lenny-support_0.01.dsc
  lenny-support_0.01.tar.gz
  lenny-support_0.01_all.udeb

Greetings,

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


-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Processing of kbd-chooser_1.50_amd64.changes

2009-11-16 Thread Archive Administrator
kbd-chooser_1.50_amd64.changes uploaded successfully to ftp-master.debian.org
along with the files:
  kbd-chooser_1.50.dsc
  kbd-chooser_1.50.tar.gz
  kbd-chooser_1.50_amd64.udeb

Greetings,

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


-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Processing of kbd-chooser_1.50_amd64.changes

2009-11-16 Thread Archive Administrator
kbd-chooser_1.50_amd64.changes uploaded successfully to localhost
along with the files:
  kbd-chooser_1.50.dsc
  kbd-chooser_1.50.tar.gz
  kbd-chooser_1.50_amd64.udeb

Greetings,

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


-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Processing of lenny-support_0.01_amd64.changes

2009-11-16 Thread Archive Administrator
lenny-support_0.01_amd64.changes uploaded successfully to localhost
along with the files:
  lenny-support_0.01.dsc
  lenny-support_0.01.tar.gz
  lenny-support_0.01_all.udeb

Greetings,

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


-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



please unblock pciutils 1:3.1.4-3 (udeb)

2009-11-16 Thread Aníbal Monsalve Salazar
please unblock pciutils 1:3.1.4-3 (udeb)

Changes: 
 pciutils (1:3.1.4-3) unstable; urgency=low
 .
   * Update pci.ids with snapshot dated 2009-10-22 03:15:02
   * Build twice in a row successfully
 Closes: 544011
   * Ship libpci.a in libpci-dev
 Closes: 545877


signature.asc
Description: Digital signature


Re: please unblock pciutils 1:3.1.4-3 (udeb)

2009-11-16 Thread Luk Claes
Aníbal Monsalve Salazar wrote:
 please unblock pciutils 1:3.1.4-3 (udeb)

Not blocked, so no unblock needed.

Cheers

Luk


-- 
To UNSUBSCRIBE, email to debian-boot-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org