diff options
author | Elliott Hughes <enh@google.com> | 2015-03-23 17:55:23 -0700 |
---|---|---|
committer | Elliott Hughes <enh@google.com> | 2015-03-23 17:55:23 -0700 |
commit | addb229c72775c0594a878ffba6b1433e1c3bfc4 (patch) | |
tree | 602770d0844f060bd3ff4bb225d907a804012bd7 | |
parent | c31de5011a2b73af04d9e85dca863352458104ca (diff) | |
download | core-addb229c72775c0594a878ffba6b1433e1c3bfc4.tar.gz core-addb229c72775c0594a878ffba6b1433e1c3bfc4.tar.bz2 core-addb229c72775c0594a878ffba6b1433e1c3bfc4.zip |
Lose runcon to toybox.
Change-Id: I0fa4a1907a9def4ba7dc1348f57299cd578fdf87
-rw-r--r-- | toolbox/Android.mk | 1 | ||||
-rw-r--r-- | toolbox/runcon.c | 28 |
2 files changed, 0 insertions, 29 deletions
diff --git a/toolbox/Android.mk b/toolbox/Android.mk index 959dc22e0..9b57d59e2 100644 --- a/toolbox/Android.mk +++ b/toolbox/Android.mk @@ -59,7 +59,6 @@ OUR_TOOLS := \ renice \ restorecon \ route \ - runcon \ sendevent \ setprop \ start \ diff --git a/toolbox/runcon.c b/toolbox/runcon.c deleted file mode 100644 index 4a57bf316..000000000 --- a/toolbox/runcon.c +++ /dev/null @@ -1,28 +0,0 @@ -#include <stdio.h> -#include <stdlib.h> -#include <string.h> -#include <unistd.h> -#include <errno.h> -#include <selinux/selinux.h> - -int runcon_main(int argc, char **argv) -{ - int rc; - - if (argc < 3) { - fprintf(stderr, "usage: %s context program args...\n", argv[0]); - exit(1); - } - - rc = setexeccon(argv[1]); - if (rc < 0) { - fprintf(stderr, "Could not set context to %s: %s\n", argv[1], strerror(errno)); - exit(2); - } - - argv += 2; - argc -= 2; - execvp(argv[0], argv); - fprintf(stderr, "Could not exec %s: %s\n", argv[0], strerror(errno)); - exit(3); -} |