From: Robert Millan <rmh@aybabtu.com>
To: grub-devel@gnu.org
Subject: Re: [PATCH] do not require that device is a partition
Date: Sun, 14 Oct 2007 17:49:11 +0200 [thread overview]
Message-ID: <20071014154911.GA23357@thorin> (raw)
In-Reply-To: <20071006201644.GA8454@thorin>
[-- Attachment #1: Type: text/plain, Size: 234 bytes --]
New patch after IRC discussion with Marco. code + ChangeLog should be
self-explanatory.
--
Robert Millan
<GPLv2> I know my rights; I want my phone call!
<DRM> What use is a phone call, if you are unable to speak?
(as seen on /.)
[-- Attachment #2: disk.diff --]
[-- Type: text/x-diff, Size: 1361 bytes --]
2007-10-14 Robert Millan <rmh@aybabtu.com>
* normal/misc.c (grub_normal_print_device_info): Do not probe for
filesystem when dev->disk is unset.
Do probe for filesystem even when dev->disk->has_partitions is set.
In case a filesystem is found, always report it.
In case it isn't, if dev->disk->has_partitions is set, report that
a partition table was found instead of reporting that no filesystem
could be identified.
diff -pur grub2/normal/misc.c grub2.disk/normal/misc.c
--- grub2/normal/misc.c 2007-07-22 01:32:29.000000000 +0200
+++ grub2.disk/normal/misc.c 2007-10-14 17:41:57.000000000 +0200
@@ -40,7 +40,7 @@ grub_normal_print_device_info (const cha
dev = grub_device_open (name);
if (! dev)
grub_printf ("Filesystem cannot be accessed");
- else if (! dev->disk || ! dev->disk->has_partitions || dev->disk->partition)
+ else if (dev->disk)
{
char *label;
grub_fs_t fs;
@@ -49,7 +49,12 @@ grub_normal_print_device_info (const cha
/* Ignore all errors. */
grub_errno = 0;
- grub_printf ("Filesystem type %s", fs ? fs->name : "unknown");
+ if (fs)
+ grub_printf ("Filesystem type %s", fs->name);
+ else if (! dev->disk->has_partitions || dev->disk->partition)
+ grub_printf ("Unknown filesystem");
+ else
+ grub_printf ("Partition table");
if (fs && fs->label)
{
next prev parent reply other threads:[~2007-10-14 15:49 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-10-05 9:59 [PATCH] do not require that device is a partition Robert Millan
2007-10-05 12:30 ` Robert Millan
2007-10-06 20:16 ` Robert Millan
2007-10-14 15:49 ` Robert Millan [this message]
2007-10-15 7:59 ` Marco Gerards
2007-10-15 11:00 ` Robert Millan
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20071014154911.GA23357@thorin \
--to=rmh@aybabtu.com \
--cc=grub-devel@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.