diff options
author | Ørjan Malde <red@foxi.me> | 2022-02-05 23:01:31 +0100 |
---|---|---|
committer | Ørjan Malde <red@foxi.me> | 2022-02-05 23:01:31 +0100 |
commit | f545026b3e7c9aa0de51ee22004f464fed234bf3 (patch) | |
tree | 19aa94591cec306c189107b2b13de9ec95fb45a8 /patches/busybox | |
parent | d7f08c9efdf6643bdce371b3b3af093d40f8a101 (diff) | |
download | midipix_build-f545026b3e7c9aa0de51ee22004f464fed234bf3.tar.bz2 midipix_build-f545026b3e7c9aa0de51ee22004f464fed234bf3.tar.xz |
groups/211.native_packages_cmdline.group: busybox: extend kill(1)
Signed-off-by: Ørjan Malde <red@foxi.me>
Diffstat (limited to 'patches/busybox')
-rw-r--r-- | patches/busybox/nativekill.patch | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/patches/busybox/nativekill.patch b/patches/busybox/nativekill.patch new file mode 100644 index 00000000..691235f1 --- /dev/null +++ b/patches/busybox/nativekill.patch @@ -0,0 +1,33 @@ +diff -ru busybox-1.35.0.orig/procps/kill.c busybox-1.35.0/procps/kill.c +--- busybox-1.35.0.orig/procps/kill.c 2021-12-26 17:53:21.000000000 +0100 ++++ busybox-1.35.0/procps/kill.c 2022-02-05 22:46:30.981801454 +0100 +@@ -189,6 +189,29 @@ + if (is_killall5 && arg[0] == 'o') + goto do_it_now; + ++#if ENABLE_KILL && defined(__midipix__) ++ extern intptr_t __sys_dbg_kill(int pfd); ++ extern intptr_t __sys_dbg_attach(pid_t pid); ++ ++ /* -n PID (native PID) */ ++ if (arg[0] == 'n') { ++ arg = *++argv; ++ if(!arg) { ++ bb_error_msg("-n requires a PID argument"); ++ return EXIT_FAILURE; ++ } ++ pid = bb_strtoi(arg, NULL, 10); ++ if (errno) { ++ bb_error_msg("invalid number '%s'", arg); ++ return EXIT_FAILURE; ++ } else if ((__sys_dbg_kill(__sys_dbg_attach(pid))) != 0) { ++ bb_perror_msg("can't kill native pid %d", (int)pid); ++ return EXIT_FAILURE; ++ } ++ return EXIT_SUCCESS; ++ } ++#endif ++ + /* "--" separates options from args. Testcase: "kill -- -123" */ + if (!is_killall5 && arg[0] == '-' && arg[1] == '\0') + goto do_it_sooner; |