All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 1/2] docker-ce: improve hardcoded CC for cross compile
@ 2019-09-18  7:58 Stefan Agner
  2019-09-18  7:58 ` [PATCH v2 2/2] docker-ce: update to v19.03.2 Stefan Agner
  0 siblings, 1 reply; 8+ messages in thread
From: Stefan Agner @ 2019-09-18  7:58 UTC (permalink / raw)
  To: meta-virtualization; +Cc: Stefan Agner

From: Stefan Agner <stefan.agner@toradex.com>

Since commit applied in moby [61a3285 Support cross-compile for arm]
it hardcoded var-CC to support cross-compile for arm

Correct it with "${parameter:-word}" format, it is helpful for user
define toolchains

(Use Default Values.  If parameter is unset or null, the expansion of
word is substituted.  Otherwise, the value of parameter is substituted.)

https://github.com/moby/moby/commit/61a3285864d3f1b489f48f765b61b2c7bd300372

This fixes a build issue seen when building docker-ce:
  exec: "aarch64-linux-gnu-gcc": executable file not found in $PATH

Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Signed-off-by: Stefan Agner <stefan.agner@toradex.com>
---
 recipes-containers/docker/docker-ce_git.bb    |  1 +
 ...dcoded-CC-on-cross-compile-docker-ce.patch | 61 +++++++++++++++++++
 2 files changed, 62 insertions(+)
 create mode 100644 recipes-containers/docker/files/0001-imporve-hardcoded-CC-on-cross-compile-docker-ce.patch

diff --git a/recipes-containers/docker/docker-ce_git.bb b/recipes-containers/docker/docker-ce_git.bb
index a3e27a5..215f114 100644
--- a/recipes-containers/docker/docker-ce_git.bb
+++ b/recipes-containers/docker/docker-ce_git.bb
@@ -25,6 +25,7 @@ SRC_URI = "\
 	git://github.com/docker/libnetwork.git;branch=master;name=libnetwork;destsuffix=git/libnetwork \
 	file://0001-libnetwork-use-GO-instead-of-go.patch \
 	file://docker.init \
+	file://0001-imporve-hardcoded-CC-on-cross-compile-docker-ce.patch \
 	"
 
 require docker.inc
diff --git a/recipes-containers/docker/files/0001-imporve-hardcoded-CC-on-cross-compile-docker-ce.patch b/recipes-containers/docker/files/0001-imporve-hardcoded-CC-on-cross-compile-docker-ce.patch
new file mode 100644
index 0000000..70fdaf8
--- /dev/null
+++ b/recipes-containers/docker/files/0001-imporve-hardcoded-CC-on-cross-compile-docker-ce.patch
@@ -0,0 +1,61 @@
+From 1263fdb50a540e9db742694b7cee08284ad986d0 Mon Sep 17 00:00:00 2001
+From: Hongxu Jia <hongxu.jia@windriver.com>
+Date: Wed, 17 Jul 2019 17:34:04 +0800
+Subject: [PATCH] imporve hardcoded CC on cross compile
+
+Since commit applied in moby [61a3285 Support cross-compile for arm]
+it hardcoded var-CC to support cross-compile for arm
+
+Correct it with "${parameter:-word}" format, it is helpful for user
+define toolchains
+
+(Use Default Values.  If parameter is unset or null, the expansion of
+word is substituted.  Otherwise, the value of parameter is substituted.)
+
+Upstream-Status: Submitted [https://github.com/moby/moby/pull/39546]
+
+Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
+---
+ components/engine/hack/make/.binary | 10 +++++-----
+ 1 file changed, 5 insertions(+), 5 deletions(-)
+
+diff --git a/src/import/components/engine/hack/make/.binary b/src/import/components/engine/hack/make/.binary
+index 53de6749e5..66f4ca05f3 100644
+--- a/src/import/components/engine/hack/make/.binary
++++ b/src/import/components/engine/hack/make/.binary
+@@ -44,27 +44,27 @@ if [ "$(go env GOOS)/$(go env GOARCH)" != "$(go env GOHOSTOS)/$(go env GOHOSTARC
+ 	# must be cross-compiling!
+ 	case "$(go env GOOS)/$(go env GOARCH)" in
+ 		windows/amd64)
+-			export CC=x86_64-w64-mingw32-gcc
++			export CC="${CC:-x86_64-w64-mingw32-gcc}"
+ 			export CGO_ENABLED=1
+ 			;;
+ 		linux/arm)
+ 			case "${GOARM}" in
+ 			5|"")
+-				export CC=arm-linux-gnueabi-gcc
++				export CC="${CC:-arm-linux-gnueabi-gcc}"
+ 				export CGO_ENABLED=1
+ 				;;
+ 			7)
+-				export CC=arm-linux-gnueabihf-gcc
++				export CC="${CC:-arm-linux-gnueabihf-gcc}"
+ 				export CGO_ENABLED=1
+ 				;;
+ 			esac
+ 			;;
+ 		linux/arm64)
+-			export CC=aarch64-linux-gnu-gcc
++			export CC="${CC:-aarch64-linux-gnu-gcc}"
+ 			export CGO_ENABLED=1
+ 			;;
+ 		linux/amd64)
+-			export CC=x86_64-linux-gnu-gcc
++			export CC="${CC:-x86_64-linux-gnu-gcc}"
+ 			export CGO_ENABLED=1
+ 			;;
+ 	esac
+-- 
+2.23.0
+
-- 
2.20.1



^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [PATCH v2 2/2] docker-ce: update to v19.03.2
  2019-09-18  7:58 [PATCH v2 1/2] docker-ce: improve hardcoded CC for cross compile Stefan Agner
@ 2019-09-18  7:58 ` Stefan Agner
  2019-09-18 17:52   ` Bruce Ashfield
  0 siblings, 1 reply; 8+ messages in thread
From: Stefan Agner @ 2019-09-18  7:58 UTC (permalink / raw)
  To: meta-virtualization; +Cc: Stefan Agner

From: Stefan Agner <stefan.agner@toradex.com>

Bump the git hashes to Docker CE v19.03.2.

Signed-off-by: Stefan Agner <stefan.agner@toradex.com>
---
Changes in v2:
- Bump to v19.03.2 final release
- Drop docker (non-ce) recipe patch as that recipe can not be bumped to a
  Docker stable patch release

 recipes-containers/docker/docker-ce_git.bb | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/recipes-containers/docker/docker-ce_git.bb b/recipes-containers/docker/docker-ce_git.bb
index 215f114..52b146d 100644
--- a/recipes-containers/docker/docker-ce_git.bb
+++ b/recipes-containers/docker/docker-ce_git.bb
@@ -18,7 +18,7 @@ DESCRIPTION = "Linux container runtime \
  subtle and/or glaring issues. \
  "
 
-SRCREV_docker = "2416d7f930859912c883f964b1cee6909635f951"
+SRCREV_docker = "6a30dfca03664a0b6bf0646a7d389ee7d0318e6e"
 SRCREV_libnetwork = "5ac07abef4eee176423fdc1b870d435258e2d381"
 SRC_URI = "\
 	git://github.com/docker/docker-ce.git;branch=19.03;name=docker \
@@ -38,7 +38,7 @@ GO_IMPORT = "import"
 
 S = "${WORKDIR}/git"
 
-DOCKER_VERSION = "19.03.0-rc3-ce"
+DOCKER_VERSION = "19.03.2-ce"
 PV = "${DOCKER_VERSION}+git${SRCREV_docker}"
 
 PACKAGES =+ "${PN}-contrib"
-- 
2.20.1



^ permalink raw reply related	[flat|nested] 8+ messages in thread

* Re: [PATCH v2 2/2] docker-ce: update to v19.03.2
  2019-09-18  7:58 ` [PATCH v2 2/2] docker-ce: update to v19.03.2 Stefan Agner
