From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:34545) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eCArf-0007x5-IU for qemu-devel@nongnu.org; Tue, 07 Nov 2017 15:52:56 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eCArc-0006wu-EO for qemu-devel@nongnu.org; Tue, 07 Nov 2017 15:52:55 -0500 Received: from mx0b-001b2d01.pphosted.com ([148.163.158.5]:55490 helo=mx0a-001b2d01.pphosted.com) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1eCArc-0006wR-8o for qemu-devel@nongnu.org; Tue, 07 Nov 2017 15:52:52 -0500 Received: from pps.filterd (m0098416.ppops.net [127.0.0.1]) by mx0b-001b2d01.pphosted.com (8.16.0.21/8.16.0.21) with SMTP id vA7Ko50T129402 for ; Tue, 7 Nov 2017 15:52:46 -0500 Received: from e18.ny.us.ibm.com (e18.ny.us.ibm.com [129.33.205.208]) by mx0b-001b2d01.pphosted.com with ESMTP id 2e3m268fk9-1 (version=TLSv1.2 cipher=AES256-SHA bits=256 verify=NOT) for ; Tue, 07 Nov 2017 15:52:46 -0500 Received: from localhost by e18.ny.us.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Tue, 7 Nov 2017 15:52:46 -0500 From: Michael Roth Date: Tue, 7 Nov 2017 14:52:01 -0600 Message-Id: <20171107205201.10207-1-mdroth@linux.vnet.ibm.com> Subject: [Qemu-devel] [PATCH for-2.11] scripts/make-release: ship u-boot source as a tarball List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: qemu-stable@nongnu.org, 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 Cc: Richard Henderson Cc: Thomas Huth Cc: Peter Maydell Suggested-by: Richard Henderson Signed-off-by: Michael Roth --- 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