2006-10-20 19:39:48 +00:00
|
|
|
/* 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.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
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-02-03 17:28:39 +00:00
|
|
|
int raidautorun_main(int argc, char **argv);
|
2006-10-20 19:39:48 +00:00
|
|
|
int raidautorun_main(int argc, char **argv)
|
|
|
|
{
|
2006-10-24 20:06:55 +00:00
|
|
|
if (argc != 2)
|
|
|
|
bb_show_usage();
|
|
|
|
|
2007-07-14 22:07:14 +00:00
|
|
|
xioctl(xopen(argv[1], O_RDONLY), RAID_AUTORUN, NULL);
|
2006-10-20 19:39:48 +00:00
|
|
|
|
|
|
|
return EXIT_SUCCESS;
|
|
|
|
}
|