Re: Language and locale setting in /root/dbootstrap_setting

2002-02-12 Thread Philip Blundell

On Mon, 2002-02-11 at 23:46, Petter Reinholdtsen wrote:
 Apparently, someone knew this.  I checked the CVS log for
 dbootstrap/util.c, and discovered that user aph inserted
 LANGUAGE=langcode 2001-11-20.  Then the user pb changed this to
 LANG=langcode 2002-01-07.  This obviously triggered the warning from
 perl, and blade changed this to LANG_INST=langcode 2002-02-10.
 
 There seem to be some confusion.  Why was LANGUAGE= changed to LANG=?

Mistakenly.  Feel free to change it back.

 Which program is the intended receiver of this value?

base-config, primarily.

 I suggest setting something like this.  I'll have to investigate some
 more to find out where to tell debootstrap to install locale.

Recent debootstraps have some option that allows you to specify extra
packages.  Remember that for non-latin languages you will probably have
to pull in some kind of terminal program as well, e.g. kon2 for Kanji,
or the resulting translations will be unusable.

 Another thing I noticed was that the code i boot-floopies seem to
 assume non-utf-8 is english, and that all translations is using utf-8.
 Is this correct?  Should the default locale support utf-8 instead of
 my suggested ISO-8859-1?

UTF-8 is only used inside boot-floppies itself.  I don't think we can
really claim that woody is UTF-8 ready out of the box, given the issues
with things like slang, so it doesn't seem worth even making it an
option to use that as the default character set.

Just hardcoding ISO-8859-1 doesn't seem like a good idea though, unless
this is just a placeholder that never really does anything.  There are
several supported languages that use different characters, both other
iso-8859-? variants and completely unrelated charsets like EUC-JP.

 BTW: the latest debootstrap fail to build on arm and m68k.  MAKEDEV do
   not know 'usb'.  Check buildd logs for details.

I built the arm one by hand and it worked.  I guess the build-depend on
makedev wasn't stringent enough or something of the sort.

p.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




cvs commit to boot-floppies/documentation by masik

2002-02-12 Thread Debian Boot CVS Master

Repository: boot-floppies/documentation
who:masik
time:   Tue Feb 12 02:22:41 PST 2002
Log Message:
  Enable build of installdocs for cs

Files:
changed:Makefile.docs


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




Re: Language and locale setting in /root/dbootstrap_setting

2002-02-12 Thread Phil Blundell

On Tue, 2002-02-12 at 10:32, Petter Reinholdtsen wrote:
 [Philip Blundell]
  Mistakenly.  Feel free to change it back.
 
 I don't have write access to the CVS.  I'm not a Debian developer.

Oh, right, sorry.  Okay, I'll do this.  If you make a patch to add some
appropriate --include options to the debootstrap invocation in order
to pull in locales and so on, I'll apply that too.

p.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




Re: Language and locale setting in /root/dbootstrap_setting

2002-02-12 Thread Phil Blundell

On Tue, 2002-02-12 at 10:32, Petter Reinholdtsen wrote:
 I should suggest using the locale member in 'struct language_item' in
 LANG, and making sure this is a proper locale, and then use the msgcat
 member in LANGUAGE.  

Yes, that looks like it could work.  We could also consider re-enabling
the language flavour chooser in order to let people select a territory.

p.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




Re: Language and locale setting in /root/dbootstrap_setting (patch)

2002-02-12 Thread Petter Reinholdtsen


[Eduard Bloch]
 I tried this a while ago to install locales. It is broken since I do
 not allocate the string memory correctly, but the basic idea is
 clear.

I combined and corrected your patch.  Here is a better suggestion.
I'm not sure if the question should be presented at all.  If it is
needed to get the translations working, it should be installed.

I'm missing the generation step.  I'm not sure where to add it.  After
debootstrap is finished, /etc/locale.gen must be checked/edited, and
/usr/sbin/locale-gen must be executed.  A problem here is the fact
that locale.gen want 'en_US ISO-8859-1', not 'en_US.ISO-8859-1'.
Hopefully it is enough to replace '.' with ' ', but I'm not that
familiar with the special cases of locale-gen. :-/

