rdev.c 847 B

123456789101112131415161718192021222324252627282930313233
  1. /* vi: set sw=4 ts=4: */
  2. /*
  3. * rdev - print device node associated with a filesystem
  4. *
  5. * Copyright (c) 2008 Nuovation System Designs, LLC
  6. * Grant Erickson <gerickson@nuovations.com>
  7. *
  8. * Licensed under GPLv2, see file LICENSE in this source tree.
  9. *
  10. */
  11. //usage:#define rdev_trivial_usage
  12. //usage: ""
  13. //usage:#define rdev_full_usage "\n\n"
  14. //usage: "Print the device node associated with the filesystem mounted at '/'"
  15. //usage:
  16. //usage:#define rdev_example_usage
  17. //usage: "$ rdev\n"
  18. //usage: "/dev/mtdblock9 /\n"
  19. #include "libbb.h"
  20. int rdev_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
  21. int rdev_main(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
  22. {
  23. const char *root_device = find_block_device("/");
  24. if (root_device) {
  25. printf("%s /\n", root_device);
  26. return EXIT_SUCCESS;
  27. }
  28. return EXIT_FAILURE;
  29. }