diff options
-rw-r--r-- | meta/recipes-core/busybox/busybox/0001-flock-update-the-behaviour-of-c-parameter-to-match-u.patch | 73 | ||||
-rw-r--r-- | meta/recipes-core/busybox/busybox_1.24.1.bb | 1 |
2 files changed, 74 insertions, 0 deletions
diff --git a/meta/recipes-core/busybox/busybox/0001-flock-update-the-behaviour-of-c-parameter-to-match-u.patch b/meta/recipes-core/busybox/busybox/0001-flock-update-the-behaviour-of-c-parameter-to-match-u.patch new file mode 100644 index 0000000000..8bcbd73de9 --- /dev/null +++ b/meta/recipes-core/busybox/busybox/0001-flock-update-the-behaviour-of-c-parameter-to-match-u.patch | |||
@@ -0,0 +1,73 @@ | |||
1 | From 198f18addf1d814c2fefcb492f3b9fbd221669bb Mon Sep 17 00:00:00 2001 | ||
2 | From: "Maxin B. John" <maxin.john@intel.com> | ||
3 | Date: Wed, 20 Apr 2016 18:24:45 +0300 | ||
4 | Subject: [PATCH] flock: update the behaviour of -c parameter to match upstream | ||
5 | |||
6 | In upstream, -c 'PROG ARGS' means "run sh -c 'PROG ARGS'" | ||
7 | |||
8 | function old new delta | ||
9 | flock_main 286 377 +91 | ||
10 | .rodata 155849 155890 +41 | ||
11 | |||
12 | Upstream-Status: Submitted | ||
13 | [ http://lists.busybox.net/pipermail/busybox/2016-April/084142.html ] | ||
14 | |||
15 | Signed-off-by: Maxin B. John <maxin.john@intel.com> | ||
16 | --- | ||
17 | util-linux/flock.c | 20 ++++++++++++++------ | ||
18 | 1 file changed, 14 insertions(+), 6 deletions(-) | ||
19 | |||
20 | diff --git a/util-linux/flock.c b/util-linux/flock.c | ||
21 | index 05a747f..c85a25d 100644 | ||
22 | --- a/util-linux/flock.c | ||
23 | +++ b/util-linux/flock.c | ||
24 | @@ -20,6 +20,7 @@ int flock_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; | ||
25 | int flock_main(int argc UNUSED_PARAM, char **argv) | ||
26 | { | ||
27 | int mode, opt, fd; | ||
28 | + char *cmd_args[4]; | ||
29 | enum { | ||
30 | OPT_s = (1 << 0), | ||
31 | OPT_x = (1 << 1), | ||
32 | @@ -57,7 +58,6 @@ int flock_main(int argc UNUSED_PARAM, char **argv) | ||
33 | /* If it is "flock FILE -c PROG", then -c isn't caught by getopt32: | ||
34 | * we use "+" in order to support "flock -opt FILE PROG -with-opts", | ||
35 | * we need to remove -c by hand. | ||
36 | - * TODO: in upstream, -c 'PROG ARGS' means "run sh -c 'PROG ARGS'" | ||
37 | */ | ||
38 | if (argv[0] | ||
39 | && argv[0][0] == '-' | ||
40 | @@ -65,7 +65,10 @@ int flock_main(int argc UNUSED_PARAM, char **argv) | ||
41 | || (ENABLE_LONG_OPTS && strcmp(argv[0] + 1, "-command") == 0) | ||
42 | ) | ||
43 | ) { | ||
44 | - argv++; | ||
45 | + if (argc != optind + 3) | ||
46 | + bb_error_msg_and_die("-c requires exactly one command argument"); | ||
47 | + else | ||
48 | + argv++; | ||
49 | } | ||
50 | |||
51 | if (OPT_s == LOCK_SH && OPT_x == LOCK_EX && OPT_n == LOCK_NB && OPT_u == LOCK_UN) { | ||
52 | @@ -89,9 +92,14 @@ int flock_main(int argc UNUSED_PARAM, char **argv) | ||
53 | return EXIT_FAILURE; | ||
54 | bb_perror_nomsg_and_die(); | ||
55 | } | ||
56 | - | ||
57 | - if (argv[0]) | ||
58 | - return spawn_and_wait(argv); | ||
59 | - | ||
60 | + if (argv[0]) { | ||
61 | + cmd_args[0] = getenv("SHELL"); | ||
62 | + if (!cmd_args[0]) | ||
63 | + cmd_args[0] = (char*)DEFAULT_SHELL; | ||
64 | + cmd_args[1] = (char*)"-c"; | ||
65 | + cmd_args[2] = argv[0]; | ||
66 | + cmd_args[3] = NULL; | ||
67 | + return spawn_and_wait(cmd_args); | ||
68 | + } | ||
69 | return EXIT_SUCCESS; | ||
70 | } | ||
71 | -- | ||
72 | 2.4.0 | ||
73 | |||
diff --git a/meta/recipes-core/busybox/busybox_1.24.1.bb b/meta/recipes-core/busybox/busybox_1.24.1.bb index bdaa5a5640..f699f993b5 100644 --- a/meta/recipes-core/busybox/busybox_1.24.1.bb +++ b/meta/recipes-core/busybox/busybox_1.24.1.bb | |||
@@ -32,6 +32,7 @@ SRC_URI = "http://www.busybox.net/downloads/busybox-${PV}.tar.bz2;name=tarball \ | |||
32 | file://busybox-1.24.1-unzip.patch \ | 32 | file://busybox-1.24.1-unzip.patch \ |
33 | file://busybox-1.24.1-unzip-regression.patch \ | 33 | file://busybox-1.24.1-unzip-regression.patch \ |
34 | file://busybox-1.24.1-truncate-open-mode.patch \ | 34 | file://busybox-1.24.1-truncate-open-mode.patch \ |
35 | file://0001-flock-update-the-behaviour-of-c-parameter-to-match-u.patch \ | ||
35 | file://mount-via-label.cfg \ | 36 | file://mount-via-label.cfg \ |
36 | file://sha1sum.cfg \ | 37 | file://sha1sum.cfg \ |
37 | file://sha256sum.cfg \ | 38 | file://sha256sum.cfg \ |