@ 2019-09-18 17:52   ` Bruce Ashfield
  2019-09-20  7:16     ` Stefan Agner
  0 siblings, 1 reply; 8+ messages in thread
From: Bruce Ashfield @ 2019-09-18 17:52 UTC (permalink / raw)
  To: Stefan Agner; +Cc: meta-virtualization, Stefan Agner

On Wed, Sep 18, 2019 at 3:59 AM Stefan Agner <stefan@agner.ch> wrote:
>
> From: Stefan Agner <stefan.agner@toradex.com>
>
> Bump the git hashes to Docker CE v19.03.2.
>
> Signed-off-by: Stefan Agner <stefan.agner@toradex.com>
> ---
> Changes in v2:
> - Bump to v19.03.2 final release
> - Drop docker (non-ce) recipe patch as that recipe can not be bumped to a
>   Docker stable patch release

Ack'd. I'll take care of the moby recipe shortly. I've pulled this in
for testing.

Bruce

>
>  recipes-containers/docker/docker-ce_git.bb | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/recipes-containers/docker/docker-ce_git.bb b/recipes-containers/docker/docker-ce_git.bb
> index 215f114..52b146d 100644
> --- a/recipes-containers/docker/docker-ce_git.bb
> +++ b/recipes-containers/docker/docker-ce_git.bb
> @@ -18,7 +18,7 @@ DESCRIPTION = "Linux container runtime \
>   subtle and/or glaring issues. \
>   "
>
> -SRCREV_docker = "2416d7f930859912c883f964b1cee6909635f951"
> +SRCREV_docker = "6a30dfca03664a0b6bf0646a7d389ee7d0318e6e"
>  SRCREV_libnetwork = "5ac07abef4eee176423fdc1b870d435258e2d381"
>  SRC_URI = "\
>         git://github.com/docker/docker-ce.git;branch=19.03;name=docker \
> @@ -38,7 +38,7 @@ GO_IMPORT = "import"
>
>  S = "${WORKDIR}/git"
>
> -DOCKER_VERSION = "19.03.0-rc3-ce"
> +DOCKER_VERSION = "19.03.2-ce"
>  PV = "${DOCKER_VERSION}+git${SRCREV_docker}"
>
>  PACKAGES =+ "${PN}-contrib"
> --
> 2.20.1
>
> --
> _______________________________________________
> meta-virtualization mailing list
> meta-virtualization@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/meta-virtualization



