Displaying 2 results from an estimated 2 matches for "f7832b7".
Did you mean:
cf7835b7
2012 May 04
2
[PATCH] run-init: add drop_capabilities support
...get_arg(cmdc, cmdv, "drop_capabilities="),
+ init_path, init_argv);
/* If run_init returned, something went bad */
fprintf(stderr, "%s: %s: %s\n", progname, errmsg, strerror(errno));
diff --git a/usr/kinit/run-init/Kbuild b/usr/kinit/run-init/Kbuild
index bf6e140..f7832b7 100644
--- a/usr/kinit/run-init/Kbuild
+++ b/usr/kinit/run-init/Kbuild
@@ -18,9 +18,14 @@ lib-y := $(objs)
# personality(2) flag from getting set and passed to init).
EXTRA_KLIBCLDFLAGS += -z noexecstack
+# Additional include paths files
+KLIBCCFLAGS += -I$(srctree)/$(src)/..
+
# .o files used...
2019 Jan 20
0
[klibc:master] Build and install shared binaries only if KLIBCSHAREDFLAGS is defined
...ume/Kbuild
+++ b/usr/kinit/resume/Kbuild
@@ -27,4 +27,8 @@ shared/resume-lib := ../lib.a
clean-dirs := static shared
# install binary
+ifdef KLIBCSHAREDFLAGS
install-y := $(shared-y)
+else
+install-y := $(static-y)
+endif
diff --git a/usr/kinit/run-init/Kbuild b/usr/kinit/run-init/Kbuild
index f7832b7..eeff906 100644
--- a/usr/kinit/run-init/Kbuild
+++ b/usr/kinit/run-init/Kbuild
@@ -31,4 +31,8 @@ shared/run-init-lib := ../lib.a
clean-dirs := static shared
# install binary
+ifdef KLIBCSHAREDFLAGS
install-y := $(shared-y)
+else
+install-y := $(static-y)
+endif
diff --git a/usr/klibc/Kbuild b...