mirror of
https://git.yoctoproject.org/poky
synced 2026-06-02 13:29:49 +00:00
busybox: add tmpdir option into mktemp applet
- Make mktemp applet compatible with --tmpdir option in ca-certificate update script. (From OE-Core rev: 0c51fd928407267a5c1b664aabfdc3527aa92988) Signed-off-by: Andrej Valek <andrej.valek@siemens.com> Signed-off-by: Peter Marko <peter.marko@siemens.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 3d969e482d29da29828d1510f106f161d2b3d3c0) Signed-off-by: Anuj Mittal <anuj.mittal@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
63686ed260
commit
d1df18c68d
@@ -0,0 +1,81 @@
|
|||||||
|
From ceb378209f953ea745ed93a8645567196380ce3c Mon Sep 17 00:00:00 2001
|
||||||
|
From: Andrej Valek <andrej.valek@siemens.com>
|
||||||
|
Date: Thu, 24 Jun 2021 19:13:22 +0200
|
||||||
|
Subject: [PATCH] mktemp: add tmpdir option
|
||||||
|
|
||||||
|
Make mktemp more compatible with coreutils.
|
||||||
|
- add "--tmpdir" option
|
||||||
|
- add long variants for "d,q,u" options
|
||||||
|
|
||||||
|
Upstream-Status: Submitted [http://lists.busybox.net/pipermail/busybox/2021-June/088932.html]
|
||||||
|
|
||||||
|
Signed-off-by: Andrej Valek <andrej.valek@siemens.com>
|
||||||
|
Signed-off-by: Peter Marko <peter.marko@siemens.com>
|
||||||
|
---
|
||||||
|
coreutils/mktemp.c | 26 ++++++++++++++++++--------
|
||||||
|
1 file changed, 18 insertions(+), 8 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/coreutils/mktemp.c b/coreutils/mktemp.c
|
||||||
|
index 5393320a5..05c6d98c6 100644
|
||||||
|
--- a/coreutils/mktemp.c
|
||||||
|
+++ b/coreutils/mktemp.c
|
||||||
|
@@ -39,16 +39,17 @@
|
||||||
|
//kbuild:lib-$(CONFIG_MKTEMP) += mktemp.o
|
||||||
|
|
||||||
|
//usage:#define mktemp_trivial_usage
|
||||||
|
-//usage: "[-dt] [-p DIR] [TEMPLATE]"
|
||||||
|
+//usage: "[-dt] [-p DIR, --tmpdir[=DIR]] [TEMPLATE]"
|
||||||
|
//usage:#define mktemp_full_usage "\n\n"
|
||||||
|
//usage: "Create a temporary file with name based on TEMPLATE and print its name.\n"
|
||||||
|
//usage: "TEMPLATE must end with XXXXXX (e.g. [/dir/]nameXXXXXX).\n"
|
||||||
|
//usage: "Without TEMPLATE, -t tmp.XXXXXX is assumed.\n"
|
||||||
|
-//usage: "\n -d Make directory, not file"
|
||||||
|
-//usage: "\n -q Fail silently on errors"
|
||||||
|
-//usage: "\n -t Prepend base directory name to TEMPLATE"
|
||||||
|
-//usage: "\n -p DIR Use DIR as a base directory (implies -t)"
|
||||||
|
-//usage: "\n -u Do not create anything; print a name"
|
||||||
|
+//usage: "\n -d Make directory, not file"
|
||||||
|
+//usage: "\n -q Fail silently on errors"
|
||||||
|
+//usage: "\n -t Prepend base directory name to TEMPLATE"
|
||||||
|
+//usage: "\n -p DIR, --tmpdir[=DIR] Use DIR as a base directory (implies -t)"
|
||||||
|
+//usage: "\n For --tmpdir is a optional one."
|
||||||
|
+//usage: "\n -u Do not create anything; print a name"
|
||||||
|
//usage: "\n"
|
||||||
|
//usage: "\nBase directory is: -p DIR, else $TMPDIR, else /tmp"
|
||||||
|
//usage:
|
||||||
|
@@ -72,13 +73,22 @@ int mktemp_main(int argc UNUSED_PARAM, char **argv)
|
||||||
|
OPT_t = 1 << 2,
|
||||||
|
OPT_p = 1 << 3,
|
||||||
|
OPT_u = 1 << 4,
|
||||||
|
+ OPT_td = 1 << 5,
|
||||||
|
};
|
||||||
|
|
||||||
|
path = getenv("TMPDIR");
|
||||||
|
if (!path || path[0] == '\0')
|
||||||
|
path = "/tmp";
|
||||||
|
|
||||||
|
- opts = getopt32(argv, "^" "dqtp:u" "\0" "?1"/*1 arg max*/, &path);
|
||||||
|
+ opts = getopt32long(argv, "^"
|
||||||
|
+ "dqtp:u\0"
|
||||||
|
+ "?1" /* 1 arg max */,
|
||||||
|
+ "directory\0" No_argument "d"
|
||||||
|
+ "quiet\0" No_argument "q"
|
||||||
|
+ "dry-run\0" No_argument "u"
|
||||||
|
+ "tmpdir\0" Optional_argument "\xff"
|
||||||
|
+ , &path, &path
|
||||||
|
+ );
|
||||||
|
|
||||||
|
chp = argv[optind];
|
||||||
|
if (!chp) {
|
||||||
|
@@ -95,7 +105,7 @@ int mktemp_main(int argc UNUSED_PARAM, char **argv)
|
||||||
|
goto error;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
- if (opts & (OPT_t|OPT_p))
|
||||||
|
+ if (opts & (OPT_t|OPT_p|OPT_td))
|
||||||
|
chp = concat_path_file(path, chp);
|
||||||
|
|
||||||
|
if (opts & OPT_u) {
|
||||||
|
--
|
||||||
|
2.11.0
|
||||||
|
|
||||||
@@ -37,6 +37,8 @@ SRC_URI = "https://busybox.net/downloads/busybox-${PV}.tar.bz2;name=tarball \
|
|||||||
${@["", "file://mdev.cfg"][(d.getVar('VIRTUAL-RUNTIME_dev_manager') == 'busybox-mdev')]} \
|
${@["", "file://mdev.cfg"][(d.getVar('VIRTUAL-RUNTIME_dev_manager') == 'busybox-mdev')]} \
|
||||||
file://syslog.cfg \
|
file://syslog.cfg \
|
||||||
file://unicode.cfg \
|
file://unicode.cfg \
|
||||||
|
file://rev.cfg \
|
||||||
|
file://pgrep.cfg \
|
||||||
file://rcS \
|
file://rcS \
|
||||||
file://rcK \
|
file://rcK \
|
||||||
file://makefile-libbb-race.patch \
|
file://makefile-libbb-race.patch \
|
||||||
@@ -44,9 +46,8 @@ SRC_URI = "https://busybox.net/downloads/busybox-${PV}.tar.bz2;name=tarball \
|
|||||||
file://0001-testsuite-use-www.example.org-for-wget-test-cases.patch \
|
file://0001-testsuite-use-www.example.org-for-wget-test-cases.patch \
|
||||||
file://0001-du-l-works-fix-to-use-145-instead-of-144.patch \
|
file://0001-du-l-works-fix-to-use-145-instead-of-144.patch \
|
||||||
file://0001-sysctl-ignore-EIO-of-stable_secret-below-proc-sys-ne.patch \
|
file://0001-sysctl-ignore-EIO-of-stable_secret-below-proc-sys-ne.patch \
|
||||||
file://rev.cfg \
|
|
||||||
file://pgrep.cfg \
|
|
||||||
file://0001-gen_build_files-Use-C-locale-when-calling-sed-on-glo.patch \
|
file://0001-gen_build_files-Use-C-locale-when-calling-sed-on-glo.patch \
|
||||||
|
file://0001-mktemp-add-tmpdir-option.patch \
|
||||||
"
|
"
|
||||||
SRC_URI_append_libc-musl = " file://musl.cfg "
|
SRC_URI_append_libc-musl = " file://musl.cfg "
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user