2011/1/26 Colin Watson <cjwat...@debian.org>

Hello.


On Tue, Jan 25, 2011 at 06:52:17PM +0100, Daniel Baumann wrote:
> > On 01/25/2011 10:01 AM, Julien Cristau wrote:
> > > - live-installer is not removed yet, I was still hoping you'd want it
> in
> > >   squeeze so you would do something about the serious bugs you filed
> >
> > recently i realized that for some particular things in debian, it's
> > better not to argue, so i stop trying.
> >
> > > - if this bug is wishlist for 3.x, why is it serious for 2.x?
> >
> > it was our own release goal for 2.x to have proper installers. as this
> > apparently isn't going to happen, i'll might try again for 3.x.
>
> As Philip pointed out, I fixed live-installer's RC bug (the one not
> tagged squeeze-ignore, anyway) in unstable in consultation with Marco
> Amadori, along with the progress bar issue.  I don't know of anything
> else that would require live-installer to be dropped from squeeze.
>
>
I have checked the new file lib/live-installl/squashfs and goes all right:

 ANNA_QUIET=1 anna-install squashfs-modules || true




> What needs to change to make sure live-installer is still included on
> the images?  Is it just a matter of not uploading a change you've made,
> or does something need to be reverted?
>

Another thing I was talking to Octavio, is the theme that creates and fstab
for usb-hdd means:

/dev/sdb1       /media/cdrom0   udf,iso9660 user,noauto     0       0

And I thought it would be better to stay well:

/dev/sdb1       /media/usb0     auto    rw,user,noauto  0       0

I enclose a sketch of patch that can change that.

But that should confirm Daniel.


Greetings.




>
> --
> Colin Watson                                       [cjwat...@debian.org]
>
>
>
> --
> To UNSUBSCRIBE, email to debian-live-requ...@lists.debian.org
> with a subject of "unsubscribe". Trouble? Contact
> listmas...@lists.debian.org
> Archive: http://lists.debian.org/20110126124548.ga7...@master.debian.org
>
>


-- 
José A. González

Siempre GNU Linux-libre.
--- fstab_removable_media_entries	2011-01-19 22:00:28.000000000 +0100
+++ mio-50fstab_removable_media_entries	2011-01-21 13:10:09.000000000 +0100
@@ -1,5 +1,7 @@
 #!/bin/sh
 
+set -x
+
 [ -f /target/etc/fstab ] || exit 0
 
 MEDIA=/media # or MEDIA='' to make directories in /
@@ -48,8 +50,10 @@
 	done
 }
 
-CDDEV=$(grep /cdrom /proc/mounts | cut -d ' ' -f 1 | grep -v ^/dev/loop)
-if [ -n "$CDDEV" ]; then
+CDDEV=$(grep /cdrom /proc/mounts | cut -d ' ' -f 1 | grep -v ^/dev/loop )
+salida=$(grep /cdrom /proc/mounts | cut -d ' ' -f 3 )
+
+if [ -n "$CDDEV" ] && [ $salida != vfat ]; then	
 	MAPCDDEV=$(mapdevfs $CDDEV)
 else
 	MAPCDDEV=''

Reply via email to