qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH for-2.11] scripts/make-release: ship u-boot source as a tarball
@ 2017-11-07 20:52 Michael Roth
  2017-11-08  5:30 ` Thomas Huth
  2017-11-20 22:00 ` [Qemu-devel] [Qemu-stable] " Michael Roth
  0 siblings, 2 replies; 4+ messages in thread
From: Michael Roth @ 2017-11-07 20:52 UTC (permalink / raw)
  To: qemu-devel
  Cc: qemu-stable, Alexander Graf, Richard Henderson, Thomas Huth,
	Peter Maydell

The u-boot sources we ship currently cause problems with unpacking on
a case-insensitive filesystem due to path conflicts. This has been
fixed in upstream u-boot via commit 610eec7f, but since it is not
yet included in an official release we implement this approach as a
temporary workaround.

Once we move to a u-boot containing commit 610eec7f we should revert
this patch.

Cc: qemu-stable@nongnu.org
Cc: Alexander Graf <agraf@suse.de>
Cc: Richard Henderson <richard.henderson@linaro.org>
Cc: Thomas Huth <thuth@redhat.com>
Cc: Peter Maydell <peter.maydell@linaro.org>
Suggested-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Michael Roth <mdroth@linux.vnet.ibm.com>
---
 scripts/make-release | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/scripts/make-release b/scripts/make-release
index fa6323fda8..3917df7142 100755
--- a/scripts/make-release
+++ b/scripts/make-release
@@ -20,6 +20,10 @@ git checkout "v${version}"
 git submodule update --init
 (cd roms/seabios && git describe --tags --long --dirty > .version)
 rm -rf .git roms/*/.git dtc/.git pixman/.git
+# FIXME: The following line is a workaround for avoiding filename collisions
+# when unpacking u-boot sources on case-insensitive filesystems. Once we
+# update to something with u-boot commit 610eec7f0 we can drop this line.
+tar cfj roms/u-boot.tar.bz2 -C roms u-boot && rm -rf roms/u-boot
 popd
 tar cfj ${destination}.tar.bz2 ${destination}
 rm -rf ${destination}
-- 
2.11.0

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

* Re: [Qemu-devel] [PATCH for-2.11] scripts/make-release: ship u-boot source as a tarball
  2017-11-07 20:52 [Qemu-devel] [PATCH for-2.11] scripts/make-release: ship u-boot source as a tarball Michael Roth
@ 2017-11-08  5:30 ` Thomas Huth
  2017-11-20 22:00 ` [Qemu-devel] [Qemu-stable] " Michael Roth
  1 sibling, 0 replies; 4+ messages in thread
From: Thomas Huth @ 2017-11-08  5:30 UTC (permalink / raw)
  To: Michael Roth, qemu-devel
  Cc: Peter Maydell, Richard Henderson, qemu-stable, Alexander Graf

On 07.11.2017 21:52, Michael Roth wrote:
> The u-boot sources we ship currently cause problems with unpacking on
> a case-insensitive filesystem due to path conflicts. This has been
> fixed in upstream u-boot via commit 610eec7f, but since it is not
> yet included in an official release we implement this approach as a
> temporary workaround.
> 
> Once we move to a u-boot containing commit 610eec7f we should revert
> this patch.
> 
> Cc: qemu-stable@nongnu.org
> Cc: Alexander Graf <agraf@suse.de>
> Cc: Richard Henderson <richard.henderson@linaro.org>
> Cc: Thomas Huth <thuth@redhat.com>
> Cc: Peter Maydell <peter.maydell@linaro.org>
> Suggested-by: Richard Henderson <richard.henderson@linaro.org>
> Signed-off-by: Michael Roth <mdroth@linux.vnet.ibm.com>
> ---
>  scripts/make-release | 4 ++++
>  1 file changed, 4 insertions(+)
> 
> diff --git a/scripts/make-release b/scripts/make-release
> index fa6323fda8..3917df7142 100755
> --- a/scripts/make-release
> +++ b/scripts/make-release
> @@ -20,6 +20,10 @@ git checkout "v${version}"
>  git submodule update --init
>  (cd roms/seabios && git describe --tags --long --dirty > .version)
>  rm -rf .git roms/*/.git dtc/.git pixman/.git
> +# FIXME: The following line is a workaround for avoiding filename collisions
> +# when unpacking u-boot sources on case-insensitive filesystems. Once we
> +# update to something with u-boot commit 610eec7f0 we can drop this line.
> +tar cfj roms/u-boot.tar.bz2 -C roms u-boot && rm -rf roms/u-boot
>  popd
>  tar cfj ${destination}.tar.bz2 ${destination}
>  rm -rf ${destination}
> 

Reviewed-by: Thomas Huth <thuth@redhat.com>

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