-- 
- Thou shalt not follow the NULL pointer, for chaos and madness await
thee at its end
- "Use the force Harry" - Gandalf, Star Trek II


^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH v2 2/2] docker-ce: update to v19.03.2
  2019-09-18 17:52   ` Bruce Ashfield
@ 2019-09-20  7:16     ` Stefan Agner
  2019-09-21  3:28       ` Bruce Ashfield
  0 siblings, 1 reply; 8+ messages in thread
From: Stefan Agner @ 2019-09-20  7:16 UTC (permalink / raw)
  To: Bruce Ashfield; +Cc: meta-virtualization, Stefan Agner

On 2019-09-18 19:52, Bruce Ashfield wrote:
> On Wed, Sep 18, 2019 at 3:59 AM Stefan Agner <stefan@agner.ch> wrote:
>>
>> From: Stefan Agner <stefan.agner@toradex.com>
>>
>> Bump the git hashes to Docker CE v19.03.2.
>>
>> Signed-off-by: Stefan Agner <stefan.agner@toradex.com>
>> ---
>> Changes in v2:
>> - Bump to v19.03.2 final release
>> - Drop docker (non-ce) recipe patch as that recipe can not be bumped to a
>>   Docker stable patch release
> 
> Ack'd. I'll take care of the moby recipe shortly. I've pulled this in
> for testing.

Thx. Just FYI, this recipe currently does not build. So it would be nice
to have this fixed soon.

--
Stefan

> 
> Bruce
> 
>>
>>  recipes-containers/docker/docker-ce_git.bb | 4 ++--
>>  1 file changed, 2 insertions(+), 2 deletions(-)
>>
>> diff --git a/recipes-containers/docker/docker-ce_git.bb b/recipes-containers/docker/docker-ce_git.bb
>> index 215f114..52b146d 100644
>> --- a/recipes-containers/docker/docker-ce_git.bb
>> +++ b/recipes-containers/docker/docker-ce_git.bb
>> @@ -18,7 +18,7 @@ DESCRIPTION = "Linux container runtime \
>>   subtle and/or glaring issues. \
>>   "
>>
>> -SRCREV_docker = "2416d7f930859912c883f964b1cee6909635f951"
>> +SRCREV_docker = "6a30dfca03664a0b6bf0646a7d389ee7d0318e6e"
>>  SRCREV_libnetwork = "5ac07abef4eee176423fdc1b870d435258e2d381"
>>  SRC_URI = "\
>>         git://github.com/docker/docker-ce.git;branch=19.03;name=docker \
>> @@ -38,7 +38,7 @@ GO_IMPORT = "import"
>>
>>  S = "${WORKDIR}/git"
>>
>> -DOCKER_VERSION = "19.03.0-rc3-ce"
>> +DOCKER_VERSION = "19.03.2-ce"
>>  PV = "${DOCKER_VERSION}+git${SRCREV_docker}"
>>
>>  PACKAGES =+ "${PN}-contrib"
>> --
>> 2.20.1
>>
>> --
>> _______________________________________________
>> meta-virtualization mailing list
>> meta-virtualization@yoctoproject.org
>> https://lists.yoctoproject.org/listinfo/meta-virtualization


^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH v2 2/2] docker-ce: update to v19.03.2
  2019-09-20  7:16     ` Stefan Agner
