diff options
Diffstat (limited to 'miscutils')
-rw-r--r-- | miscutils/Config.in | 7 | ||||
-rw-r--r-- | miscutils/Kbuild | 1 | ||||
-rw-r--r-- | miscutils/raidautorun.c | 23 |
3 files changed, 31 insertions, 0 deletions
diff --git a/miscutils/Config.in b/miscutils/Config.in index 5d0ec8a..e093924 100644 --- a/miscutils/Config.in +++ b/miscutils/Config.in @@ -284,6 +284,13 @@ config NMETER help nmeter prints various system parameters continuously. +config RAIDAUTORUN + bool "raidautorun" + default n + help + raidautorun tells the kernel md driver to + search and start RAID arrays. + config READAHEAD bool "readahead" default n diff --git a/miscutils/Kbuild b/miscutils/Kbuild index 3173e1d..16c76fa 100644 --- a/miscutils/Kbuild +++ b/miscutils/Kbuild @@ -19,6 +19,7 @@ lib-$(CONFIG_MAKEDEVS) += makedevs.o lib-$(CONFIG_MOUNTPOINT) += mountpoint.o lib-$(CONFIG_MT) += mt.o lib-$(CONFIG_NMETER) += nmeter.o +lib-$(CONFIG_RAIDAUTORUN) += raidautorun.o lib-$(CONFIG_READAHEAD) += readahead.o lib-$(CONFIG_RUNLEVEL) += runlevel.o lib-$(CONFIG_RX) += rx.o diff --git a/miscutils/raidautorun.c b/miscutils/raidautorun.c new file mode 100644 index 0000000..c256304 --- /dev/null +++ b/miscutils/raidautorun.c @@ -0,0 +1,23 @@ +/* vi: set sw=4 ts=4: */ +/* + * raidautorun implementation for busybox + * + * Copyright (C) 2006 Bernhard Fischer + * + * Licensed under the GPL v2 or later, see the file LICENSE in this tarball. + * + */ + +#include "busybox.h" + +#include <linux/major.h> +#include <linux/raid/md_u.h> + +int raidautorun_main(int argc, char **argv) +{ + if (ioctl(xopen(argv[1], O_RDONLY), RAID_AUTORUN, NULL) != 0) { + bb_perror_msg_and_die("ioctl"); + } + + return EXIT_SUCCESS; +} |