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
|
|
|
*
|
|
|
|
* Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
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 14:18:53 +00:00
|
|
|
int raidautorun_main(int argc UNUSED_PARAM, char **argv)
|
2006-10-20 19:39:48 +00:00
|
|
|
{
|
2009-11-28 14:18:53 +00:00
|
|
|
xioctl(xopen(single_argv(argv), O_RDONLY), RAID_AUTORUN, NULL);
|
2006-10-20 19:39:48 +00:00
|
|
|
return EXIT_SUCCESS;
|
|
|
|
}
|