2012-03-17 18:10:58 +01:00
|
|
|
#include <getopt.h>
|
2006-12-07 00:25:39 +01:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2010-12-09 21:56:22 +01:00
|
|
|
#include <fcntl.h>
|
|
|
|
|
2012-03-17 18:10:58 +01:00
|
|
|
#include "c.h"
|
|
|
|
#include "nls.h"
|
2010-12-09 21:56:22 +01:00
|
|
|
#include "partx.h"
|
2012-03-17 18:10:58 +01:00
|
|
|
#include "strutils.h"
|
2006-12-07 00:25:39 +01:00
|
|
|
|
2017-06-19 20:52:50 +02:00
|
|
|
static void __attribute__((__noreturn__)) usage(void)
|
2012-03-17 18:10:58 +01:00
|
|
|
{
|
2017-06-19 20:52:50 +02:00
|
|
|
FILE *out = stdout;
|
2012-03-17 18:10:58 +01:00
|
|
|
fputs(USAGE_HEADER, out);
|
|
|
|
fprintf(out, _(" %s <disk device> <partition number>\n"),
|
|
|
|
program_invocation_short_name);
|
2014-12-22 22:57:17 +01:00
|
|
|
|
|
|
|
fputs(USAGE_SEPARATOR, out);
|
|
|
|
fputs(_("Tell the kernel to forget about a specified partition.\n"), out);
|
|
|
|
|
2012-03-17 18:10:58 +01:00
|
|
|
fputs(USAGE_OPTIONS, out);
|
2017-06-29 15:52:16 +02:00
|
|
|
printf(USAGE_HELP_OPTIONS(16));
|
|
|
|
printf(USAGE_MAN_TAIL("delpart(8)"));
|
2017-06-19 20:52:50 +02:00
|
|
|
exit(EXIT_SUCCESS);
|
2012-03-17 18:10:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
int c, fd;
|
|
|
|
|
|
|
|
static const struct option longopts[] = {
|
2017-02-11 20:23:26 +00:00
|
|
|
{"help", no_argument, NULL, 'h'},
|
|
|
|
{"version", no_argument, NULL, 'V'},
|
|
|
|
{NULL, 0, NULL, 0},
|
2012-03-17 18:10:58 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
setlocale(LC_ALL, "");
|
|
|
|
bindtextdomain(PACKAGE, LOCALEDIR);
|
|
|
|
textdomain(PACKAGE);
|
|
|
|
|
|
|
|
while ((c = getopt_long(argc, argv, "Vh", longopts, NULL)) != -1)
|
|
|
|
switch (c) {
|
|
|
|
case 'V':
|
2019-04-16 15:14:13 +02:00
|
|
|
print_version(EXIT_SUCCESS);
|
2012-03-17 18:10:58 +01:00
|
|
|
case 'h':
|
2017-06-19 20:52:50 +02:00
|
|
|
usage();
|
2012-03-17 18:10:58 +01:00
|
|
|
default:
|
2016-12-19 13:13:34 +01:00
|
|
|
errtryhelp(EXIT_FAILURE);
|
2012-03-17 18:10:58 +01:00
|
|
|
}
|
|
|
|
|
2017-06-19 20:52:50 +02:00
|
|
|
if (argc != 3) {
|
|
|
|
warnx(_("not enough arguments"));
|
|
|
|
errtryhelp(EXIT_FAILURE);
|
|
|
|
}
|
2012-03-30 16:57:47 +02:00
|
|
|
|
|
|
|
|
2012-03-17 18:10:58 +01:00
|
|
|
if ((fd = open(argv[1], O_RDONLY)) < 0)
|
2012-07-15 10:39:57 +02:00
|
|
|
err(EXIT_FAILURE, _("cannot open %s"), argv[1]);
|
2012-03-17 18:10:58 +01:00
|
|
|
|
|
|
|
if (partx_del_partition(fd,
|
2012-05-15 17:44:51 +02:00
|
|
|
strtou32_or_err(argv[2], _("invalid partition number argument"))))
|
2012-03-30 16:57:47 +02:00
|
|
|
err(EXIT_FAILURE, _("failed to remove partition"));
|
2012-03-17 18:10:58 +01:00
|
|
|
|
|
|
|
return EXIT_SUCCESS;
|
2006-12-07 00:25:39 +01:00
|
|
|
}
|