* [Buildroot] [PATCH 1/2] linux/linux.mk: added https:// pattern for kernel patches
@ 2015-01-12 16:37 Ivo Slanina
2015-01-12 16:37 ` [Buildroot] [PATCH 2/2] linux/linux.mk: fixed downloading " Ivo Slanina
` (2 more replies)
0 siblings, 3 replies; 7+ messages in thread
From: Ivo Slanina @ 2015-01-12 16:37 UTC (permalink / raw)
To: buildroot
Patches located at https:// scheme URL were threated as directories,
causing build failures.
Fixed by adding https:// pattern.
Signed-off-by: Ivo Slanina <ivo.slanina@gmail.com>
---
linux/linux.mk | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/linux/linux.mk b/linux/linux.mk
index 680521c..d02b02b 100644
--- a/linux/linux.mk
+++ b/linux/linux.mk
@@ -147,7 +147,7 @@ endif # BR2_LINUX_KERNEL_VMLINUX
define LINUX_DOWNLOAD_PATCHES
$(if $(LINUX_PATCHES),
@$(call MESSAGE,"Download additional patches"))
- $(foreach patch,$(filter ftp://% http://%,$(LINUX_PATCHES)),\
+ $(foreach patch,$(filter ftp://% http://% https://%,$(LINUX_PATCHES)),\
$(call DOWNLOAD,$(patch))$(sep))
endef
@@ -155,7 +155,7 @@ LINUX_POST_DOWNLOAD_HOOKS += LINUX_DOWNLOAD_PATCHES
define LINUX_APPLY_PATCHES
for p in $(LINUX_PATCHES) ; do \
- if echo $$p | grep -q -E "^ftp://|^http://" ; then \
+ if echo $$p | grep -q -E "^ftp://|^http://|^https://" ; then \
$(APPLY_PATCHES) $(@D) $(DL_DIR) `basename $$p` ; \
elif test -d $$p ; then \
$(APPLY_PATCHES) $(@D) $$p linux-\*.patch ; \
--
1.7.10.4
^ permalink raw reply related [flat|nested] 7+ messages in thread* [Buildroot] [PATCH 2/2] linux/linux.mk: fixed downloading kernel patches 2015-01-12 16:37 [Buildroot] [PATCH 1/2] linux/linux.mk: added https:// pattern for kernel patches Ivo Slanina @ 2015-01-12 16:37 ` Ivo Slanina 2015-01-12 21:38 ` Yann E. MORIN 2015-01-12 21:17 ` [Buildroot] [PATCH 1/2] linux/linux.mk: added https:// pattern for " Yann E. MORIN 2015-01-14 15:55 ` Thomas Petazzoni 2 siblings, 1 reply; 7+ messages in thread From: Ivo Slanina @ 2015-01-12 16:37 UTC (permalink / raw) To: buildroot Patches located at ftp or http(s) URLs were downloaded using DOWNLOAD macro. For example, if linux source was located at external git repository, DOWNLOAD macro uses git scheme as well and buildroot tried to downlod a path using DOWNLOAD_GIT macro. As a result, nothing was downloaded and build siletly passes. Patches located at mentioned URLs is now downloaded directly with DOWNLOAD_WGET macro. Signed-off-by: Ivo Slanina <ivo.slanina@gmail.com> --- linux/linux.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linux/linux.mk b/linux/linux.mk index d02b02b..29f59e8 100644 --- a/linux/linux.mk +++ b/linux/linux.mk @@ -148,7 +148,7 @@ define LINUX_DOWNLOAD_PATCHES $(if $(LINUX_PATCHES), @$(call MESSAGE,"Download additional patches")) $(foreach patch,$(filter ftp://% http://% https://%,$(LINUX_PATCHES)),\ - $(call DOWNLOAD,$(patch))$(sep)) + $(call DOWNLOAD_WGET,$(patch),$(notdir $(patch)))$(sep)) endef LINUX_POST_DOWNLOAD_HOOKS += LINUX_DOWNLOAD_PATCHES -- 1.7.10.4 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* [Buildroot] [PATCH 2/2] linux/linux.mk: fixed downloading kernel patches 2015-01-12 16:37 ` [Buildroot] [PATCH 2/2] linux/linux.mk: fixed downloading " Ivo Slanina @ 2015-01-12 21:38 ` Yann E. MORIN 2015-01-13 10:32 ` Ivo Slanina 0 siblings, 1 reply; 7+ messages in thread From: Yann E. MORIN @ 2015-01-12 21:38 UTC (permalink / raw) To: buildroot Ivo, All, On 2015-01-12 17:37 +0100, Ivo Slanina spake thusly: > Patches located at ftp or http(s) URLs were downloaded using DOWNLOAD > macro. For example, if linux source was located at external git > repository, DOWNLOAD macro uses git scheme as well and buildroot > tried to downlod a path using DOWNLOAD_GIT macro. As a result, nothing > was downloaded and build siletly passes. I had a hard time understanding how that would be possible. So I'll write it here so we're sure we're speaking about the same thing. If you set your options to: BR2_LINUX_KERNEL_CUSTOM_GIT=y BR2_LINUX_KERNEL_CUSTOM_REPO_URL="http://foo/bar/buz.git" BR2_LINUX_KERNEL_PATCH="http://foo/bar/buz.patch" Then this is translated in the code as: [linux/linux.mk] else ifeq ($(BR2_LINUX_KERNEL_CUSTOM_GIT),y) LINUX_SITE = $(call qstrip,$(BR2_LINUX_KERNEL_CUSTOM_REPO_URL)) LINUX_SITE_METHOD = git else [...] which means _SITE_METHOD is set to git, and thus our DOWNLOAD_INNER macro relies on this to decide how to do the download: [package/pkg-download] if test -z "$($(PKG)_SITE_METHOD)" ; then \ scheme="$(call geturischeme,$(1))" ; \ else \ scheme="$($(PKG)_SITE_METHOD)" ; \ fi ; \ So, this sounds legit, indeed. However, I'm not too fond that we directly use the internal download macros. But I guess since we ecplicitly filter on schemes wget understands, that's pretty OK. Which still prompts a question: what if the user has patches he want to download via scp? We do not handle this case for now, right. Should we? Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Regards, Yann E. MORIN. > Patches located at mentioned URLs is now downloaded directly with > DOWNLOAD_WGET macro. > > Signed-off-by: Ivo Slanina <ivo.slanina@gmail.com> > --- > linux/linux.mk | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/linux/linux.mk b/linux/linux.mk > index d02b02b..29f59e8 100644 > --- a/linux/linux.mk > +++ b/linux/linux.mk > @@ -148,7 +148,7 @@ define LINUX_DOWNLOAD_PATCHES > $(if $(LINUX_PATCHES), > @$(call MESSAGE,"Download additional patches")) > $(foreach patch,$(filter ftp://% http://% https://%,$(LINUX_PATCHES)),\ > - $(call DOWNLOAD,$(patch))$(sep)) > + $(call DOWNLOAD_WGET,$(patch),$(notdir $(patch)))$(sep)) > endef > > LINUX_POST_DOWNLOAD_HOOKS += LINUX_DOWNLOAD_PATCHES > -- > 1.7.10.4 > > _______________________________________________ > buildroot mailing list > buildroot at busybox.net > http://lists.busybox.net/mailman/listinfo/buildroot -- .-----------------.--------------------.------------------.--------------------. | Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: | | +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ | | +33 223 225 172 `------------.-------: X AGAINST | \e/ There is no | | http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. | '------------------------------^-------^------------------^--------------------' ^ permalink raw reply [flat|nested] 7+ messages in thread
* [Buildroot] [PATCH 2/2] linux/linux.mk: fixed downloading kernel patches 2015-01-12 21:38 ` Yann E. MORIN @ 2015-01-13 10:32 ` Ivo Slanina 2015-01-13 18:23 ` Yann E. MORIN 0 siblings, 1 reply; 7+ messages in thread From: Ivo Slanina @ 2015-01-13 10:32 UTC (permalink / raw) To: buildroot Dear Yann Morin, On 01/12/2015 10:38 PM, Yann E. MORIN wrote: > Ivo, All, > On 2015-01-12 17:37 +0100, Ivo Slanina spake thusly: >> Patches located at ftp or http(s) URLs were downloaded using DOWNLOAD >> macro. For example, if linux source was located at external git >> repository, DOWNLOAD macro uses git scheme as well and buildroot >> tried to downlod a path using DOWNLOAD_GIT macro. As a result, nothing >> was downloaded and build siletly passes. > > I had a hard time understanding how that would be possible. So I'll > write it here so we're sure we're speaking about the same thing. If you > set your options to: > > BR2_LINUX_KERNEL_CUSTOM_GIT=y > BR2_LINUX_KERNEL_CUSTOM_REPO_URL="http://foo/bar/buz.git" > BR2_LINUX_KERNEL_PATCH="http://foo/bar/buz.patch" > > Then this is translated in the code as: > > [linux/linux.mk] > else ifeq ($(BR2_LINUX_KERNEL_CUSTOM_GIT),y) > LINUX_SITE = $(call qstrip,$(BR2_LINUX_KERNEL_CUSTOM_REPO_URL)) > LINUX_SITE_METHOD = git > else [...] > > which means _SITE_METHOD is set to git, and thus our DOWNLOAD_INNER > macro relies on this to decide how to do the download: > > [package/pkg-download] > if test -z "$($(PKG)_SITE_METHOD)" ; then \ > scheme="$(call geturischeme,$(1))" ; \ > else \ > scheme="$($(PKG)_SITE_METHOD)" ; \ > fi ; \ > > So, this sounds legit, indeed. > > However, I'm not too fond that we directly use the internal download > macros. But I guess since we ecplicitly filter on schemes wget > understands, that's pretty OK. > > Which still prompts a question: what if the user has patches he want to > download via scp? We do not handle this case for now, right. Should we? Yes, this is true. Another solution would be to add optional parameter to DOWNLOAD macro in order to force execute scheme="$(call geturischeme,$(1))". When I get back from my work, I'll send another patch version :) Regards, Ivo Slanina > > Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr> > > Regards, > Yann E. MORIN. > >> Patches located at mentioned URLs is now downloaded directly with >> DOWNLOAD_WGET macro. >> >> Signed-off-by: Ivo Slanina <ivo.slanina@gmail.com> >> --- >> linux/linux.mk | 2 +- >> 1 file changed, 1 insertion(+), 1 deletion(-) >> >> diff --git a/linux/linux.mk b/linux/linux.mk >> index d02b02b..29f59e8 100644 >> --- a/linux/linux.mk >> +++ b/linux/linux.mk >> @@ -148,7 +148,7 @@ define LINUX_DOWNLOAD_PATCHES >> $(if $(LINUX_PATCHES), >> @$(call MESSAGE,"Download additional patches")) >> $(foreach patch,$(filter ftp://% http://% https://%,$(LINUX_PATCHES)),\ >> - $(call DOWNLOAD,$(patch))$(sep)) >> + $(call DOWNLOAD_WGET,$(patch),$(notdir $(patch)))$(sep)) >> endef >> >> LINUX_POST_DOWNLOAD_HOOKS += LINUX_DOWNLOAD_PATCHES >> -- >> 1.7.10.4 >> >> _______________________________________________ >> buildroot mailing list >> buildroot at busybox.net >> http://lists.busybox.net/mailman/listinfo/buildroot > ^ permalink raw reply [flat|nested] 7+ messages in thread
* [Buildroot] [PATCH 2/2] linux/linux.mk: fixed downloading kernel patches 2015-01-13 10:32 ` Ivo Slanina @ 2015-01-13 18:23 ` Yann E. MORIN 0 siblings, 0 replies; 7+ messages in thread From: Yann E. MORIN @ 2015-01-13 18:23 UTC (permalink / raw) To: buildroot Ivo, All, On 2015-01-13 11:32 +0100, Ivo Slanina spake thusly: > On 01/12/2015 10:38 PM, Yann E. MORIN wrote: > > Ivo, All, > > On 2015-01-12 17:37 +0100, Ivo Slanina spake thusly: > >> Patches located at ftp or http(s) URLs were downloaded using DOWNLOAD > >> macro. For example, if linux source was located at external git > >> repository, DOWNLOAD macro uses git scheme as well and buildroot > >> tried to downlod a path using DOWNLOAD_GIT macro. As a result, nothing > >> was downloaded and build siletly passes. [--SNIP--] > > Which still prompts a question: what if the user has patches he want to > > download via scp? We do not handle this case for now, right. Should we? > > Yes, this is true. Another solution would be to add optional parameter > to DOWNLOAD macro in order to force execute scheme="$(call geturischeme,$(1))". > > When I get back from my work, I'll send another patch version :) No need to "fix" your patch: it is just correct, that's why I replied with: > > Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Supporting scp would be a new feature, so shouold be done in a separate patch. You are welcome to provide such another patch if you want, of course! ;-) Thanks! :-) Regards, Yann E. MORIN. -- .-----------------.--------------------.------------------.--------------------. | Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: | | +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ | | +33 223 225 172 `------------.-------: X AGAINST | \e/ There is no | | http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. | '------------------------------^-------^------------------^--------------------' ^ permalink raw reply [flat|nested] 7+ messages in thread
* [Buildroot] [PATCH 1/2] linux/linux.mk: added https:// pattern for kernel patches 2015-01-12 16:37 [Buildroot] [PATCH 1/2] linux/linux.mk: added https:// pattern for kernel patches Ivo Slanina 2015-01-12 16:37 ` [Buildroot] [PATCH 2/2] linux/linux.mk: fixed downloading " Ivo Slanina @ 2015-01-12 21:17 ` Yann E. MORIN 2015-01-14 15:55 ` Thomas Petazzoni 2 siblings, 0 replies; 7+ messages in thread From: Yann E. MORIN @ 2015-01-12 21:17 UTC (permalink / raw) To: buildroot Ivo, All, On 2015-01-12 17:37 +0100, Ivo Slanina spake thusly: > Patches located at https:// scheme URL were threated as directories, > causing build failures. > > Fixed by adding https:// pattern. > > Signed-off-by: Ivo Slanina <ivo.slanina@gmail.com> Yep, sounds legit. ;-) Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Regards, Yann E. MORIN. > --- > linux/linux.mk | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/linux/linux.mk b/linux/linux.mk > index 680521c..d02b02b 100644 > --- a/linux/linux.mk > +++ b/linux/linux.mk > @@ -147,7 +147,7 @@ endif # BR2_LINUX_KERNEL_VMLINUX > define LINUX_DOWNLOAD_PATCHES > $(if $(LINUX_PATCHES), > @$(call MESSAGE,"Download additional patches")) > - $(foreach patch,$(filter ftp://% http://%,$(LINUX_PATCHES)),\ > + $(foreach patch,$(filter ftp://% http://% https://%,$(LINUX_PATCHES)),\ > $(call DOWNLOAD,$(patch))$(sep)) > endef > > @@ -155,7 +155,7 @@ LINUX_POST_DOWNLOAD_HOOKS += LINUX_DOWNLOAD_PATCHES > > define LINUX_APPLY_PATCHES > for p in $(LINUX_PATCHES) ; do \ > - if echo $$p | grep -q -E "^ftp://|^http://" ; then \ > + if echo $$p | grep -q -E "^ftp://|^http://|^https://" ; then \ > $(APPLY_PATCHES) $(@D) $(DL_DIR) `basename $$p` ; \ > elif test -d $$p ; then \ > $(APPLY_PATCHES) $(@D) $$p linux-\*.patch ; \ > -- > 1.7.10.4 > > _______________________________________________ > buildroot mailing list > buildroot at busybox.net > http://lists.busybox.net/mailman/listinfo/buildroot -- .-----------------.--------------------.------------------.--------------------. | Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: | | +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ | | +33 223 225 172 `------------.-------: X AGAINST | \e/ There is no | | http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. | '------------------------------^-------^------------------^--------------------' ^ permalink raw reply [flat|nested] 7+ messages in thread
* [Buildroot] [PATCH 1/2] linux/linux.mk: added https:// pattern for kernel patches 2015-01-12 16:37 [Buildroot] [PATCH 1/2] linux/linux.mk: added https:// pattern for kernel patches Ivo Slanina 2015-01-12 16:37 ` [Buildroot] [PATCH 2/2] linux/linux.mk: fixed downloading " Ivo Slanina 2015-01-12 21:17 ` [Buildroot] [PATCH 1/2] linux/linux.mk: added https:// pattern for " Yann E. MORIN @ 2015-01-14 15:55 ` Thomas Petazzoni 2 siblings, 0 replies; 7+ messages in thread From: Thomas Petazzoni @ 2015-01-14 15:55 UTC (permalink / raw) To: buildroot Dear Ivo Slanina, On Mon, 12 Jan 2015 17:37:25 +0100, Ivo Slanina wrote: > Patches located at https:// scheme URL were threated as directories, > causing build failures. > > Fixed by adding https:// pattern. > > Signed-off-by: Ivo Slanina <ivo.slanina@gmail.com> > --- > linux/linux.mk | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) Both patches applied, thanks. Thomas -- Thomas Petazzoni, CTO, Free Electrons Embedded Linux, Kernel and Android engineering http://free-electrons.com ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2015-01-14 15:55 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2015-01-12 16:37 [Buildroot] [PATCH 1/2] linux/linux.mk: added https:// pattern for kernel patches Ivo Slanina 2015-01-12 16:37 ` [Buildroot] [PATCH 2/2] linux/linux.mk: fixed downloading " Ivo Slanina 2015-01-12 21:38 ` Yann E. MORIN 2015-01-13 10:32 ` Ivo Slanina 2015-01-13 18:23 ` Yann E. MORIN 2015-01-12 21:17 ` [Buildroot] [PATCH 1/2] linux/linux.mk: added https:// pattern for " Yann E. MORIN 2015-01-14 15:55 ` Thomas Petazzoni
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox