From: Saul Wold <sgw@linux.intel.com>
To: Patches and discussions about the oe-core layer
<openembedded-core@lists.openembedded.org>
Cc: Paul Eggleton <paul.eggleton@linux.intel.com>
Subject: Re: [PATCH] busybox: busybox wget -P option ignored
Date: Thu, 19 Jul 2012 20:54:36 -0700 [thread overview]
Message-ID: <5008D67C.6020509@linux.intel.com> (raw)
In-Reply-To: <20120717143034.GA21707@windriver.com>
On 07/17/2012 07:30 AM, Amy Fong wrote:
> busybox wget testing fails
>
> In cases where busybox wget is invoked with -P <...> and the url ends
> in "/", the download directory is ignored (ie the file index.html is
> implied), this change enables the -P option for those urls.
>
> Signed-off-by: Amy Fong <amy.fong@windriver.com>
> ---
> busybox-1.19.4/wget_dl_dir_fix.patch | 30 ++++++++++++++++++++++++++++++
> busybox_1.19.4.bb | 3 ++-
> 2 files changed, 32 insertions(+), 1 deletion(-)
>
> diff --git a/meta/recipes-core/busybox/busybox-1.19.4/wget_dl_dir_fix.patch b/meta/recipes-core/busybox/busybox-1.19.4/wget_dl_dir_fix.patch
> new file mode 100644
> index 0000000..3003965
> --- /dev/null
> +++ b/meta/recipes-core/busybox/busybox-1.19.4/wget_dl_dir_fix.patch
> @@ -0,0 +1,30 @@
> +In cases where busybox wget is invoked with -P <...> and the url ends
> +in "/", the download directory is ignored (ie the file index.html is
> +implied), this change enables the -P option for those urls.
> +
> +Signed-off-by: Amy Fong <amy.fong@windriver.com>
> +Upstream-Status: Submitted
> +---
> + networking/wget.c | 10 +++++++---
> + 1 file changed, 7 insertions(+), 3 deletions(-)
> +
> +--- a/networking/wget.c
> ++++ b/networking/wget.c
> +@@ -589,10 +589,14 @@
> + if (!(option_mask32 & WGET_OPT_OUTNAME)) {
> + G.fname_out = bb_get_last_path_component_nostrip(target.path);
> + /* handle "wget http://kernel.org//" */
> +- if (G.fname_out[0] == '/' || !G.fname_out[0])
> +- G.fname_out = (char*)"index.html";
> ++ if (G.fname_out[0] == '/' || !G.fname_out[0]) {
> ++ /* bug: if we provide a default name, we should still look at -P option */
> ++ if (G.dir_prefix)
> ++ G.fname_out = fname_out_alloc = concat_path_file(G.dir_prefix, "index.html");
> ++ else
> ++ G.fname_out = (char*)"index.html";
> + /* -P DIR is considered only if there was no -O FILE */
> +- else {
> ++ } else {
> + if (G.dir_prefix)
> + G.fname_out = fname_out_alloc = concat_path_file(G.dir_prefix, G.fname_out);
> + else {
> diff --git a/meta/recipes-core/busybox/busybox_1.19.4.bb b/meta/recipes-core/busybox/busybox_1.19.4.bb
> index 5b3f356..8a06497 100644
> --- a/meta/recipes-core/busybox/busybox_1.19.4.bb
> +++ b/meta/recipes-core/busybox/busybox_1.19.4.bb
> @@ -1,5 +1,5 @@
> require busybox.inc
> -PR = "r7"
> +PR = "r8"
>
> SRC_URI = "http://www.busybox.net/downloads/busybox-${PV}.tar.bz2;name=tarball \
> file://B921600.patch \
> @@ -8,6 +8,7 @@ SRC_URI = "http://www.busybox.net/downloads/busybox-${PV}.tar.bz2;name=tarball \
> file://run-parts.in.usr-bin.patch \
> file://watch.in.usr-bin.patch \
> file://busybox-udhcpc-no_deconfig.patch \
> + file://wget_dl_dir_fix.patch \
> file://find-touchscreen.sh \
> file://busybox-cron \
> file://busybox-httpd \
>
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core
>
>
Merged into OE-Core
Thanks
Sau!
prev parent reply other threads:[~2012-07-20 4:06 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-07-17 14:12 [PATCH] busybox: busybox wget -P option ignored Amy Fong
2012-07-17 14:23 ` Paul Eggleton
2012-07-17 14:30 ` Amy Fong
2012-07-20 3:54 ` Saul Wold [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=5008D67C.6020509@linux.intel.com \
--to=sgw@linux.intel.com \
--cc=openembedded-core@lists.openembedded.org \
--cc=paul.eggleton@linux.intel.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.