2006-10-21 01:09:48 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
|
|
|
* raidautorun implementation for busybox
|
|
|
|
*
|
2008-09-25 17:43:34 +05:30
|
|
|
* Copyright (C) 2006 Bernhard Reutner-Fischer
|
2006-10-21 01:09:48 +05:30
|
|
|
*
|
|
|
|
* Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2007-05-27 00:30:18 +05:30
|
|
|
#include "libbb.h"
|
2006-10-21 01:09:48 +05:30
|
|
|
|
|
|
|
#include <linux/major.h>
|
|
|
|
#include <linux/raid/md_u.h>
|
|
|
|
|
2007-10-11 15:35:36 +05:30
|
|
|
int raidautorun_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2006-10-21 01:09:48 +05:30
|
|
|
int raidautorun_main(int argc, char **argv)
|
|
|
|
{
|
2006-10-25 01:36:55 +05:30
|
|
|
if (argc != 2)
|
|
|
|
bb_show_usage();
|
|
|
|
|
2007-07-15 03:37:14 +05:30
|
|
|
xioctl(xopen(argv[1], O_RDONLY), RAID_AUTORUN, NULL);
|
2006-10-21 01:09:48 +05:30
|
|
|
|
|
|
|
return EXIT_SUCCESS;
|
|
|
|
}
|