Re: debootstrap not working in boot floppies 3.0.13
Le Mon, Sep 10, 2001 at 03:22:46PM +1000, Anthony Towns écrivait: > > Why don't you reassign it then ? You've got luck that I've seen this mail > > here ... i'm the submitter and never got a direct answer. :-( > > This is #110552 then? Yes. I cced the bug report on debian-boot without using the X-debbugs-cc (I always forgot the exact name). > If you're generating the Packages files, you may as well generate the > Release file too, rather than copying it at all. Limiting "Architectures:" > and "Components:" to just those that're on the CD would make sense, > I think, at least. That's why I'm doing right now : changing the MD5sums, Arch, and Components. Cheers, -- Raphaël Hertzog -+- http://strasbourg.linuxfr.org/~raphael/ Le bouche à oreille du Net : http://www.beetell.com Naviguer sans se fatiguer à chercher : http://www.deenoo.com Formation Linux et logiciel libre : http://www.logidee.com -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
cvs commit to debian-cd/debian by rhirst
Repository: debian-cd/debian who:rhirst time: Mon Sep 10 03:15:59 PDT 2001 Log Message: Add support for hppa. Files: changed:changelog -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
cvs commit to debian-cd/tools/boot/woody by rhirst
Repository: debian-cd/tools/boot/woody who:rhirst time: Mon Sep 10 03:15:59 PDT 2001 Log Message: Add support for hppa. Files: added: boot-hppa post-boot-hppa -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
cvs commit to debian-cd/tools/boot/woody by hertzog
Repository: debian-cd/tools/boot/woody who:hertzog time: Mon Sep 10 05:01:10 PDT 2001 Log Message: * Moved to main (removed the last use of unzip). * Added a suggests to palo (>= 0.94) for hppa. Files: changed:boot-alpha -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
cvs commit to debian-cd/debian by hertzog
Repository: debian-cd/debian who:hertzog time: Mon Sep 10 05:01:10 PDT 2001 Log Message: * Moved to main (removed the last use of unzip). * Added a suggests to palo (>= 0.94) for hppa. Files: changed:changelog control -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
>>>11,000,000 EMAIL ADDRESSES..............
Dear [EMAIL PROTECTED], Would you like to send an Email Advertisement to 11,000,000 PEOPLE DAILY for FREE? === 1) Let's say you... Sell a $24.95 PRODUCT or SERVICE. 2) Let's say you... Broadcast Email to 500,000 PEOPLE DAILY. 3) Let's say you... Receive JUST 1 ORDER for EVERY 2,500 EMAILS. CALCULATION OF YOUR EARNINGS BASED ON THE ABOVE STATISTICS: [Day 1]: $4,990 [Week 1]: $34,930 [Month 1]: $139,720 NOTE: (If you do not already have a product or service to sell, we can supply you with one). = To find out more information, Do not respond by email or you will be permanantly removed from any future emails from us. Instead, please visit our web site at: http://www.moneyinyourhands.com/package1.htm List Removal Instructions: We hope you enjoyed receiving this message. However, if you'd rather not receive future e-mails of this sort from Internet Specialists, send an email to [EMAIL PROTECTED] and type "remove" in the "subject" line and you will be removed from any future mailings. We hope you have a great day! Internet Specialists -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
cvs commit to debian-cd/tools by hertzog
Repository: debian-cd/tools who:hertzog time: Mon Sep 10 13:14:08 PDT 2001 Log Message: * Fix a stupid error in sed. Files: changed:scanpackages -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: Bug#111937: debian-cd: setting language in boot-i386
Le Tue, Sep 11, 2001 at 01:25:26AM -0300, Carlos Barros écrivait: > This is the boot-i386 that I change to set the *.txt and font.psf of > the rescue.bin image right before the inclusion in the CD. > The file is debian-cd/tools/woody/boot-i386 > > Hope you like it. Unfortunately no, I don't like it. Two reasons : - since you're copying all the font files in the image, you might as well put them in at the boot floppies generation time - doing that in debian-cd requires us to run debian-cd as root, and it's very, very convenient to be able to run it as non-root user (i know that sparc cd must be generated as root iirc, but that's not a reason to generalize that problem) The « current policy » regarding the modifications of boot floppies (wrt debian-cd) is that if you need to modify them, do it in a separate directory and use the BOOTDISKS parameter to tell debian-cd to use an alternate set of boot floppies. And now, about the decision of which "default" font should be used, again it's also from the resort of boot floppies, the "decision taking" code should be in dbootstrap really. The decision may be "influenced" by external parameters (boot command line or file created on the CD or whatever). Either i'll reasign this bug to boot-floppies, or you close it. > #!/bin/bash > # > # boot-i386 v 1.13 (c) Steve McIntyre <[EMAIL PROTECTED]> > # [...] > # Now check for the language selection for the boot images of the CD's > # Carlos Barros. > # > if [ -d CD1/dists/$CODENAME/main/disks-$ARCH/current/lang/$MESSAGES ] > then > echo "Setting messages to lang.: ${MESSAGES}" > mkdir boot$N/boot/mnt > mount boot$N/boot/rescue.bin boot$N/boot/mnt -o loop,rw -t vfat > cp -f CD1/dists/$CODENAME/main/disks-$ARCH/current/lang/$MESSAGES/* >boot$N/boot/mnt/ > case $MESSAGES in > ("pt"|"es") > cp -f CD1/dists/$CODENAME/main/disks-$ARCH/current/lang/fonts/lat1u-16.psf >boot$N/boot/mnt/font.psf;; > ("cs"|"hr"|"hu"|"pl"|"sk") > cp -f CD1/dists/$CODENAME/main/disks-$ARCH/current/lang/fonts/iso02g.psf >boot$N/boot/mnt/font.psf;; > ("eo") > cp -f CD1/dists/$CODENAME/main/disks-$ARCH/current/lang/fonts/iso03g.psf >boot$N/boot/mnt/font.psf;; > ("ru") > cp -f CD1/dists/$CODENAME/main/disks-$ARCH/current/lang/fonts/koi8-r.psf >boot$N/boot/mnt/font.psf;; > esac > umount boot$N/boot/mnt > rmdir boot$N/boot/mnt > else > echo "Can't find messages in lang $MESSAGES " > fi Cheers, -- Raphaël Hertzog -+- http://strasbourg.linuxfr.org/~raphael/ Le bouche à oreille du Net : http://www.beetell.com Naviguer sans se fatiguer à chercher : http://www.deenoo.com Formation Linux et logiciel libre : http://www.logidee.com -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]