[bug #13239] Patch for hide-unhide feature to work on Windows 2K and XP

2005-06-20 Thread Reshat Sabiq
. ___ Additional Item Attachment: File name: grub-Windows-hide-unhide.patch Size:1 KB patch for hide-unhide functionality to work on Windows 2000 and XP (based on 0.97). http://savannah.gnu.org/bugs/download.php?item_id=13239item_file_id=2619

[bug #13239] Patch for hide-unhide feature to work on Windows 2K and XP

2005-05-31 Thread Reshat Sabiq
URL: http://savannah.gnu.org/bugs/?func=detailitemitem_id=13239 Summary: Patch for hide-unhide feature to work on Windows 2K and XP Project: GNU GRUB Submitted by: ultranet Submitted on: Tue 05/31/2005 at 15:59 Category

Re: [Bug-grub] Re: hide/unhide

2001-09-05 Thread Jason Thomas
I think I must have forgotten to attach the patch! On Fri, Aug 31, 2001 at 10:16:33AM +1000, Jason Thomas wrote: Okay attached is a patch to fix this, it will defenetly handle logical partitions now, and possibly other types. Can someone check it over and commit when they have time!

Re: hide/unhide

2001-08-30 Thread Yoshinori K. Okuji
From: Jason Thomas [EMAIL PROTECTED] Subject: hide/unhide Date: Thu, 30 Aug 2001 13:18:38 +1000 I'm trying to figure out why the limitation to four partitions, when logical partitions are just as valid, fdisk is able to set the the partition type to hidden! That code was a mostly quick-hack

Re: hide/unhide

2001-08-30 Thread Mario Klebsch
-BEGIN PGP SIGNED MESSAGE- On Thursday, 30. August 2001 13:12, Yoshinori K. Okuji wrote: That code was a mostly quick-hack, and at that time, we didn't have the new partition table analyzer implemented by me, so it was difficult to support logical partitions. I don't know why you want

RE: hide/unhide

2001-08-30 Thread Ian Jones
difficult to support logical partitions. I don't know why you want to hide any logical partitions, but now it is easy to add support for It's the problem I was having to. Partition 4 was logical so it listed it and then said it doesn't exist when I tried to hide it. I needed to hide it because

Re: hide/unhide

2001-08-30 Thread Jason Thomas
Okay attached is a patch to fix this, it will defenetly handle logical partitions now, and possibly other types. Can someone check it over and commit when they have time! Thanks On Thu, Aug 30, 2001 at 08:12:17PM +0900, Yoshinori K. Okuji wrote: That code was a mostly quick-hack, and at that

hide/unhide

2001-08-29 Thread Jason Thomas
anyone farmiliar with this code: /* Hide/Unhide CURRENT_PARTITION. */ int set_partition_hidden_flag (int hidden) { char mbr[512]; if (current_drive 0x80) { int part = current_partition 16; if (part 3) { errnum = ERR_NO_PART; return 0

Re: hide/unhide

2001-08-29 Thread Daniel Pittman
On Thu, 30 Aug 2001, Jason Thomas wrote: anyone farmiliar with this code: /* Hide/Unhide CURRENT_PARTITION. */ int set_partition_hidden_flag (int hidden) { char mbr[512]; [...] if (! rawread (current_drive, 0, 0, SECTOR_SIZE, mbr)) return 0; [...] I'm trying

Re: [Bug-grub] Re: hide/unhide

2001-08-29 Thread Jason Thomas
This explanation sound feasible to me! Thanks. On Thu, Aug 30, 2001 at 01:35:12PM +1000, Daniel Pittman wrote: You do know that Extended Partitions are implemented by putting a partition table at the start of a normal partition, because there is a fixed limit of four partitions in an MS-DOS

Re: Hide/Unhide

2001-01-07 Thread OKUJI Yoshinori
Laurent, please send e-mail to bug-grub instead of me. From: "Laurent Dieudonne (aon)" [EMAIL PROTECTED] Subject: Re: Hide/Unhide Date: Sun, 07 Jan 2001 15:02:08 +0100 I need to hide my logical partitions to avoid Windows to access them. I've installed Win98 two times on two

Hide/Unhide

2001-01-06 Thread Laurent Dieudonne (aon)
Hi ! Congratulation for GRUB, it is really powerfull and flexible !! Just to signal one bug (I think it is !) in the version 0.5.96.1 : the commands 'hide' and 'unhide' raise an error when I try to hide/unhide my logical partitions : "error 22 : No such partition", although they exist

Re: Hide/Unhide

2001-01-06 Thread OKUJI Yoshinori
From: "Laurent Dieudonne (aon)" [EMAIL PROTECTED] Subject: Hide/Unhide Date: Sat, 06 Jan 2001 15:25:55 +0100 Just to signal one bug (I think it is !) in the version 0.5.96.1 : the commands 'hide' and 'unhide' raise an error when I try to hide/unhide my logical partitions :

Re: hide/unhide support (fwd)

1999-08-27 Thread Martin Hamilton
: s8killip owned process doing -bs | Old-Date: Wed, 18 Aug 1999 12:57:33 -0400 (EDT) | From: KILLIPS EDWARD T [EMAIL PROTECTED] | X-Sender: s8killip@grog | To: [EMAIL PROTECTED] | Subject: Re: hide/unhide support | In-Reply-To: Pine.GSO.4.10.9908160214290.1464-20@grog | Message-ID: Pine.GSO

hide/unhide support new version

1999-08-26 Thread Edward Killips
Here is a version using the cvs sources with device support. hide=(hd0,0), unhide=(hd0,0). Ed Killips diff -ur grub.cvs/ChangeLog grub/ChangeLog --- grub.cvs/ChangeLog Wed Aug 25 03:46:52 1999 +++ grub/ChangeLog Thu Aug 26 03:25:23 1999 @@ -1,3 +1,13 @@ +1999-08-26 Edward Killips

Re: hide/unhide support

1999-08-25 Thread OKUJI Yoshinori
From: KILLIPS EDWARD T [EMAIL PROTECTED] Subject: hide/unhide support Date: Mon, 23 Aug 1999 01:28:42 -0400 (EDT) The enclosed patch adds hide= and unhide= commands. I don't like this patch, because the commands do not understand the canonical device syntax (i.e. (hd0)). Can you rewrite

hide/unhide support

1999-08-22 Thread KILLIPS EDWARD T
The enclosed patch adds hide= and unhide= commands. diff -u -r grub-0.5.92/ChangeLog grub/ChangeLog --- grub-0.5.92/ChangeLog Mon Jul 26 18:57:52 1999 +++ grub/ChangeLog Mon Aug 16 01:50:27 1999 @@ -1,3 +1,12 @@ +1999-08-16 Edward Killips [EMAIL PROTECTED] + +