From: Christian Franke <Christian.Franke@t-online.de>
To: The development of GRUB 2 <grub-devel@gnu.org>
Subject: Re: [PATCH] mkdevicemap for Cygwin
Date: Fri, 28 Dec 2007 16:43:14 +0100 [thread overview]
Message-ID: <47751992.9030008@t-online.de> (raw)
In-Reply-To: <20071206121504.GF13758@thorin>
[-- Attachment #1: Type: text/plain, Size: 1189 bytes --]
Robert Millan wrote:
> On Sun, Nov 18, 2007 at 07:40:15PM +0100, Christian Franke wrote:
>
>> No, it did not work because check_device() returned 1 ("exists") on
>> (*name == 0). This results in 8 bogus "(hd N)\t\n" lines and wrong N for
>> the real devices.
>>
>> Yes, it would work now, because the patch also fixes this bug :-)
>>
>
> Ok, so in that case you don't need...
>
>
>> +#ifndef __CYGWIN__
>> ...
>> +#ifndef __CYGWIN__
>> ...
>> +#endif /* __CYGWIN__ */
>>
>
> ...because you already fixed the problem in:
>
>
>> - /* If DEVICE is empty, just return 1. */
>> + /* If DEVICE is empty, just return error. */
>> if (*device == 0)
>> - return 1;
>> -
>> + return 0;
>>
>
> ?
>
New version of the patch is attached.
Christian
2007-12-28 Christian Franke <franke@computer.org>
* util/grub-mkdevicemap.c (get_floppy_disk_name) [__CYGWIN__]:
Add Cygwin device names.
(get_ide_disk_name) [__CYGWIN__]: Likewise.
(get_scsi_disk_name) [__CYGWIN__]: Likewise.
(check_device): Add static.
Return error instead of success on empty name.
(make_device_map): Move label inside linux specific code to
prevent compiler warning.
[-- Attachment #2: grub2-mkdevicemap-Cygwin-2.patch --]
[-- Type: text/x-patch, Size: 1982 bytes --]
--- grub2.orig/util/grub-mkdevicemap.c 2007-12-25 23:15:25.750000000 +0100
+++ grub2/util/grub-mkdevicemap.c 2007-12-28 16:14:25.437500000 +0100
@@ -166,6 +166,9 @@ get_floppy_disk_name (char *name, int un
#elif defined(__QNXNTO__)
/* QNX RTP */
sprintf (name, "/dev/fd%d", unit);
+#elif defined(__CYGWIN__)
+ /* Cygwin */
+ sprintf (name, "/dev/fd%d", unit);
#else
# warning "BIOS floppy drives cannot be guessed in your operating system."
/* Set NAME to a bogus string. */
@@ -207,6 +210,10 @@ get_ide_disk_name (char *name, int unit)
/* Actually, QNX RTP doesn't distinguish IDE from SCSI, so this could
contain SCSI disks. */
sprintf (name, "/dev/hd%d", unit);
+#elif defined(__CYGWIN__)
+ /* Cygwin emulates all disks as /dev/sdX. */
+ (void) unit;
+ *name = 0;
#else
# warning "BIOS IDE drives cannot be guessed in your operating system."
/* Set NAME to a bogus string. */
@@ -248,6 +255,9 @@ get_scsi_disk_name (char *name, int unit
/* QNX RTP doesn't distinguish SCSI from IDE, so it is better to
disable the detection of SCSI disks here. */
*name = 0;
+#elif defined(__CYGWIN__)
+ /* Cygwin emulates all disks as /dev/sdX. */
+ sprintf (name, "/dev/sd%c", unit + 'a');
#else
# warning "BIOS SCSI drives cannot be guessed in your operating system."
/* Set NAME to a bogus string. */
@@ -277,15 +287,15 @@ get_i2o_disk_name (char *name, char unit
/* Check if DEVICE can be read. If an error occurs, return zero,
otherwise return non-zero. */
-int
+static int
check_device (const char *device)
{
char buf[512];
FILE *fp;
- /* If DEVICE is empty, just return 1. */
+ /* If DEVICE is empty, just return error. */
if (*device == 0)
- return 1;
+ return 0;
fp = fopen (device, "r");
if (! fp)
@@ -513,9 +523,10 @@ make_device_map (const char *device_map,
}
}
}
-#endif /* __linux__ */
finish:
+#endif /* __linux__ */
+
if (fp != stdout)
fclose (fp);
}
next prev parent reply other threads:[~2007-12-28 15:43 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-11-13 20:42 [PATCH] mkdevicemap for Cygwin Christian Franke
2007-11-18 6:24 ` Robert Millan
2007-11-18 18:40 ` Christian Franke
2007-11-18 11:30 ` Marco Gerards
2007-11-18 18:46 ` Christian Franke
2007-12-06 12:15 ` Robert Millan
2007-12-06 13:08 ` Christian Franke
2007-12-28 15:43 ` Christian Franke [this message]
2008-01-23 11:40 ` Marco Gerards
2008-01-23 11:45 ` Robert Millan
2008-01-23 12:22 ` Marco Gerards
2008-01-23 20:40 ` Christian Franke
2008-04-24 20:06 ` Marco Gerards
2008-05-05 21:26 ` Christian Franke
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=47751992.9030008@t-online.de \
--to=christian.franke@t-online.de \
--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.