Re: [Fedora-livecd-list] auto-biarch (x86_64 + i686) LiveDVD patch + ISO

2009-06-23 Thread Jan Kratochvil
On Tue, 23 Jun 2009 16:22:07 +0200, Bill Nottingham wrote:
 DVD shouldn't be an issue for the non-Games live spins yet, should it?

* FireFox + OpenOffice.org are (IMO) the two most visible F/OSS applications.

* LiveCD is there (also / primarily?) to make a preview of what is F/OSS.

= The major F/OSS application success is omitted because of ... why?

There ware recent discussions people no longer download CD media; but to say
the truth I do not find a clear consensus.
BitTorrent downloaders of the split CD sets have been decreasing.
F9: 6.32%. F10 4.58% F11 so far: 2.2%. 
+
Do we need split media CDs for F12?

https://www.redhat.com/archives/fedora-devel-list/2009-June/thread.html#00953
+
https://fedoraproject.org/wiki/F12_No_Split_CDs_Proposal


Regards,
Jan

--
Fedora-livecd-list mailing list
Fedora-livecd-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-livecd-list


Re: [Fedora-livecd-list] auto-biarch (x86_64 + i686) LiveDVD patch + ISO

2009-06-23 Thread Bruno Wolff III
On Tue, Jun 23, 2009 at 10:22:07 -0400,
  Bill Nottingham nott...@redhat.com wrote:
 Jeroen van Meeuwen (kana...@kanarip.com) said: 
  So yeah, the problem we get with i386/x86_64 hybrids is more that we  
  would reduce the available size to either of the Live images to half a  
  CD or half a DVD. Some of our spins fit on half a DVD, but not half a  
  CD. If some spins have separate media for each arch, and others do not,  
  then that may work confusing.
 
  That said though, I don't think we've had this kinda thing discussed or  
  decided upon... so it's a good point ;-)
 
 I think it's safe to assume that attempting to fit any 'real' biarch
 spin on CD would be a futile exercise. DVD shouldn't be an issue for
 the non-Games live spins yet, should it?

A biarch rescue image would be useful. For some kinds of recoveries you need
to use a rescue image matching the arch of the system you are trying to fix.
I got bit by this during the F11 devel cycle.

--
Fedora-livecd-list mailing list
Fedora-livecd-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-livecd-list


[Fedora-livecd-list] [PATCH] don't need to checkMBR() for loop devices

2009-06-23 Thread Martin Dengler
livecd-iso-to-disk.sh doesn't do the right thing w.r.t. loop devices
and MBR detection.  I don't think this is intentional, but it
currently requires loop devices to start with an MBR, by virtue of
getdisk() being a NOOP for loop devices and checkMBR assuming that the
disk must need an MBR.  checkMBR() should just ignore loop devices
like other key functions do.
---
 livecd-iso-to-disk.sh |3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/livecd-iso-to-disk.sh b/livecd-iso-to-disk.sh
index 672e6db..0efef58 100755
--- a/livecd-iso-to-disk.sh
+++ b/livecd-iso-to-disk.sh
@@ -93,6 +93,9 @@ resetMBR() {
 }
 
 checkMBR() {
+if [[ $DEV =~ /dev/loop* ]]; then
+   return 0
+fi
 getdisk $1
 
 bs=$(mktemp /tmp/bs.XX)
-- 
1.6.0.6

--
Fedora-livecd-list mailing list
Fedora-livecd-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-livecd-list


[Fedora-livecd-list] tools/livecd-iso-to-disk.sh

2009-06-23 Thread Jeremy Katz
 tools/livecd-iso-to-disk.sh |3 +++
 1 file changed, 3 insertions(+)

New commits:
commit d2de65a9ee73af0d001660ee8b2939d88f4f83fe
Author: Martin Dengler mar...@martindengler.com
Date:   Tue Jun 23 21:59:16 2009 +0100

don't need to checkMBR() for loop devices

livecd-iso-to-disk.sh doesn't do the right thing w.r.t. loop devices
and MBR detection.  I don't think this is intentional, but it
currently requires loop devices to start with an MBR, by virtue of
getdisk() being a NOOP for loop devices and checkMBR assuming that the
disk must need an MBR.  checkMBR() should just ignore loop devices
like other key functions do.

diff --git a/tools/livecd-iso-to-disk.sh b/tools/livecd-iso-to-disk.sh
index 672e6db..0efef58 100755
--- a/tools/livecd-iso-to-disk.sh
+++ b/tools/livecd-iso-to-disk.sh
@@ -93,6 +93,9 @@ resetMBR() {
 }
 
 checkMBR() {
+if [[ $DEV =~ /dev/loop* ]]; then
+   return 0
+fi
 getdisk $1
 
 bs=$(mktemp /tmp/bs.XX)


--
Fedora-livecd-list mailing list
Fedora-livecd-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-livecd-list


Re: [Fedora-livecd-list] [PATCH] don't need to checkMBR() for loop devices

2009-06-23 Thread Jeremy Katz
On Tuesday, June 23 2009, Martin Dengler said:
 livecd-iso-to-disk.sh doesn't do the right thing w.r.t. loop devices
 and MBR detection.  I don't think this is intentional, but it
 currently requires loop devices to start with an MBR, by virtue of
 getdisk() being a NOOP for loop devices and checkMBR assuming that the
 disk must need an MBR.  checkMBR() should just ignore loop devices
 like other key functions do.

Thanks, applied

Jeremy

--
Fedora-livecd-list mailing list
Fedora-livecd-list@redhat.com
https://www.redhat.com/mailman/listinfo/fedora-livecd-list