wok view grub4dos/stuff/dev_partition.diff @ rev 19153
udisks2: mount to "/media/", Up slitaz-tools*(978)
author | Xander Ziiryanoff <psychomaniak@xakep.ru> |
---|---|
date | Mon May 23 23:30:37 2016 +0300 (2016-05-23) |
parents | |
children |
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,13 @@
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 + fd = open (dev, O_RDWR);
11 + }
12 +
13 + if (fd < 0)
14 + {
15 errnum = ERR_NO_PART;
16 return 0;
17 }