summaryrefslogtreecommitdiffstats
path: root/rescue/kernel_read_part.c
diff options
context:
space:
mode:
authordamien <damien@mandriva.com>2000-11-28 16:56:52 +0000
committerdamien <damien@mandriva.com>2000-11-28 16:56:52 +0000
commit0880c7ba8ce88e87fa600aeb367a8f88a3ae71e7 (patch)
tree33f7ac905998f9ad6d85090f777ee4c0d0c67032 /rescue/kernel_read_part.c
parentd5c526273db473a7d87a26000585900fc10dda7d (diff)
downloaddrakx-backup-do-not-use-0880c7ba8ce88e87fa600aeb367a8f88a3ae71e7.tar
drakx-backup-do-not-use-0880c7ba8ce88e87fa600aeb367a8f88a3ae71e7.tar.gz
drakx-backup-do-not-use-0880c7ba8ce88e87fa600aeb367a8f88a3ae71e7.tar.bz2
drakx-backup-do-not-use-0880c7ba8ce88e87fa600aeb367a8f88a3ae71e7.tar.xz
drakx-backup-do-not-use-0880c7ba8ce88e87fa600aeb367a8f88a3ae71e7.zip
branch to build the firewall install.topic/unlabeled-1.1.1
Diffstat (limited to 'rescue/kernel_read_part.c')
-rw-r--r--rescue/kernel_read_part.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/rescue/kernel_read_part.c b/rescue/kernel_read_part.c
index 4b9d16d65..279dfe787 100644
--- a/rescue/kernel_read_part.c
+++ b/rescue/kernel_read_part.c
@@ -1,14 +1,7 @@
-#include <unistd.h>
-#include <stdlib.h>
#include <stdio.h>
-#include <sys/types.h>
-#include <sys/ioctl.h>
-#include <sys/stat.h>
-#include <sys/wait.h>
#include <sys/mount.h>
#include <fcntl.h>
-
void die(char *msg)
{
perror(msg);
@@ -18,15 +11,9 @@ void die(char *msg)
void kernel_read(char *dev)
{
int fd;
-
- sync();
if ((fd = open(dev, O_RDONLY)) == -1) die("can't open device");
- sync();
- sleep(1);
ioctl(fd, BLKRRPART, 0);
- sync();
close(fd);
- sync();
}
int main(int argc, char **argv)