@ 2019-09-21  3:28       ` Bruce Ashfield
  2019-09-21  3:35         ` Bruce Ashfield
  0 siblings, 1 reply; 8+ messages in thread
From: Bruce Ashfield @ 2019-09-21  3:28 UTC (permalink / raw)
  To: Stefan Agner; +Cc: meta-virtualization, Stefan Agner

[-- Attachment #1: Type: text/plain, Size: 2512 bytes --]

On Fri, Sep 20, 2019 at 3:16 AM Stefan Agner <stefan@agner.ch> wrote:

> On 2019-09-18 19:52, Bruce Ashfield wrote:
> > On Wed, Sep 18, 2019 at 3:59 AM Stefan Agner <stefan@agner.ch> wrote:
> >>
> >> From: Stefan Agner <stefan.agner@toradex.com>
> >>
> >> Bump the git hashes to Docker CE v19.03.2.
> >>
> >> Signed-off-by: Stefan Agner <stefan.agner@toradex.com>
> >> ---
> >> Changes in v2:
> >> - Bump to v19.03.2 final release
> >> - Drop docker (non-ce) recipe patch as that recipe can not be bumped to
> a
> >>   Docker stable patch release
> >
> > Ack'd. I'll take care of the moby recipe shortly. I've pulled this in
> > for testing.
>
> Thx. Just FYI, this recipe currently does not build. So it would be nice
> to have this fixed soon.
>

Yup. I've been seeing the issue as well, but the 5.2 kernel intro to
oe-core has preempted some things for the last little while.

I have the virtual/docker and moby switch pretty much done, so it'll all be
fixed up shortly.

Bruce



>
> --
> Stefan
>
> >
> > Bruce
> >
> >>
> >>  recipes-containers/docker/docker-ce_git.bb | 4 ++--
> >>  1 file changed, 2 insertions(+), 2 deletions(-)
> >>
> >> diff --git a/recipes-containers/docker/docker-ce_git.bb
> b/recipes-containers/docker/docker-ce_git.bb
> >> index 215f114..52b146d 100644
> >> --- a/recipes-containers/docker/docker-ce_git.bb
> >> +++ b/recipes-containers/docker/docker-ce_git.bb
> >> @@ -18,7 +18,7 @@ DESCRIPTION = "Linux container runtime \
> >>   subtle and/or glaring issues. \
> >>   "
> >>
> >> -SRCREV_docker = "2416d7f930859912c883f964b1cee6909635f951"
> >> +SRCREV_docker = "6a30dfca03664a0b6bf0646a7d389ee7d0318e6e"
> >>  SRCREV_libnetwork = "5ac07abef4eee176423fdc1b870d435258e2d381"
> >>  SRC_URI = "\
> >>         git://github.com/docker/docker-ce.git;branch=19.03;name=docker
> \
> >> @@ -38,7 +38,7 @@ GO_IMPORT = "import"
> >>
> >>  S = "${WORKDIR}/git"
> >>
> >> -DOCKER_VERSION = "19.03.0-rc3-ce"
> >> +DOCKER_VERSION = "19.03.2-ce"
> >>  PV = "${DOCKER_VERSION}+git${SRCREV_docker}"
> >>
> >>  PACKAGES =+ "${PN}-contrib"
> >> --
> >> 2.20.1
> >>
> >> --
> >> _______________________________________________
> >> meta-virtualization mailing list
> >> meta-virtualization@yoctoproject.org
> >> https://lists.yoctoproject.org/listinfo/meta-virtualization
>


-- 
- Thou shalt not follow the NULL pointer, for chaos and madness await thee
at its end
- "Use the force Harry" - Gandalf, Star Trek II

[-- Attachment #2: Type: text/html, Size: 4797 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH v2 2/2] docker-ce: update to v19.03.2
  2019-09-21  3:28       ` Bruce Ashfield
@ 2019-09-21  3:35         ` Bruce Ashfield
  2019-09-21  6:31           ` Stefan Agner
  0 siblings, 1 reply; 8+ messages in thread
From: Bruce Ashfield @ 2019-09-21  3:35 UTC (permalink / raw)
  To: Stefan Agner; +Cc: meta-virtualization, Stefan Agner

[-- Attachment #1: Type: text/plain, Size: 3160 bytes --]

On Fri, Sep 20, 2019 at 11:28 PM Bruce Ashfield <bruce.ashfield@gmail.com>
wrote:

>
>
> On Fri, Sep 20, 2019 at 3:16 AM Stefan Agner <stefan@agner.ch> wrote:
>
>> On 2019-09-18 19:52, Bruce Ashfield wrote:
>> > On Wed, Sep 18, 2019 at 3:59 AM Stefan Agner <stefan@agner.ch> wrote:
>> >>
>> >> From: Stefan Agner <stefan.agner@toradex.com>
>> >>
>> >> Bump the git hashes to Docker CE v19.03.2.
>> >>
>> >> Signed-off-by: Stefan Agner <stefan.agner@toradex.com>
>> >> ---
>> >> Changes in v2:
>> >> - Bump to v19.03.2 final release
>> >> - Drop docker (non-ce) recipe patch as that recipe can not be bumped
>> to a
>> >>   Docker stable patch release
>> >
>> > Ack'd. I'll take care of the moby recipe shortly. I've pulled this in
>> > for testing.
>>
>> Thx. Just FYI, this recipe currently does not build. So it would be nice
>> to have this fixed soon.
>>
>
> Yup. I've been seeing the issue as well, but the 5.2 kernel intro to
> oe-core has preempted some things for the last little while.
>
>
Actually, I take that back.

What configuration are you using that the current docker (non-ce) recipe
isn't building ?

The build error that I was dealing with was due to my SRCREV bumps and
other fixing, but when I do a build of docker on an unmodified master
branch, I have no issues.

Bruce



> I have the virtual/docker and moby switch pretty much done, so it'll all
> be fixed up shortly.
>
> Bruce
>
>
>
>>
>> --
>> Stefan
>>
>> >
>> > Bruce
>> >
>> >>
>> >>  recipes-containers/docker/docker-ce_git.bb | 4 ++--
>> >>  1 file changed, 2 insertions(+), 2 deletions(-)
>> >>
>> >> diff --git a/recipes-containers/docker/docker-ce_git.bb
>> b/recipes-containers/docker/docker-ce_git.bb
>> >> index 215f114..52b146d 100644
>> >> --- a/recipes-containers/docker/docker-ce_git.bb
>> >> +++ b/recipes-containers/docker/docker-ce_git.bb
>> >> @@ -18,7 +18,7 @@ DESCRIPTION = "Linux container runtime \
>> >>   subtle and/or glaring issues. \
>> >>   "
>> >>
>> >> -SRCREV_docker = "2416d7f930859912c883f964b1cee6909635f951"
>> >> +SRCREV_docker = "6a30dfca03664a0b6bf0646a7d389ee7d0318e6e"
>> >>  SRCREV_libnetwork = "5ac07abef4eee176423fdc1b870d435258e2d381"
>> >>  SRC_URI = "\
>> >>         git://github.com/docker/docker-ce.git;branch=19.03;name=docker
>> \
>> >> @@ -38,7 +38,7 @@ GO_IMPORT = "import"
>> >>
>> >>  S = "${WORKDIR}/git"
>> >>
>> >> -DOCKER_VERSION = "19.03.0-rc3-ce"
>> >> +DOCKER_VERSION = "19.03.2-ce"
>> >>  PV = "${DOCKER_VERSION}+git${SRCREV_docker}"
>> >>
>> >>  PACKAGES =+ "${PN}-contrib"
>> >> --
>> >> 2.20.1
>> >>
>> >> --
>> >> _______________________________________________
>> >> meta-virtualization mailing list
>> >> meta-virtualization@yoctoproject.org
>> >> https://lists.yoctoproject.org/listinfo/meta-virtualization
>>
>
>
> --
> - Thou shalt not follow the NULL pointer, for chaos and madness await thee
> at its end
> - "Use the force Harry" - Gandalf, Star Trek II
>
>

-- 
- Thou shalt not follow the NULL pointer, for chaos and madness await thee
at its end
- "Use the force Harry" - Gandalf, Star Trek II

[-- Attachment #2: Type: text/html, Size: 6377 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH v2 2/2] docker-ce: update to v19.03.2
  2019-09-21  3:35         ` Bruce Ashfield
@ 2019-09-21  6:31           ` Stefan Agner
  2019-09-21 14:11             ` Bruce Ashfield
  0 siblings, 1 reply; 8+ messages in thread
From: Stefan Agner @ 2019-09-21  6:31 UTC (permalink / raw)
  To: Bruce Ashfield; +Cc: meta-virtualization, Stefan Agner

[-- Attachment #1: Type: text/plain, Size: 3335 bytes --]

On 2019-09-21 05:35, Bruce Ashfield wrote:

> On Fri, Sep 20, 2019 at 11:28 PM Bruce Ashfield <bruce.ashfield@gmail.com> wrote: 
> 
> On Fri, Sep 20, 2019 at 3:16 AM Stefan Agner <stefan@agner.ch> wrote: On 2019-09-18 19:52, Bruce Ashfield wrote:
>> On Wed, Sep 18, 2019 at 3:59 AM Stefan Agner <stefan@agner.ch> wrote:
>>> 
>>> From: Stefan Agner <stefan.agner@toradex.com>
>>> 
>>> Bump the git hashes to Docker CE v19.03.2.
>>> 
>>> Signed-off-by: Stefan Agner <stefan.agner@toradex.com>
>>> ---
>>> Changes in v2:
>>> - Bump to v19.03.2 final release
>>> - Drop docker (non-ce) recipe patch as that recipe can not be bumped to a
>>> Docker stable patch release
>> 
>> Ack'd. I'll take care of the moby recipe shortly. I've pulled this in
>> for testing.
> 
> Thx. Just FYI, this recipe currently does not build. So it would be nice
> to have this fixed soon. 
> 
> Yup. I've been seeing the issue as well, but the 5.2 kernel intro to oe-core has preempted some things for the last little while.

Actually, I take that back.  

What configuration are you using that the current docker (non-ce) recipe
isn't building ?  

The non-ce recipe builds fine for me too. I was referring to this
(docker-ce) recipe. Patch 1/2 makes it build again. 

Best regards, 
Stefan 

> The build error that I was dealing with was due to my SRCREV bumps and other fixing, but when I do a build of docker on an unmodified master branch, I have no issues. 
> 
> Bruce 
> 
> I have the virtual/docker and moby switch pretty much done, so it'll all be fixed up shortly. 
> 
> Bruce 
> --
> Stefan
> 
>> 
>> Bruce
>> 
>>> 
>>> recipes-containers/docker/docker-ce_git.bb [1] | 4 ++--
>>> 1 file changed, 2 insertions(+), 2 deletions(-)
>>> 
>>> diff --git a/recipes-containers/docker/docker-ce_git.bb [1] b/recipes-containers/docker/docker-ce_git.bb [1]
>>> index 215f114..52b146d 100644
>>> --- a/recipes-containers/docker/docker-ce_git.bb [1]
>>> +++ b/recipes-containers/docker/docker-ce_git.bb [1]
>>> @@ -18,7 +18,7 @@ DESCRIPTION = "Linux container runtime \
>>> subtle and/or glaring issues. \
>>> "
>>> 
>>> -SRCREV_docker = "2416d7f930859912c883f964b1cee6909635f951"
>>> +SRCREV_docker = "6a30dfca03664a0b6bf0646a7d389ee7d0318e6e"
>>> SRCREV_libnetwork = "5ac07abef4eee176423fdc1b870d435258e2d381"
>>> SRC_URI = "\
>>> git://github.com/docker/docker-ce.git;branch=19.03;name=docker [2] \
>>> @@ -38,7 +38,7 @@ GO_IMPORT = "import"
>>> 
>>> S = "${WORKDIR}/git"
>>> 
>>> -DOCKER_VERSION = "19.03.0-rc3-ce"
>>> +DOCKER_VERSION = "19.03.2-ce"
>>> PV = "${DOCKER_VERSION}+git${SRCREV_docker}"
>>> 
>>> PACKAGES =+ "${PN}-contrib"
>>> --
>>> 2.20.1
>>> 
>>> --
>>> _______________________________________________
>>> meta-virtualization mailing list
>>> meta-virtualization@yoctoproject.org
>>> https://lists.yoctoproject.org/listinfo/meta-virtualization 
> -- 
> - Thou shalt not follow the NULL pointer, for chaos and madness await thee at its end
> - "Use the force Harry" - Gandalf, Star Trek II

  -- 
- Thou shalt not follow the NULL pointer, for chaos and madness await
thee at its end
- "Use the force Harry" - Gandalf, Star Trek II

 

Links:
------
[1] http://docker-ce_git.bb
[2] http://github.com/docker/docker-ce.git;branch=19.03;name=docker

[-- Attachment #2: Type: text/html, Size: 7622 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH v2 2/2] docker-ce: update to v19.03.2
  2019-09-21  6:31           ` Stefan Agner
@ 2019-09-21 14:11             ` Bruce Ashfield
  0 siblings, 0 replies; 8+ messages in thread
From: Bruce Ashfield @ 2019-09-21 14:11 UTC (permalink / raw)
  To: Stefan Agner; +Cc: meta-virtualization, Stefan Agner

[-- Attachment #1: Type: text/plain, Size: 3866 bytes --]

On Sat, Sep 21, 2019 at 2:31 AM Stefan Agner <stefan@agner.ch> wrote:

> On 2019-09-21 05:35, Bruce Ashfield wrote:
>
>
>
> On Fri, Sep 20, 2019 at 11:28 PM Bruce Ashfield <bruce.ashfield@gmail.com>
> wrote:
>
>>
>>
>> On Fri, Sep 20, 2019 at 3:16 AM Stefan Agner <stefan@agner.ch> wrote:
>>
>>> On 2019-09-18 19:52, Bruce Ashfield wrote:
>>> > On Wed, Sep 18, 2019 at 3:59 AM Stefan Agner <stefan@agner.ch> wrote:
>>> >>
>>> >> From: Stefan Agner <stefan.agner@toradex.com>
>>> >>
>>> >> Bump the git hashes to Docker CE v19.03.2.
>>> >>
>>> >> Signed-off-by: Stefan Agner <stefan.agner@toradex.com>
>>> >> ---
>>> >> Changes in v2:
>>> >> - Bump to v19.03.2 final release
>>> >> - Drop docker (non-ce) recipe patch as that recipe can not be bumped
>>> to a
>>> >>   Docker stable patch release
>>> >
>>> > Ack'd. I'll take care of the moby recipe shortly. I've pulled this in
>>> > for testing.
>>>
>>> Thx. Just FYI, this recipe currently does not build. So it would be nice
>>> to have this fixed soon.
>>
>>
>> Yup. I've been seeing the issue as well, but the 5.2 kernel intro to
>> oe-core has preempted some things for the last little while.
>>
>>
>
> Actually, I take that back.
>
> What configuration are you using that the current docker (non-ce) recipe
> isn't building ?
>
>
>
> The non-ce recipe builds fine for me too. I was referring to this
> (docker-ce) recipe. Patch 1/2 makes it build again.
>

ahaha! Sorry about that.

Yes, I'll push that fix this weekend, while I sort out the last details on
the other parts.

Bruce



>
> Best regards,
> Stefan
>
>
>
> The build error that I was dealing with was due to my SRCREV bumps and
> other fixing, but when I do a build of docker on an unmodified master
> branch, I have no issues.
>
> Bruce
>
>>
>> I have the virtual/docker and moby switch pretty much done, so it'll all
>> be fixed up shortly.
>>
>> Bruce
>>
>>>
>>> --
>>> Stefan
>>>
>>> >
>>> > Bruce
>>> >
>>> >>
>>> >>  recipes-containers/docker/docker-ce_git.bb | 4 ++--
>>> >>  1 file changed, 2 insertions(+), 2 deletions(-)
>>> >>
>>> >> diff --git a/recipes-containers/docker/docker-ce_git.bb
>>> b/recipes-containers/docker/docker-ce_git.bb
>>> >> index 215f114..52b146d 100644
>>> >> --- a/recipes-containers/docker/docker-ce_git.bb
>>> >> +++ b/recipes-containers/docker/docker-ce_git.bb
>>> >> @@ -18,7 +18,7 @@ DESCRIPTION = "Linux container runtime \
>>> >>   subtle and/or glaring issues. \
>>> >>   "
>>> >>
>>> >> -SRCREV_docker = "2416d7f930859912c883f964b1cee6909635f951"
>>> >> +SRCREV_docker = "6a30dfca03664a0b6bf0646a7d389ee7d0318e6e"
>>> >>  SRCREV_libnetwork = "5ac07abef4eee176423fdc1b870d435258e2d381"
>>> >>  SRC_URI = "\
>>> >>         git://
>>> github.com/docker/docker-ce.git;branch=19.03;name=docker \
>>> >> @@ -38,7 +38,7 @@ GO_IMPORT = "import"
>>> >>
>>> >>  S = "${WORKDIR}/git"
>>> >>
>>> >> -DOCKER_VERSION = "19.03.0-rc3-ce"
>>> >> +DOCKER_VERSION = "19.03.2-ce"
>>> >>  PV = "${DOCKER_VERSION}+git${SRCREV_docker}"
>>> >>
>>> >>  PACKAGES =+ "${PN}-contrib"
>>> >> --
>>> >> 2.20.1
>>> >>
>>> >> --
>>> >> _______________________________________________
>>> >> meta-virtualization mailing list
>>> >> meta-virtualization@yoctoproject.org
>>> >> https://lists.yoctoproject.org/listinfo/meta-virtualization
>>
>>
>>
>> --
>> - Thou shalt not follow the NULL pointer, for chaos and madness await
>> thee at its end
>> - "Use the force Harry" - Gandalf, Star Trek II
>>
>>
>
> --
> - Thou shalt not follow the NULL pointer, for chaos and madness await thee
> at its end
> - "Use the force Harry" - Gandalf, Star Trek II
>
>
>

-- 
- Thou shalt not follow the NULL pointer, for chaos and madness await thee
at its end
- "Use the force Harry" - Gandalf, Star Trek II

[-- Attachment #2: Type: text/html, Size: 8530 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2019-09-21 14:11 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-09-18  7:58 [PATCH v2 1/2] docker-ce: improve hardcoded CC for cross compile Stefan Agner
2019-09-18  7:58 ` [PATCH v2 2/2] docker-ce: update to v19.03.2 Stefan Agner
2019-09-18 17:52   ` Bruce Ashfield
2019-09-20  7:16     ` Stefan Agner
2019-09-21  3:28       ` Bruce Ashfield
2019-09-21  3:35         ` Bruce Ashfield
2019-09-21  6:31           ` Stefan Agner
2019-09-21 14:11             ` Bruce Ashfield

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.