Bernhard Reutner-Fischer | c77e843 | 2008-08-19 11:28:52 +0000 | [diff] [blame] | 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 | * |
Denys Vlasenko | 0ef64bd | 2010-08-16 20:14:46 +0200 | [diff] [blame] | 8 | * Licensed under GPLv2, see file LICENSE in this source tree. |
Bernhard Reutner-Fischer | c77e843 | 2008-08-19 11:28:52 +0000 | [diff] [blame] | 9 | * |
| 10 | */ |
Denys Vlasenko | dd898c9 | 2016-11-23 11:46:32 +0100 | [diff] [blame] | 11 | //config:config RDEV |
Denys Vlasenko | 4eed2c6 | 2017-07-18 22:01:24 +0200 | [diff] [blame] | 12 | //config: bool "rdev (1.4 kb)" |
Denys Vlasenko | dd898c9 | 2016-11-23 11:46:32 +0100 | [diff] [blame] | 13 | //config: default y |
| 14 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 15 | //config: Print the device node associated with the filesystem mounted at '/'. |
Denys Vlasenko | dd898c9 | 2016-11-23 11:46:32 +0100 | [diff] [blame] | 16 | |
Denys Vlasenko | 90ad4ba | 2017-08-08 00:42:15 +0200 | [diff] [blame^] | 17 | //applet:IF_RDEV(APPLET_NOEXEC(rdev, rdev, BB_DIR_USR_SBIN, BB_SUID_DROP, rdev)) |
Denys Vlasenko | dd898c9 | 2016-11-23 11:46:32 +0100 | [diff] [blame] | 18 | |
| 19 | //kbuild:lib-$(CONFIG_RDEV) += rdev.o |
Bernhard Reutner-Fischer | c77e843 | 2008-08-19 11:28:52 +0000 | [diff] [blame] | 20 | |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 21 | //usage:#define rdev_trivial_usage |
| 22 | //usage: "" |
| 23 | //usage:#define rdev_full_usage "\n\n" |
| 24 | //usage: "Print the device node associated with the filesystem mounted at '/'" |
| 25 | //usage: |
| 26 | //usage:#define rdev_example_usage |
| 27 | //usage: "$ rdev\n" |
| 28 | //usage: "/dev/mtdblock9 /\n" |
| 29 | |
Bernhard Reutner-Fischer | c77e843 | 2008-08-19 11:28:52 +0000 | [diff] [blame] | 30 | #include "libbb.h" |
| 31 | |
| 32 | int rdev_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
| 33 | int rdev_main(int argc UNUSED_PARAM, char **argv UNUSED_PARAM) |
| 34 | { |
Denys Vlasenko | d6f5000 | 2011-12-15 12:39:25 +0100 | [diff] [blame] | 35 | const char *root_device = find_block_device("/"); |
Bernhard Reutner-Fischer | c77e843 | 2008-08-19 11:28:52 +0000 | [diff] [blame] | 36 | |
Denys Vlasenko | d6f5000 | 2011-12-15 12:39:25 +0100 | [diff] [blame] | 37 | if (root_device) { |
Bernhard Reutner-Fischer | c77e843 | 2008-08-19 11:28:52 +0000 | [diff] [blame] | 38 | printf("%s /\n", root_device); |
| 39 | return EXIT_SUCCESS; |
| 40 | } |
| 41 | return EXIT_FAILURE; |
| 42 | } |