Re: [RFCi,patch] Consolidate arm partitioning

2009-02-15 Thread Martin Michlmayr
* Riku Voipio  [2008-08-23 00:05]:
> All *supported* arm/armel platforms use "msdos" for hard disks[1], and
> any modern arm system would too. So I suggest defaulting to msdos,
> and adding any exceptions if found.

Applied, thanks.
-- 
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: [RFCi,patch] Consolidate arm partitioning

2008-09-26 Thread Martin Michlmayr
* Frans Pop <[EMAIL PROTECTED]> [2008-09-19 16:41]:
> > What's the status for this patch?
> 
> It was probably forgotten because it was only sent to the mailing list and 
> not filed against the appropriate package. Please use the BTS when 
> submitting patches.
> 
> Preferably it should be applied or at least commented on by the D-I arm 
> porter (tbm) who is on VAC ATM.

I commented already and though that Riku would apply it.

Anyway, d-i SVN is frozen right now, but I'll apply this patch when
it's open for commits again.
-- 
Martin Michlmayr
http://www.cyrius.com/


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



Re: [RFCi,patch] Consolidate arm partitioning

2008-09-19 Thread Frans Pop
On Wednesday 17 September 2008, Riku Voipio wrote:
> On Sat, Aug 23, 2008 at 10:39:01AM +0300, Martin Michlmayr wrote:
> > * Riku Voipio <[EMAIL PROTECTED]> [2008-08-23 00:05]:
> > > All *supported* arm/armel platforms use "msdos" for hard disks[1],
> > > and any modern arm system would too. So I suggest defaulting to
> > > msdos, and adding any exceptions if found.
> >
> > Works for me.
>
> What's the status for this patch?

It was probably forgotten because it was only sent to the mailing list and 
not filed against the appropriate package. Please use the BTS when 
submitting patches.

Preferably it should be applied or at least commented on by the D-I arm 
porter (tbm) who is on VAC ATM.

Cheers,
FJP


signature.asc
Description: This is a digitally signed message part.


Re: [RFCi,patch] Consolidate arm partitioning

2008-09-17 Thread Riku Voipio
On Sat, Aug 23, 2008 at 10:39:01AM +0300, Martin Michlmayr wrote:
> * Riku Voipio <[EMAIL PROTECTED]> [2008-08-23 00:05]:
> > All *supported* arm/armel platforms use "msdos" for hard disks[1], and
> > any modern arm system would too. So I suggest defaulting to msdos,
> > and adding any exceptions if found.

> Works for me.

What's the status for this patch?

-- 
"rm -rf" only sounds scary if you don't have backups


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



Re: [RFCi,patch] Consolidate arm partitioning

2008-08-23 Thread Martin Michlmayr
* Riku Voipio <[EMAIL PROTECTED]> [2008-08-23 00:05]:
> All *supported* arm/armel platforms use "msdos" for hard disks[1], and
> any modern arm system would too. So I suggest defaulting to msdos,
> and adding any exceptions if found.

Works for me.
-- 
Martin Michlmayr
http://www.cyrius.com/


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



[RFCi,patch] Consolidate arm partitioning

2008-08-22 Thread Riku Voipio
Noticed while testing using d-i to install to arm subarch
not supported by debian, that a relatively scary.

 "This partitioner doesn't have information about the default type of
 partition tables.."

Warning is thrown, and then user needs to select the partition type.

All *supported* arm/armel platforms use "msdos" for hard disks[1], and
any modern arm system would too. So I suggest defaulting to msdos,
and adding any exceptions if found.

-Riku

[1] Installation to raw flash via mtd subsystem would be a different
story. but that's not relevant as we don't support installing to mtd.
Also all of the flash storages large enough to fit the bloat of debian
are not raw flash, but something that attempts to emulate a
hard disk/SD card/usb thumbdrive...


-- 
"rm -rf" only sounds scary if you don't have backups
Index: lib/disk-label.sh
===
--- lib/disk-label.sh   (revision 55159)
+++ lib/disk-label.sh   (working copy)
@@ -18,34 +18,8 @@
else
echo msdos
fi;;
-   arm|armel)
-   case "$sub" in
-   iop32x)
-   echo msdos;;
-   iop33x)
-   echo msdos;;
-   ixp4xx)
-   echo msdos;;
-   orion5x)
-   echo msdos;;
-   riscstation)
-   echo msdos;;
-   netwinder)
-   echo msdos;;
-   ads)
-   echo msdos;;
-   versatile)
-   echo msdos;;
-   *)
-   echo UNKNOWN;;
-   esac;;
-   armeb)
-   case "$sub" in
-   ixp4xx)
-   echo msdos;;
-   *)
-   echo UNKNOWN;;
-   esac;;
+   arm|armeb|armel)
+   echo msdos;;
amd64)
case "$sub" in
mac)