wok-stable view grub/stuff/dev_partition.diff @ rev 7680
up:fcitx-4.0.1 & remove table modules
author | fireflyoo <lufeng369@gmail.com> |
---|---|
date | Fri Dec 17 20:03:29 2010 +0000 (2010-12-17) |
parents | |
children | 5af4ef0cffa1 |
line source
1 Partition can be ${dev}$num or ${dev}p$num
2 --- grub-0.97/lib/device.c
3 +++ grub-0.97/lib/device.c
4 @@ -867,6 +867,12 @@
5 fd = open (dev, O_RDWR);
6 if (fd < 0)
7 {
8 + strcpy (dev, map[drive]);
9 + sprintf (dev + strlen(dev), "p%d", ((partition >> 16) & 0xFF) + 1);
10 + }
11 +
12 + if (fd < 0)
13 + {
14 errnum = ERR_NO_PART;
15 return 0;
16 }