* Re: [Qemu-devel] [Qemu-stable] [PATCH for-2.11] scripts/make-release: ship u-boot source as a tarball
  2017-11-07 20:52 [Qemu-devel] [PATCH for-2.11] scripts/make-release: ship u-boot source as a tarball Michael Roth
  2017-11-08  5:30 ` Thomas Huth
@ 2017-11-20 22:00 ` Michael Roth
  2017-11-21 13:26   ` Peter Maydell
  1 sibling, 1 reply; 4+ messages in thread
From: Michael Roth @ 2017-11-20 22:00 UTC (permalink / raw)
  To: qemu-devel
  Cc: Peter Maydell, Thomas Huth, Richard Henderson, qemu-stable,
	Alexander Graf

Quoting Michael Roth (2017-11-07 14:52:01)
> The u-boot sources we ship currently cause problems with unpacking on
> a case-insensitive filesystem due to path conflicts. This has been
> fixed in upstream u-boot via commit 610eec7f, but since it is not
> yet included in an official release we implement this approach as a
> temporary workaround.
> 
> Once we move to a u-boot containing commit 610eec7f we should revert
> this patch.
> 
> Cc: qemu-stable@nongnu.org
> Cc: Alexander Graf <agraf@suse.de>
> Cc: Richard Henderson <richard.henderson@linaro.org>
> Cc: Thomas Huth <thuth@redhat.com>
> Cc: Peter Maydell <peter.maydell@linaro.org>
> Suggested-by: Richard Henderson <richard.henderson@linaro.org>
> Signed-off-by: Michael Roth <mdroth@linux.vnet.ibm.com>

Ping.

Peter, would you be able to apply this directly? Not sure who else this
would go through.

> ---
>  scripts/make-release | 4 ++++
>  1 file changed, 4 insertions(+)
> 
> diff --git a/scripts/make-release b/scripts/make-release
> index fa6323fda8..3917df7142 100755
> --- a/scripts/make-release
> +++ b/scripts/make-release
> @@ -20,6 +20,10 @@ git checkout "v${version}"
>  git submodule update --init
>  (cd roms/seabios && git describe --tags --long --dirty > .version)
>  rm -rf .git roms/*/.git dtc/.git pixman/.git
> +# FIXME: The following line is a workaround for avoiding filename collisions
> +# when unpacking u-boot sources on case-insensitive filesystems. Once we
> +# update to something with u-boot commit 610eec7f0 we can drop this line.
> +tar cfj roms/u-boot.tar.bz2 -C roms u-boot && rm -rf roms/u-boot
>  popd
>  tar cfj ${destination}.tar.bz2 ${destination}
>  rm -rf ${destination}
> -- 
> 2.11.0
> 
> 

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

* Re: [Qemu-devel] [Qemu-stable] [PATCH for-2.11] scripts/make-release: ship u-boot source as a tarball
  2017-11-20 22:00 ` [Qemu-devel] [Qemu-stable] " Michael Roth
@ 2017-11-21 13:26   ` Peter Maydell
  0 siblings, 0 replies; 4+ messages in thread
From: Peter Maydell @ 2017-11-21 13:26 UTC (permalink / raw)
  To: Michael Roth
  Cc: QEMU Developers, Thomas Huth, Richard Henderson, qemu-stable,
	Alexander Graf

On 20 November 2017 at 22:00, Michael Roth <mdroth@linux.vnet.ibm.com> wrote:
> Quoting Michael Roth (2017-11-07 14:52:01)
>> The u-boot sources we ship currently cause problems with unpacking on
>> a case-insensitive filesystem due to path conflicts. This has been
>> fixed in upstream u-boot via commit 610eec7f, but since it is not
>> yet included in an official release we implement this approach as a
>> temporary workaround.
>>
>> Once we move to a u-boot containing commit 610eec7f we should revert
>> this patch.
>>
>> Cc: qemu-stable@nongnu.org
>> Cc: Alexander Graf <agraf@suse.de>
>> Cc: Richard Henderson <richard.henderson@linaro.org>
>> Cc: Thomas Huth <thuth@redhat.com>
>> Cc: Peter Maydell <peter.maydell@linaro.org>
>> Suggested-by: Richard Henderson <richard.henderson@linaro.org>
>> Signed-off-by: Michael Roth <mdroth@linux.vnet.ibm.com>
>
> Ping.
>
> Peter, would you be able to apply this directly? Not sure who else this
> would go through.

Sure. Applied to master for rc2.

thanks
-- PMM

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

end of thread, other threads:[~2017-11-21 13:26 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-11-07 20:52 [Qemu-devel] [PATCH for-2.11] scripts/make-release: ship u-boot source as a tarball Michael Roth
2017-11-08  5:30 ` Thomas Huth
2017-11-20 22:00 ` [Qemu-devel] [Qemu-stable] " Michael Roth
2017-11-21 13:26   ` Peter Maydell

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).