2006-10-20 19:39:48 +00:00
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
|
|
|
* raidautorun implementation for busybox
|
|
|
|
*
|
2008-09-25 12:13:34 +00:00
|
|
|
* Copyright (C) 2006 Bernhard Reutner-Fischer
|
2006-10-20 19:39:48 +00:00
|
|
|
*
|
2010-08-16 20:14:46 +02:00
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this source tree.
|
2006-10-20 19:39:48 +00:00
|
|
|
*/
|
2016-11-22 23:14:24 +01:00
|
|
|
//config:config RAIDAUTORUN
|
2018-12-28 03:20:17 +01:00
|
|
|
//config: bool "raidautorun (1.3 kb)"
|
2016-11-22 23:14:24 +01:00
|
|
|
//config: default y
|
|
|
|
//config: select PLATFORM_LINUX
|
|
|
|
//config: help
|
2017-07-21 09:50:55 +02:00
|
|
|
//config: raidautorun tells the kernel md driver to
|
|
|
|
//config: search and start RAID arrays.
|
2006-10-20 19:39:48 +00:00
|
|
|
|
2017-08-06 19:08:46 +02:00
|
|
|
//applet:IF_RAIDAUTORUN(APPLET_NOEXEC(raidautorun, raidautorun, BB_DIR_SBIN, BB_SUID_DROP, raidautorun))
|
2016-11-22 23:54:17 +01:00
|
|
|
|
|
|
|
//kbuild:lib-$(CONFIG_RAIDAUTORUN) += raidautorun.o
|
|
|
|
|
2011-04-11 03:29:49 +02:00
|
|
|
//usage:#define raidautorun_trivial_usage
|
|
|
|
//usage: "DEVICE"
|
|
|
|
//usage:#define raidautorun_full_usage "\n\n"
|
|
|
|
//usage: "Tell the kernel to automatically search and start RAID arrays"
|
|
|
|
//usage:
|
|
|
|
//usage:#define raidautorun_example_usage
|
|
|
|
//usage: "$ raidautorun /dev/md0"
|
|
|
|
|
2007-05-26 19:00:18 +00:00
|
|
|
#include "libbb.h"
|
2006-10-20 19:39:48 +00:00
|
|
|
|
|
|
|
#include <linux/major.h>
|
|
|
|
#include <linux/raid/md_u.h>
|
|
|
|
|
2007-10-11 10:05:36 +00:00
|
|
|
int raidautorun_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2009-11-28 15:18:53 +01:00
|
|
|
int raidautorun_main(int argc UNUSED_PARAM, char **argv)
|
2006-10-20 19:39:48 +00:00
|
|
|
{
|
2009-11-28 15:18:53 +01:00
|
|
|
xioctl(xopen(single_argv(argv), O_RDONLY), RAID_AUTORUN, NULL);
|
2006-10-20 19:39:48 +00:00
|
|
|
return EXIT_SUCCESS;
|
|
|
|
}
|