Index: utilities/dbootstrap/extract_base.c
===
RCS file: /cvs/debian-boot/boot-floppies/utilities/dbootstrap/extract_base.c,v
retrieving revision 1.71
diff -u -3 -p -u -r1.71 extract_base.c
--- utilities/dbootstrap/extract_base.c 2002/02/08 05:56:11 1.71
+++ utilities/dbootstrap/extract_base.c 2002/02/12 10:48:03
@@ -249,10 +249,11 @@ exec_debootstrap(char **argv){
 int
 debootstrap_extract_base (void) {
   int rs=0;
-  char *argv[8];
+  char *argv[9];
   struct stat statbuf;
   char *source;
   char filename [512];
+  char *locales = NULL;
   int status;

   /* Sanity Check */
@@ -268,6 +269,15 @@ debootstrap_extract_base (void) {

   disqtype=debootstrap;
   if ( choose_medium() ) return 1;
+
+#if 0  defined(USE_LANGUAGE_CHOOSER)
+   if (DLG_YES ==
+   yesNoBox(_(Would you like to install the localisation package?\n
+ It is needed to support other languages than default (English) 
+later.),
+   _(Locales installation)) ) {
+   locales=--include=locales;
+   }
+#endif

   DEBUGMSG(Extracting base, Archive_Dir: %s, Archive_Dir);
   if (!strcmp (Archive_Dir, netfetch))
@@ -332,10 +342,12 @@ debootstrap_extract_base (void) {
   argv[4] = woody;
   argv[5] = /target;
   argv[6] = source;
-  argv[7] = NULL;
+  argv[7] = locales;
+  argv[8] = NULL;

-  INFOMSG(running '%s %s %s %s %s %s %s',
-  argv[0], argv[1], argv[2], argv[3], argv[4], argv[5], argv[6]);
+  INFOMSG(running '%s %s %s %s %s %s %s %s',
+  argv[0], argv[1], argv[2], argv[3], argv[4], argv[5], argv[6],
+  argv[7] ? argv[7] : (null) );

   rs = exec_debootstrap(argv);

Index: utilities/dbootstrap/util.c
===
RCS file: /cvs/debian-boot/boot-floppies/utilities/dbootstrap/util.c,v
retrieving revision 1.69
diff -u -3 -p -u -r1.69 util.c
--- utilities/dbootstrap/util.c 2002/02/10 19:30:14 1.69
+++ utilities/dbootstrap/util.c 2002/02/12 10:48:03
@@ -670,8 +670,17 @@ check_pending_config(void)
 write_userconfig(CDROM, true);

 #ifdef USE_LANGUAGE_CHOOSER
-  if ( lang != NULL )
-write_userconfig(LANG_INST, lang-locale);
+  if ( lang != NULL ) {
+/* Pick any C/POSIX compatible locale.  Make sure this locale is generated
+   by locale-gen. */
+write_userconfig(LANG, lang-locale);
+
+/* Specify which translation to use when displaying messages */
+write_userconfig(LANGUAGE, lang-msgcat);
+
+/* Keep perl quiet if something goes wrong and the locale is missing */
+write_userconfig(PERL_BADLANG, 0);
+  }
 #endif

 #if #cpu(powerpc)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




Re: Language and locale setting in /root/dbootstrap_setting (patch)

2002-02-12 Thread Phil Blundell

On Tue, 2002-02-12 at 10:52, Petter Reinholdtsen wrote:
 I combined and corrected your patch.  Here is a better suggestion.
 I'm not sure if the question should be presented at all.  If it is
 needed to get the translations working, it should be installed.

Agreed.  We should try to avoid asking extra questions unless it's
absolutely unavoidable.  Installing locales doesn't do any harm even if
it turns out not to be needed.

 I'm missing the generation step.  I'm not sure where to add it.  After
 debootstrap is finished, /etc/locale.gen must be checked/edited, and
 /usr/sbin/locale-gen must be executed.  A problem here is the fact
 that locale.gen want 'en_US ISO-8859-1', not 'en_US.ISO-8859-1'.
 Hopefully it is enough to replace '.' with ' ', but I'm not that
 familiar with the special cases of locale-gen. :-/

If you are putting en_US.ISO-8859-1 in $LANG, you need to put
en_US.ISO-8859-1 ISO-8859-1 in /etc/locale.gen.  But yes, . is
always the separator for the character set part.

p.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




Re: Language and locale setting in /root/dbootstrap_setting

2002-02-12 Thread Petter Reinholdtsen

[Phil Blundell]
 Some of the language definition files (e.g. german, which I guess Eduard
 was using) just set -locale to the language code.  It does seem like
 these are in error.

 Also, if we can make LANG come out right, I don't think there is any
 need to set LANGUAGE at all.  So, to summarise, I think we should:

I would say it is good to pass the msgcat language code on to
base-config/libc/gettext.  Parhaps combine the locale value and the
language value: LANGUAGE=de_DE:de

  - inspect, and fix if necessary, the locale values in all the 
.src files so that they include country codes

I found these bugs:

Index: german.src
===
RCS file: 
/cvs/debian-boot/boot-floppies/utilities/dbootstrap/langs/german.src,vretrieving 
revision 1.7
diff -u -3 -p -u -r1.7 german.src
--- german.src  2001/12/26 16:04:27 1.7
+++ german.src  2002/02/12 10:57:16
@@ -3,10 +3,10 @@
 hintde - Sie haben Deutsch ausgewählt.  Return drücken um weiterzumachen/hint
 list
 nameWähle die Sprach-Version/name
-item arch=i386 m68k powerpc arm alpha locale=de acm=iso01 
font=LatArCyrHeb-16 keymap=i386/qwertz/de-latin1-nodeadkeys msgcat=de
+item arch=i386 m68k powerpc arm alpha locale=de_DE.ISO-8859-1 
+acm=iso01 font=LatArCyrHeb-16 keymap=i386/qwertz/de-latin1-nodeadkeys 
+msgcat=de
 nameDeutsch/name
 /item
-item arch=powerpc locale=de acm=iso01 font=LatArCyrHeb-16 
keymap=mac/mac-de-latin1-nodeadkeys msgcat=de
+item arch=powerpc locale=de_DE.ISO-8859-1 acm=iso01 
+font=LatArCyrHeb-16 keymap=mac/mac-de-latin1-nodeadkeys msgcat=de
 nameDeutsch (Mac)/name
 /item
 /list
Index: swedish.src
===
RCS file: /cvs/debian-boot/boot-floppies/utilities/dbootstrap/langs/swedish.src,v
retrieving revision 1.3
diff -u -3 -p -u -r1.3 swedish.src
--- swedish.src 2000/12/03 01:28:25 1.3
+++ swedish.src 2002/02/12 10:57:16
@@ -4,23 +4,23 @@
 list
 nameVälj språkvariant/name

-item arch=i386 locale=sv_SE acm=iso01 font=LatArCyrHeb-16 
keymap=i386/qwerty/se-latin1 msgcat=sv
+item arch=i386 locale=sv_SE.ISO-8859-1 acm=iso01 font=LatArCyrHeb-16 
+keymap=i386/qwerty/se-latin1 msgcat=sv
 nameSverige/name
 /item
-item arch=i386 locale=sv_SE acm=iso01 font=LatArCyrHeb-16 
keymap=i386/qwerty/fi msgcat=sv
+item arch=i386 locale=sv_SE.ISO-8859-1 acm=iso01 font=LatArCyrHeb-16 
+keymap=i386/qwerty/fi msgcat=sv
 nameSverige (inga döda tangenter)/name
 /item
-item arch=i386 locale=sv_FI acm=iso01 font=LatArCyrHeb-16 
keymap=i386/qwerty/fi-latin1 msgcat=sv
+item arch=i386 locale=sv_FI.ISO-8859-1 acm=iso01 font=LatArCyrHeb-16 
+keymap=i386/qwerty/fi-latin1 msgcat=sv
 nameFinland/name
 /item
-item arch=i386 locale=sv_FI acm=iso01 font=LatArCyrHeb-16 
keymap=i386/qwerty/fi msgcat=sv
+item arch=i386 locale=sv_FI.ISO-8859-1 acm=iso01 font=LatArCyrHeb-16 
+keymap=i386/qwerty/fi msgcat=sv
 nameFinland (inga döda tangenter)/name
 /item

-item arch=sparc locale=sv_SE acm=iso01 font=LatArCyrHeb-16 
keymap=sun/sunt5-fi-latin1 msgcat=sv
+item arch=sparc locale=sv_SE.ISO-8859-1 acm=iso01 
+font=LatArCyrHeb-16 keymap=sun/sunt5-fi-latin1 msgcat=sv
 nameSverige/name
 /item
-item arch=sparc locale=sv_FI acm=iso01 font=LatArCyrHeb-16 
keymap=sun/sunt5-fi-latin1 msgcat=sv
+item arch=sparc locale=sv_FI.ISO-8859-1 acm=iso01 
+font=LatArCyrHeb-16 keymap=sun/sunt5-fi-latin1 msgcat=sv
 nameFinland/name
 /item

  - turn on the code protected by USE_LANGUAGE_VARIANTS in boxes.c, but
not the bit in main_menu.c

Haven't looked at this part yet. :-)

[Phil Blundell]
 If you are putting en_US.ISO-8859-1 in $LANG, you need to put
 en_US.ISO-8859-1 ISO-8859-1 in /etc/locale.gen.  But yes, . is
 always the separator for the character set part.

Are you sure?  I believe this is wrong.  I use LANG=no_NO.ISO-8859-1
but only need 'no_NO ISO-8859-1' in /etc/locale.gen.


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




Re: Language and locale setting in /root/dbootstrap_setting

2002-02-12 Thread Phil Blundell

On Tue, 2002-02-12 at 11:08, Petter Reinholdtsen wrote:
 [Phil Blundell]
  If you are putting en_US.ISO-8859-1 in $LANG, you need to put
  en_US.ISO-8859-1 ISO-8859-1 in /etc/locale.gen.  But yes, . is
  always the separator for the character set part.
 
 Are you sure?  I believe this is wrong.  I use LANG=no_NO.ISO-8859-1
 but only need 'no_NO ISO-8859-1' in /etc/locale.gen.

It doesn't seem to work for me.  My /etc/locale.gen includes:

fr_FR ISO-8559-1
de_DE.ISO-8859-1 ISO-8859-1

If I do LANG=fr_FR ls --help, I get the French help text; if I do
LANG=fr_FR.ISO-8859-1 ls --help, the messages come out in English. 
Conversely, de_DE gives me English and de_DE.ISO-8859-1 gives me
German.

So it seems that an exact match is required.  I admit this is scarcely
an exhaustive test, though.

p.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




cvs commit to boot-floppies/documentation/it by gsacco

2002-02-12 Thread Debian Boot CVS Master

Repository: boot-floppies/documentation/it
who:gsacco
time:   Tue Feb 12 04:00:34 PST 2002
Log Message:
  Updated two tag and corrected minor typos.
  

Files:
changed:hardware.sgml


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




cvs commit to boot-floppies/utilities/dbootstrap/po by jtarrio

2002-02-12 Thread Debian Boot CVS Master

Repository: boot-floppies/utilities/dbootstrap/po
who:jtarrio
time:   Tue Feb 12 06:49:54 PST 2002
Log Message:
  Galician translation defuzzying
  

Files:
changed:gl.po


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




Bug#133570: Unable to boot from disk

2002-02-12 Thread Bodnyk, Bruce W

Package: boot-floppies
Version: 2.2
flavor: vanilla
architecture: i386
model: HP Kayak
memory: 512MB
scsi: Symbios Logic SCSI
cd-rom: ATAPI, Hitachi CD-ROM
network card:   AMD PCnet-PCI II/PCnet Fast Ethernet Adapter
pcmcia: none

I'm trying to install Debian GNU/Linux 2.2 on an HP pc. The install seems
to proceed ok but when the machine reboots at the end of the install it
fails with the following messages:

LAN option: AMD PCnet - PCI II/PCnet - Fast Ethernet Adapter
DHCP MAC ADDR: 00 60 B0 ED 32 CE
PXE-E53: No boot filename received from BINL, DHCP or BOOTP.
PXE-M0F: Exiting PXE.
Operating System not found

I am however able to boot from the floppy that is created during the
install process. In booting from the floppy I noticed something 
strange. I can successfully ping other Unix machines on the network
using their network name but when I attempt to ping an NT machine
the system seems to have problems resolving the name and the
ping fails.

Any help would be appreciated!

Thanks!
Bruce

Bruce W. Bodnyk
Staff Engineer, CAE Development
FCI Electronics
825 Old Trail Road
Etters, PA 17319-9351

Phone: (717) 938-7543
Fax: (717) 938-7224
E-Mail: [EMAIL PROTECTED]




-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




Bug#132855: Boot Floppies

2002-02-12 Thread David Kimdon

That would be great.
I forwading this to the BTS.

Thanks,

-David

Tue, Feb 12, 2002 at 07:11:31AM + wrote:
 Hi,
 
  It looks like it might not be too difficult to make the install 
 easier,
  but we really need someone who knows what needs to be done to take a
  stab at it.
 
 If everything goes well, I will get a Smart Array 3200 Controller in 
 two weeks. Then I can (eh, I hope I can) modify the cpqarray driver so 
 it will register its devices with the major/minor numbers of the cciss 
 driver... This should be enough for me to play around with the debian 
 boot floppies and (maybe) I can send you a patch for dbbootstrap after 
 a few days..
 
 Bye
   Michael
 
 
 
 
 


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




boot-floppies_3.0.19_mips.changes INSTALLED

2002-02-12 Thread Debian Installer


Installing:
bf-archive-install_3.0.19_mips.sh byhand
bf-common_3.0.19_mips.tar.gz byhand
bf-doc_3.0.19_mips.tar.gz byhand
bf-r4k-ip22_3.0.19_mips.tar.gz byhand
install-doc_3.0.19_mips.deb
  to pool/main/b/boot-floppies/install-doc_3.0.19_mips.deb
Changes: boot-floppies (3.0.19) unstable; urgency=low
 .
  * really notable changes:
- reiserfs and udma100-ext3 flavors have been replaced with the new bf2.4
  flavor (using kernel 2.4.17)
- support for new-powermac architecture
 .
  * bugs closed by using new stuff from the archive;
closes: #127524
  * Matt Kraai
- tell pcmcia to use dhclient, closes: #125683
- install the MBR on the first available IDE disk, closes: #119825
- configure pcmcia interface properly, closes: #118997
  * Phil Blundell
- fix for documentation display of non-English dbootstrap msgs
- avoid comic situation at reboot time where the user is prompted
  to take the CD out of the drive, but the drawer is still locked
- reformat French release notes for display (other languages still
  need checking), closes: #125646
- check that LINGUA is set to C when LC is enabled, closes: #126035
- enable Japanese on arm
- try mounting floppy images with type auto first, closes: #94435
- add support for new arm subarch lart; reorganise arm build a bit
- enable LC on alpha
- remove Greek keymap (it breaks the build with recent console-data)
- correct LANGUAGE bogosity in dbootstrap_settings, closes: #127413
  * Adam Di Carlo
- enable i18n for i386's reiserfs flavor, which was indicated as
  enabled before but really wasn't
- reboot using the 'reboot' command rather than signalling PID 1,
  closes: #119834
- require whiptail = 0.50.17-9, closes: #125999
- require debootstrap = 0.1.16
  * Colin Walters
- support for new-powermac architecture.  closes: #126489, #127955, #131409
- Yaboot can now boot from XFS and ext3, so allow the user to make
  /boot with these filesystem types
- kill any DHCP daemon running if the user chooses static networking,
  closes: #126205
- minor rescue.sh cleanups, fixes
- Add EXTRACT_LIST_powerpc_newpmac and SMALL_BASE_LIST_powerpc_newpmac
- fix rootdisk.sh to install yabootwrapper for newpmac too
  * Eduard Bloch
- when mounting DOS partitions, use vfat instead of msdos where possible,
  closes: #123973
- added tune2fs to the extract list, maybe needed for ext3 conversion
- enable i18n for i386's udma100-ext3 flavor, was a typo in
  rootdisk.sh
- German translation updates
- additional check to make sure that ext3 is supported before choosing it
- Adapted messages for choose-target dialogs when making a problem report
- bf2.4 integration: README, new rules in i386.rules
- mkreiserfs in all flavors. Since we do have the space, the user should
  be used to replace the kernel and use reiserfs with any flavor
- preliminary dbootstrap support for locales preinstallation
- made a workaround to store the list of loaded modules in /etc/modules
- updated libc version in rootdisk.sh to 2.2.5
- dropped non-C message files from modconfs tarball (never used)
  * John H. Robinson, IV
- when mounting partitions of type 82, test the actual filesystem type
- trouble report log now gzipped
- added ``livecd'' kernel and base system installation method
- re-worked ``mounted'' kernel and base system installation method
- Closes: #108477, #123926, #127521
  * Chris Tillman: documentation updates
- revise BootX instructions for OldWorld Mac booting
- add basedebs.tgz instructions, installation options
- add link to MakeDebianFloppy AppleScript utility
- PPP is not available until after base installation Closes: #127550
- add powerpc to list of arches requiring 16M in main.c
- fix minor build stop error, release.sh
- Spelling, dangling prepositions in README-Users.m4 (no changes
  in meaning)
- Change example of proprietary hardware (Closes: #129837)
- add comments to pmac yaboot.conf (2 versions)
- delete half-line from end of release notes, Closes: #127583
  * Guido Günther
- use kernel 2.4.16 on mips
- mips uses an uncompressed kernel called vmlinux
  * Junichi Uekawa
- Japanese dbootstrap message updates
- Japanese doc-check fixes
- update release_notes in rootdisk/messages/ja/
- change .cvsignore in utilities/dbootstrap/langs/ which contained
*.xml, because that would ignore the necessary file langs.xml
  * André Luís Lopes: Portuguese updates
- Removed two obsolete messages
- Bring translation up-to-date with original english
- Fix a fuzzy message.
  * Claus Hindsgaul: Danish updates
  * Edmund GRIMLEY EVANS: Esperanto updates
  * David Martínez: Spanish updates
  * David Hilvert
- fix disk type, closes: #127370
  * Jordi Mallach:
- Catalan updates
- documentation fixes
- Catalan 

boot-floppies_3.0.19_arm.changes INSTALLED

2002-02-12 Thread Debian Installer


Installing:
bf-archive-install_3.0.19_arm.sh byhand
bf-cats_3.0.19_arm.tar.gz byhand
bf-doc_3.0.19_arm.tar.gz byhand
bf-lart_3.0.19_arm.tar.gz byhand
bf-misc_3.0.19_arm.tar.gz byhand
bf-netwinder_3.0.19_arm.tar.gz byhand
bf-riscpc_3.0.19_arm.tar.gz byhand
install-doc_3.0.19_arm.deb
  to pool/main/b/boot-floppies/install-doc_3.0.19_arm.deb
Changes: boot-floppies (3.0.19) unstable; urgency=low
 .
  * really notable changes:
- reiserfs and udma100-ext3 flavors have been replaced with the new bf2.4
  flavor (using kernel 2.4.17)
- support for new-powermac architecture
 .
  * bugs closed by using new stuff from the archive;
closes: #127524
  * Matt Kraai
- tell pcmcia to use dhclient, closes: #125683
- install the MBR on the first available IDE disk, closes: #119825
- configure pcmcia interface properly, closes: #118997
  * Phil Blundell
- fix for documentation display of non-English dbootstrap msgs
- avoid comic situation at reboot time where the user is prompted
  to take the CD out of the drive, but the drawer is still locked
- reformat French release notes for display (other languages still
  need checking), closes: #125646
- check that LINGUA is set to C when LC is enabled, closes: #126035
- enable Japanese on arm
- try mounting floppy images with type auto first, closes: #94435
- add support for new arm subarch lart; reorganise arm build a bit
- enable LC on alpha
- remove Greek keymap (it breaks the build with recent console-data)
- correct LANGUAGE bogosity in dbootstrap_settings, closes: #127413
  * Adam Di Carlo
- enable i18n for i386's reiserfs flavor, which was indicated as
  enabled before but really wasn't
- reboot using the 'reboot' command rather than signalling PID 1,
  closes: #119834
- require whiptail = 0.50.17-9, closes: #125999
- require debootstrap = 0.1.16
  * Colin Walters
- support for new-powermac architecture.  closes: #126489, #127955, #131409
- Yaboot can now boot from XFS and ext3, so allow the user to make
  /boot with these filesystem types
- kill any DHCP daemon running if the user chooses static networking,
  closes: #126205
- minor rescue.sh cleanups, fixes
- Add EXTRACT_LIST_powerpc_newpmac and SMALL_BASE_LIST_powerpc_newpmac
- fix rootdisk.sh to install yabootwrapper for newpmac too
  * Eduard Bloch
- when mounting DOS partitions, use vfat instead of msdos where possible,
  closes: #123973
- added tune2fs to the extract list, maybe needed for ext3 conversion
- enable i18n for i386's udma100-ext3 flavor, was a typo in
  rootdisk.sh
- German translation updates
- additional check to make sure that ext3 is supported before choosing it
- Adapted messages for choose-target dialogs when making a problem report
- bf2.4 integration: README, new rules in i386.rules
- mkreiserfs in all flavors. Since we do have the space, the user should
  be used to replace the kernel and use reiserfs with any flavor
- preliminary dbootstrap support for locales preinstallation
- made a workaround to store the list of loaded modules in /etc/modules
- updated libc version in rootdisk.sh to 2.2.5
- dropped non-C message files from modconfs tarball (never used)
  * John H. Robinson, IV
- when mounting partitions of type 82, test the actual filesystem type
- trouble report log now gzipped
- added ``livecd'' kernel and base system installation method
- re-worked ``mounted'' kernel and base system installation method
- Closes: #108477, #123926, #127521
  * Chris Tillman: documentation updates
- revise BootX instructions for OldWorld Mac booting
- add basedebs.tgz instructions, installation options
- add link to MakeDebianFloppy AppleScript utility
- PPP is not available until after base installation Closes: #127550
- add powerpc to list of arches requiring 16M in main.c
- fix minor build stop error, release.sh
- Spelling, dangling prepositions in README-Users.m4 (no changes
  in meaning)
- Change example of proprietary hardware (Closes: #129837)
- add comments to pmac yaboot.conf (2 versions)
- delete half-line from end of release notes, Closes: #127583
  * Guido Günther
- use kernel 2.4.16 on mips
- mips uses an uncompressed kernel called vmlinux
  * Junichi Uekawa
- Japanese dbootstrap message updates
- Japanese doc-check fixes
- update release_notes in rootdisk/messages/ja/
- change .cvsignore in utilities/dbootstrap/langs/ which contained
*.xml, because that would ignore the necessary file langs.xml
  * André Luís Lopes: Portuguese updates
- Removed two obsolete messages
- Bring translation up-to-date with original english
- Fix a fuzzy message.
  * Claus Hindsgaul: Danish updates
  * Edmund GRIMLEY EVANS: Esperanto updates
  * David Martínez: Spanish updates
  * David Hilvert
- fix disk type, closes: 

won't boot up

2002-02-12 Thread rob mcrae



I have a 486 66MHz it wont boot 
up something must be badly wrong with it .boot disk will not work it 
always says operating system not found .I bought it at a garage sale is 
there any way to get this thing
up and running . i am trying to put windows 98 on 
it i have the second edition 98 and a boot floppy
but nothing works .please 
help


Processed: Fixed in NMU of modconf 0.2.41

2002-02-12 Thread Debian Bug Tracking System

Processing commands for [EMAIL PROTECTED]:

 tag 127526 + fixed
Bug#127526: boot-floppies: confusing modules title
Tags added: fixed

 tag 133017 + fixed
Bug#133017: modconf: breaks on some PCI modules descriptions
Bug#132561: modconf: can't install any network drivers on boot-floppies
Tags added: fixed

 tag 94008 + fixed
Bug#94008: modconf description of plip is wrong
Tags added: fixed

 quit
Stopping processing here.

Please contact me if you need assistance.

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


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




cvs commit to boot-floppies/utilities/dbootstrap by pb

2002-02-12 Thread Debian Boot CVS Master

Repository: boot-floppies/utilities/dbootstrap
who:pb
time:   Tue Feb 12 13:29:37 PST 2002
Log Message:
  turn language variants back on
  

Files:
changed:Makefile main_menu.c


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




cvs commit to boot-floppies/debian by pb

2002-02-12 Thread Debian Boot CVS Master

Repository: boot-floppies/debian
who:pb
time:   Tue Feb 12 13:30:54 PST 2002
Log Message:
  log changes
  

Files:
changed:changelog


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




cvs commit to boot-floppies/utilities/dbootstrap/langs by pb

2002-02-12 Thread Debian Boot CVS Master

Repository: boot-floppies/utilities/dbootstrap/langs
who:pb
time:   Tue Feb 12 13:33:08 PST 2002
Log Message:
  Use full locale names where appropriate.
  Patch from Petter Reinholdtse
  

Files:
changed:german.src swedish.src


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




cvs commit to boot-floppies/debian by pb

2002-02-12 Thread Debian Boot CVS Master

Repository: boot-floppies/debian
who:pb
time:   Tue Feb 12 13:34:49 PST 2002
Log Message:
  log changes
  

Files:
changed:changelog


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




Re: won't boot up

2002-02-12 Thread Colin Walters

On Tue, 2002-02-12 at 13:43, rob mcrae wrote:
 I have a 486  66MHz it wont boot up  something must be badly wrong with it.
 boot disk will not work it always says operating system not found.

That almost certainly means either the floppy disk you're using to boot
is bad, or the disk drive itself is bad.




-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




very urgent

2002-02-12 Thread colus lbrahim

Dear sir
I am a legal practioners and an import-export
consultant in africa region.
One of my client is interested in investing multi
million dollars with your company and she is
interested
in investing in your  country.
Kindly forward all your companys activities  to me for
immediate deccission  on the investment program.
Total amount to be invested=
$75,000,000,00.usd.cash
investment
4metric tons of AU in
dust.tresure
investment
Orgin Democratic repubic of congo.
immediately i receive your details i will in inform
her
and feed you with her arrangement.
anticipating your immediate reply.

Best regards
Alhaji colus
Legal director
Tel:233-24-685296




__
Do You Yahoo!?
Send FREE Valentine eCards with Yahoo! Greetings!
http://greetings.yahoo.com


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




cvs commit to boot-floppies/documentation/en by toff

2002-02-12 Thread Debian Boot CVS Master

Repository: boot-floppies/documentation/en
who:toff
time:   Tue Feb 12 18:41:16 PST 2002
Log Message:
  Add Tab key hint for quik and yaboot

Files:
changed:boot-new.sgml


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




cvs commit to boot-floppies/debian by toff

2002-02-12 Thread Debian Boot CVS Master

Repository: boot-floppies/debian
who:toff
time:   Tue Feb 12 18:42:28 PST 2002
Log Message:
  Add Tab key hint for quik and yaboot

Files:
changed:changelog


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]