diff options
author | kraai <kraai@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2002-03-20 17:38:37 +0000 |
---|---|---|
committer | kraai <kraai@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2002-03-20 17:38:37 +0000 |
commit | bc3b058f3ee3fd783ebf05720b7aa1ba8958bbbe (patch) | |
tree | 0b3bc1a959cb05eed021051978f7af1cc9c3108d | |
parent | 84808b2d3d0a0a50597d8e88790b67380f5a8979 (diff) | |
download | busybox-w32-bc3b058f3ee3fd783ebf05720b7aa1ba8958bbbe.tar.gz busybox-w32-bc3b058f3ee3fd783ebf05720b7aa1ba8958bbbe.tar.bz2 busybox-w32-bc3b058f3ee3fd783ebf05720b7aa1ba8958bbbe.zip |
* include/applets.h (CONFIG_LOSETUP): New.
* include/usage.h (losetup_trivial_usage, losetup_full_usage): New.
* util-linux/Makefile: Add losetup.o.
* util-linux/config.in: Add losetup prompt.
* util-linux/losetup.c: New.
git-svn-id: svn://busybox.net/trunk/busybox@4450 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r-- | include/applets.h | 3 | ||||
-rw-r--r-- | include/usage.h | 9 | ||||
-rw-r--r-- | util-linux/Makefile | 1 | ||||
-rw-r--r-- | util-linux/config.in | 1 | ||||
-rw-r--r-- | util-linux/losetup.c | 58 |
5 files changed, 72 insertions, 0 deletions
diff --git a/include/applets.h b/include/applets.h index 0d310bdc3..6760fc5a1 100644 --- a/include/applets.h +++ b/include/applets.h | |||
@@ -269,6 +269,9 @@ | |||
269 | #ifdef CONFIG_LOGREAD | 269 | #ifdef CONFIG_LOGREAD |
270 | APPLET(logread, logread_main, _BB_DIR_SBIN) | 270 | APPLET(logread, logread_main, _BB_DIR_SBIN) |
271 | #endif | 271 | #endif |
272 | #ifdef CONFIG_LOSETUP | ||
273 | APPLET(losetup, losetup_main, _BB_DIR_SBIN) | ||
274 | #endif | ||
272 | #ifdef CONFIG_LS | 275 | #ifdef CONFIG_LS |
273 | APPLET(ls, ls_main, _BB_DIR_BIN) | 276 | APPLET(ls, ls_main, _BB_DIR_BIN) |
274 | #endif | 277 | #endif |
diff --git a/include/usage.h b/include/usage.h index c4ad0440b..6692aa520 100644 --- a/include/usage.h +++ b/include/usage.h | |||
@@ -989,6 +989,15 @@ | |||
989 | #define logread_full_usage \ | 989 | #define logread_full_usage \ |
990 | "Shows the messages from syslogd (using circular buffer)." | 990 | "Shows the messages from syslogd (using circular buffer)." |
991 | 991 | ||
992 | #define losetup_trivial_usage \ | ||
993 | "[OPTION]... LOOPDEVICE FILE\n" \ | ||
994 | "or: losetup [OPTION]... -d LOOPDEVICE" | ||
995 | #define losetup_full_usage \ | ||
996 | "Associate LOOPDEVICE with FILE.\n\n" \ | ||
997 | "Options:\n" \ | ||
998 | "\t-d\t\tDisassociate LOOPDEVICE.\n" \ | ||
999 | "\t-o OFFSET\tStart OFFSET bytes into FILE.\n" | ||
1000 | |||
992 | #ifdef CONFIG_FEATURE_LS_TIMESTAMPS | 1001 | #ifdef CONFIG_FEATURE_LS_TIMESTAMPS |
993 | #define USAGE_LS_TIMESTAMPS(a) a | 1002 | #define USAGE_LS_TIMESTAMPS(a) a |
994 | #else | 1003 | #else |
diff --git a/util-linux/Makefile b/util-linux/Makefile index 0971acadc..9cd1486b6 100644 --- a/util-linux/Makefile +++ b/util-linux/Makefile | |||
@@ -31,6 +31,7 @@ obj-$(CONFIG_FREERAMDISK) += freeramdisk.o | |||
31 | obj-$(CONFIG_FSCK_MINIX) += fsck_minix.o | 31 | obj-$(CONFIG_FSCK_MINIX) += fsck_minix.o |
32 | obj-$(CONFIG_GETOPT) += getopt.o | 32 | obj-$(CONFIG_GETOPT) += getopt.o |
33 | obj-$(CONFIG_HEXDUMP) += hexdump.o | 33 | obj-$(CONFIG_HEXDUMP) += hexdump.o |
34 | obj-$(CONFIG_LOSETUP) += losetup.o | ||
34 | obj-$(CONFIG_MKFS_MINIX) += mkfs_minix.o | 35 | obj-$(CONFIG_MKFS_MINIX) += mkfs_minix.o |
35 | obj-$(CONFIG_MKSWAP) += mkswap.o | 36 | obj-$(CONFIG_MKSWAP) += mkswap.o |
36 | obj-$(CONFIG_MORE) += more.o | 37 | obj-$(CONFIG_MORE) += more.o |
diff --git a/util-linux/config.in b/util-linux/config.in index 6058944a2..f96fa1823 100644 --- a/util-linux/config.in +++ b/util-linux/config.in | |||
@@ -23,6 +23,7 @@ if [ "$CONFIG_FSCK_MINIX" = "y" -o "$CONFIG_MKFS_MINIX" = "y" ]; then | |||
23 | fi | 23 | fi |
24 | bool 'getopt' CONFIG_GETOPT | 24 | bool 'getopt' CONFIG_GETOPT |
25 | bool 'hexdump' CONFIG_HEXDUMP | 25 | bool 'hexdump' CONFIG_HEXDUMP |
26 | bool 'losetup' CONFIG_LOSETUP | ||
26 | bool 'mkswap' CONFIG_MKSWAP | 27 | bool 'mkswap' CONFIG_MKSWAP |
27 | bool 'more' CONFIG_MORE | 28 | bool 'more' CONFIG_MORE |
28 | if [ "$CONFIG_MORE" = "y" ]; then | 29 | if [ "$CONFIG_MORE" = "y" ]; then |
diff --git a/util-linux/losetup.c b/util-linux/losetup.c new file mode 100644 index 000000000..bfeb6b274 --- /dev/null +++ b/util-linux/losetup.c | |||
@@ -0,0 +1,58 @@ | |||
1 | /* | ||
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 | |||
27 | int | ||
28 | losetup_main (int argc, char **argv) | ||
29 | { | ||
30 | int delete = 0; | ||
31 | int offset = 0; | ||
32 | int opt; | ||
33 | |||
34 | while ((opt = getopt (argc, argv, "do:")) != -1) | ||
35 | switch (opt) | ||
36 | { | ||
37 | case 'd': | ||
38 | delete = 1; | ||
39 | break; | ||
40 | |||
41 | case 'o': | ||
42 | offset = parse_number (optarg, NULL); | ||
43 | break; | ||
44 | |||
45 | default: | ||
46 | show_usage (); | ||
47 | } | ||
48 | |||
49 | if ((delete && (offset || optind + 1 != argc)) | ||
50 | || (!delete && optind + 2 != argc)) | ||
51 | show_usage (); | ||
52 | |||
53 | if (delete) | ||
54 | return del_loop (argv[optind]) ? EXIT_SUCCESS : EXIT_FAILURE; | ||
55 | else | ||
56 | return set_loop (argv[optind], argv[optind + 1], offset, &opt) | ||
57 | ? EXIT_FAILURE : EXIT_SUCCESS; | ||
58 | } | ||