blob: 11bd66ebf31ac8dc34f5817dd24164376e3dd47d [file] [log] [blame]
Matt Kraai83788da2002-03-20 17:38:37 +00001/*
2 * Mini losetup implementation for busybox
3 *
4 * Copyright (C) 2002 Matt Kraai.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 *
20 */
21
22#include <getopt.h>
23#include <stdlib.h>
24
25#include "busybox.h"
26
27int
28losetup_main (int argc, char **argv)
29{
Matt Kraai83788da2002-03-20 17:38:37 +000030 int offset = 0;
Matt Kraai83788da2002-03-20 17:38:37 +000031
Rob Landley6a6798b2005-08-10 20:35:54 +000032 /* This will need a "while(getopt()!=-1)" loop when we can have more than
33 one option, but for now we can't. */
34 switch(getopt(argc,argv, "do:")) {
35 case 'd':
36 /* detach takes exactly one argument */
37 if(optind+1==argc)
38 return del_loop(argv[optind]) ? EXIT_SUCCESS : EXIT_FAILURE;
39 break;
Matt Kraai83788da2002-03-20 17:38:37 +000040
Rob Landley6a6798b2005-08-10 20:35:54 +000041 case 'o':
42 offset = bb_xparse_number (optarg, NULL);
43 /* Fall through to do the losetup */
44 case -1:
45 /* losetup takes two argument:, loop_device and file */
46 if(optind+2==argc)
47 return set_loop(&argv[optind], argv[optind + 1], offset)<0
48 ? EXIT_FAILURE : EXIT_SUCCESS;
49 break;
50 }
51 bb_show_usage();
52 return EXIT_FAILURE;
Matt Kraai83788da2002-03-20 17:38:37 +000053}