* [PATCH]: grub: Add Sun partition support to grub-probe and grub-fstest.
@ 2009-04-13 6:53 David Miller
2009-04-13 7:40 ` Chip Panarchy
2009-04-13 12:51 ` Pavel Roskin
0 siblings, 2 replies; 8+ messages in thread
From: David Miller @ 2009-04-13 6:53 UTC (permalink / raw)
To: grub-devel
Should be self-explanatory, these tools will be used on sparc64 just
like they are on i386-pc
2009-04-12 David S. Miller <davem@davemloft.net>
* conf/common.rmk (grub_probe_SOURCES): Add Sun partition module.
(grub_fstest_SOURCES): Likewise.
---
conf/common.rmk | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/conf/common.rmk b/conf/common.rmk
index b0a78b0..185779c 100644
--- a/conf/common.rmk
+++ b/conf/common.rmk
@@ -19,7 +19,7 @@ grub_probe_SOURCES = util/grub-probe.c \
fs/ntfs.c fs/ntfscomp.c fs/reiserfs.c fs/sfs.c \
fs/ufs.c fs/xfs.c fs/afs.c fs/tar.c \
\
- partmap/pc.c partmap/apple.c partmap/gpt.c \
+ partmap/pc.c partmap/apple.c partmap/sun.c partmap/gpt.c\
kern/fs.c kern/env.c fs/fshelp.c \
disk/raid.c disk/mdraid_linux.c disk/lvm.c grub_probe_init.c
@@ -40,7 +40,8 @@ grub_fstest_SOURCES = util/grub-fstest.c util/hostfs.c util/misc.c \
fs/ntfs.c fs/ntfscomp.c fs/reiserfs.c fs/sfs.c \
fs/ufs.c fs/xfs.c fs/afs.c fs/tar.c \
\
- kern/partition.c partmap/pc.c partmap/apple.c partmap/gpt.c \
+ kern/partition.c partmap/pc.c partmap/apple.c partmap/sun.c \
+ partmap/gpt.c \
kern/fs.c kern/env.c fs/fshelp.c disk/raid.c \
disk/raid5_recover.c disk/raid6_recover.c \
disk/mdraid_linux.c disk/dmraid_nvidia.c disk/lvm.c \
--
1.6.2.3
^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH]: grub: Add Sun partition support to grub-probe and grub-fstest.
2009-04-13 6:53 [PATCH]: grub: Add Sun partition support to grub-probe and grub-fstest David Miller
@ 2009-04-13 7:40 ` Chip Panarchy
2009-04-13 7:43 ` Felix Zielcke
2009-04-13 7:48 ` David Miller
2009-04-13 12:51 ` Pavel Roskin
1 sibling, 2 replies; 8+ messages in thread
From: Chip Panarchy @ 2009-04-13 7:40 UTC (permalink / raw)
To: The development of GRUB 2
Hello
When you mention 'Sun Partition' what file-system are you specifying?
ZFS?
UFS?
On Mon, Apr 13, 2009 at 4:53 PM, David Miller <davem@davemloft.net> wrote:
>
> Should be self-explanatory, these tools will be used on sparc64 just
> like they are on i386-pc
>
> 2009-04-12 David S. Miller <davem@davemloft.net>
>
> * conf/common.rmk (grub_probe_SOURCES): Add Sun partition module.
> (grub_fstest_SOURCES): Likewise.
> ---
> conf/common.rmk | 5 +++--
> 1 files changed, 3 insertions(+), 2 deletions(-)
>
> diff --git a/conf/common.rmk b/conf/common.rmk
> index b0a78b0..185779c 100644
> --- a/conf/common.rmk
> +++ b/conf/common.rmk
> @@ -19,7 +19,7 @@ grub_probe_SOURCES = util/grub-probe.c \
> fs/ntfs.c fs/ntfscomp.c fs/reiserfs.c fs/sfs.c \
> fs/ufs.c fs/xfs.c fs/afs.c fs/tar.c \
> \
> - partmap/pc.c partmap/apple.c partmap/gpt.c \
> + partmap/pc.c partmap/apple.c partmap/sun.c partmap/gpt.c\
> kern/fs.c kern/env.c fs/fshelp.c \
> disk/raid.c disk/mdraid_linux.c disk/lvm.c grub_probe_init.c
>
> @@ -40,7 +40,8 @@ grub_fstest_SOURCES = util/grub-fstest.c util/hostfs.c util/misc.c \
> fs/ntfs.c fs/ntfscomp.c fs/reiserfs.c fs/sfs.c \
> fs/ufs.c fs/xfs.c fs/afs.c fs/tar.c \
> \
> - kern/partition.c partmap/pc.c partmap/apple.c partmap/gpt.c \
> + kern/partition.c partmap/pc.c partmap/apple.c partmap/sun.c \
> + partmap/gpt.c \
> kern/fs.c kern/env.c fs/fshelp.c disk/raid.c \
> disk/raid5_recover.c disk/raid6_recover.c \
> disk/mdraid_linux.c disk/dmraid_nvidia.c disk/lvm.c \
> --
> 1.6.2.3
>
>
>
> _______________________________________________
> Grub-devel mailing list
> Grub-devel@gnu.org
> http://lists.gnu.org/mailman/listinfo/grub-devel
>
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH]: grub: Add Sun partition support to grub-probe and grub-fstest.
2009-04-13 7:40 ` Chip Panarchy
@ 2009-04-13 7:43 ` Felix Zielcke
2009-04-13 7:49 ` Chip Panarchy
2009-04-13 7:48 ` David Miller
1 sibling, 1 reply; 8+ messages in thread
From: Felix Zielcke @ 2009-04-13 7:43 UTC (permalink / raw)
To: The development of GRUB 2
Am Montag, den 13.04.2009, 17:40 +1000 schrieb Chip Panarchy:
> Hello
>
> When you mention 'Sun Partition' what file-system are you specifying?
>
> ZFS?
> UFS?
>
He surely meant Sun partition table format and not a filesystem. Grub2
doestn't support ZFS
Sun seems to have it's own partition table format just like pc (or
msdos) /gpt/apple/amiga/acorn which grub2 supports.
--
Felix Zielcke
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH]: grub: Add Sun partition support to grub-probe and grub-fstest.
2009-04-13 7:43 ` Felix Zielcke
@ 2009-04-13 7:49 ` Chip Panarchy
2009-04-13 8:54 ` phcoder
0 siblings, 1 reply; 8+ messages in thread
From: Chip Panarchy @ 2009-04-13 7:49 UTC (permalink / raw)
To: The development of GRUB 2
Ah, I see.
Oh, thanks for clearing that up also, David.
Well, I'll make another topic soon, once I've gotten FreeBSDs 64-bit
kernel to boot directly from GRUB2, requesting support for ZFS.
Thanks,
Panarchy
On Mon, Apr 13, 2009 at 5:43 PM, Felix Zielcke <fzielcke@z-51.de> wrote:
> Am Montag, den 13.04.2009, 17:40 +1000 schrieb Chip Panarchy:
>> Hello
>>
>> When you mention 'Sun Partition' what file-system are you specifying?
>>
>> ZFS?
>> UFS?
>>
>
> He surely meant Sun partition table format and not a filesystem. Grub2
> doestn't support ZFS
> Sun seems to have it's own partition table format just like pc (or
> msdos) /gpt/apple/amiga/acorn which grub2 supports.
> --
> Felix Zielcke
>
>
>
> _______________________________________________
> Grub-devel mailing list
> Grub-devel@gnu.org
> http://lists.gnu.org/mailman/listinfo/grub-devel
>
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH]: grub: Add Sun partition support to grub-probe and grub-fstest.
2009-04-13 7:49 ` Chip Panarchy
@ 2009-04-13 8:54 ` phcoder
0 siblings, 0 replies; 8+ messages in thread
From: phcoder @ 2009-04-13 8:54 UTC (permalink / raw)
To: The development of GRUB 2
Please don't start developement of grub-zfs because I'm already doing
some stuff on it. It would be pity to duplicate the work
Chip Panarchy wrote:
> Ah, I see.
>
> Oh, thanks for clearing that up also, David.
>
> Well, I'll make another topic soon, once I've gotten FreeBSDs 64-bit
> kernel to boot directly from GRUB2, requesting support for ZFS.
>
> Thanks,
>
> Panarchy
>
> On Mon, Apr 13, 2009 at 5:43 PM, Felix Zielcke <fzielcke@z-51.de> wrote:
>> Am Montag, den 13.04.2009, 17:40 +1000 schrieb Chip Panarchy:
>>> Hello
>>>
>>> When you mention 'Sun Partition' what file-system are you specifying?
>>>
>>> ZFS?
>>> UFS?
>>>
>> He surely meant Sun partition table format and not a filesystem. Grub2
>> doestn't support ZFS
>> Sun seems to have it's own partition table format just like pc (or
>> msdos) /gpt/apple/amiga/acorn which grub2 supports.
>> --
>> Felix Zielcke
>>
>>
>>
>> _______________________________________________
>> Grub-devel mailing list
>> Grub-devel@gnu.org
>> http://lists.gnu.org/mailman/listinfo/grub-devel
>>
>
>
> _______________________________________________
> Grub-devel mailing list
> Grub-devel@gnu.org
> http://lists.gnu.org/mailman/listinfo/grub-devel
--
Regards
Vladimir 'phcoder' Serbinenko
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH]: grub: Add Sun partition support to grub-probe and grub-fstest.
2009-04-13 7:40 ` Chip Panarchy
2009-04-13 7:43 ` Felix Zielcke
@ 2009-04-13 7:48 ` David Miller
1 sibling, 0 replies; 8+ messages in thread
From: David Miller @ 2009-04-13 7:48 UTC (permalink / raw)
To: grub-devel, forumanarchy
From: Chip Panarchy <forumanarchy@gmail.com>
Date: Mon, 13 Apr 2009 17:40:22 +1000
> Hello
>
> When you mention 'Sun Partition' what file-system are you specifying?
>
> ZFS?
> UFS?
EXT3, but the sun "partition" support has to be there for grub tools
to even get at the filesystems at all.
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH]: grub: Add Sun partition support to grub-probe and grub-fstest.
2009-04-13 6:53 [PATCH]: grub: Add Sun partition support to grub-probe and grub-fstest David Miller
2009-04-13 7:40 ` Chip Panarchy
@ 2009-04-13 12:51 ` Pavel Roskin
2009-04-13 20:36 ` David Miller
1 sibling, 1 reply; 8+ messages in thread
From: Pavel Roskin @ 2009-04-13 12:51 UTC (permalink / raw)
To: The development of GRUB 2
On Sun, 2009-04-12 at 23:53 -0700, David Miller wrote:
> Should be self-explanatory, these tools will be used on sparc64 just
> like they are on i386-pc
Fine with me.
--
Regards,
Pavel Roskin
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2009-04-13 20:36 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-04-13 6:53 [PATCH]: grub: Add Sun partition support to grub-probe and grub-fstest David Miller
2009-04-13 7:40 ` Chip Panarchy
2009-04-13 7:43 ` Felix Zielcke
2009-04-13 7:49 ` Chip Panarchy
2009-04-13 8:54 ` phcoder
2009-04-13 7:48 ` David Miller
2009-04-13 12:51 ` Pavel Roskin
2009-04-13 20:36 ` David Miller
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.