raidautorun.c 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /* vi: set sw=4 ts=4: */
  2. /*
  3. * raidautorun implementation for busybox
  4. *
  5. * Copyright (C) 2006 Bernhard Reutner-Fischer
  6. *
  7. * Licensed under GPLv2 or later, see file LICENSE in this source tree.
  8. *
  9. */
  10. //config:config RAIDAUTORUN
  11. //config: bool "raidautorun"
  12. //config: default y
  13. //config: select PLATFORM_LINUX
  14. //config: help
  15. //config: raidautorun tells the kernel md driver to
  16. //config: search and start RAID arrays.
  17. //applet:IF_RAIDAUTORUN(APPLET(raidautorun, BB_DIR_SBIN, BB_SUID_DROP))
  18. //kbuild:lib-$(CONFIG_RAIDAUTORUN) += raidautorun.o
  19. //usage:#define raidautorun_trivial_usage
  20. //usage: "DEVICE"
  21. //usage:#define raidautorun_full_usage "\n\n"
  22. //usage: "Tell the kernel to automatically search and start RAID arrays"
  23. //usage:
  24. //usage:#define raidautorun_example_usage
  25. //usage: "$ raidautorun /dev/md0"
  26. #include "libbb.h"
  27. #include <linux/major.h>
  28. #include <linux/raid/md_u.h>
  29. int raidautorun_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
  30. int raidautorun_main(int argc UNUSED_PARAM, char **argv)
  31. {
  32. xioctl(xopen(single_argv(argv), O_RDONLY), RAID_AUTORUN, NULL);
  33. return EXIT_SUCCESS;
  34. }