Displaying 2 results from an estimated 2 matches for "523c92b".
Did you mean:
52392
2012 May 04
2
[PATCH] run-init: add drop_capabilities support
.../dev/null
+++ b/usr/kinit/capabilities.h
@@ -0,0 +1,10 @@
+/*
+ * capabilities.h
+ */
+
+#ifndef KINIT_CAPABILITIES_H
+#define KINIT_CAPABILITIES_H
+
+int drop_capabilities(const char *caps);
+
+#endif /* KINIT_CAPABILITIES_H */
diff --git a/usr/kinit/kinit.c b/usr/kinit/kinit.c
index 8ea0da5..523c92b 100644
--- a/usr/kinit/kinit.c
+++ b/usr/kinit/kinit.c
@@ -284,8 +284,6 @@ int main(int argc, char *argv[])
check_path("/root");
do_mounts(cmdc, cmdv);
- drop_capabilities(get_arg(cmdc, cmdv, "drop_capabilities="));
-
if (mnt_procfs) {
umount2("/proc", 0);...
2019 Jan 18
0
[klibc:master] run-init: Add dry-run mode
...t/run-init/run-init.c | 37 +++++++++++++++++++++++-------------
usr/kinit/run-init/run-init.h | 5 ++++-
usr/kinit/run-init/runinitlib.c | 42 +++++++++++++++++++++++++++--------------
4 files changed, 57 insertions(+), 29 deletions(-)
diff --git a/usr/kinit/kinit.c b/usr/kinit/kinit.c
index 523c92b..de03c2d 100644
--- a/usr/kinit/kinit.c
+++ b/usr/kinit/kinit.c
@@ -304,7 +304,7 @@ int main(int argc, char *argv[])
init_argv[0] = strrchr(init_path, '/') + 1;
errmsg = run_init("/root", "/dev/console",
- get_arg(cmdc, cmdv, "drop_capabilities="),
+...