All of lore.kernel.org
 help / color / mirror / Atom feed
From: Christoph Egger <Christoph.Egger@amd.com>
To: stefano.stabellini@eu.citrix.com
Cc: Ian.Jackson@eu.citrix.com, xen-devel@lists.xensource.com,
	keir@xen.org, Ian.Campbell@citrix.com
Subject: Re: [PATCH v9 1/6] Introduce git-checkout.sh
Date: Wed, 23 Nov 2011 14:58:25 +0100	[thread overview]
Message-ID: <4ECCFC01.9000700@amd.com> (raw)
In-Reply-To: <1322056320-5826-1-git-send-email-stefano.stabellini@eu.citrix.com>

On 11/23/11 14:51, stefano.stabellini@eu.citrix.com wrote:
> From: stefano.stabellini@eu.citrix.com<stefano.stabellini@eu.citrix.com>
>
> Introduce a script to perform git checkout on an external git tree; use
> git-checkout.sh in ioemu-dir-find.
>
> Signed-off-by: Stefano Stabellini<stefano.stabellini@eu.citrix.com>

[...]

> diff --git a/tools/Makefile b/tools/Makefile
> index 9389e1f..beccad2 100644
> --- a/tools/Makefile
> +++ b/tools/Makefile
> @@ -71,7 +71,7 @@ clean: subdirs-clean
>
>   .PHONY: distclean
>   distclean: subdirs-distclean
> -	rm -rf ioemu-dir ioemu-remote
> +	rm -rf ioemu-dir ioemu-dir-remote
>
>   ifneq ($(XEN_COMPILE_ARCH),$(XEN_TARGET_ARCH))
>   IOEMU_CONFIGURE_CROSS ?= --cpu=$(XEN_TARGET_ARCH) \
> @@ -89,20 +89,8 @@ ioemu-dir-find:
>   	if test -d $(CONFIG_QEMU); then \
>   		mkdir -p ioemu-dir; \
>   	else \
> -		if [ ! -d ioemu-remote ]; then \
> -			rm -rf ioemu-remote ioemu-remote.tmp; \
> -			mkdir ioemu-remote.tmp; rmdir ioemu-remote.tmp; \
> -			$(GIT) clone $(CONFIG_QEMU) ioemu-remote.tmp; \
> -			if [ "$(QEMU_TAG)" ]; then			\
> -				cd ioemu-remote.tmp;			\
> -				$(GIT) branch -D dummy>/dev/null 2>&1 ||:; \
> -				$(GIT) checkout -b dummy $(QEMU_TAG);	\
> -				cd ..;					\
> -			fi;						\
> -			mv ioemu-remote.tmp ioemu-remote; \
> -		fi; \
> -		rm -f ioemu-dir; \
> -		ln -sf ioemu-remote ioemu-dir; \
> +		export GIT=$(GIT); \
> +		$(XEN_ROOT)/scripts/git-checkout.sh $(CONFIG_QEMU) $(QEMU_TAG) ioemu-dir; \

When you use $(SHELL) then we do not need to care about the execute bit:

+		$(SHELL) $(XEN_ROOT)/scripts/git-checkout.sh $(CONFIG_QEMU) 
$(QEMU_TAG) ioemu-dir; \


Christoph


>   	fi
>   	set -e; \
>   		$(buildmakevars2shellvars); \
> @@ -113,7 +101,7 @@ ioemu-dir-find:
>   ioemu-dir-force-update:
>   	set -ex; \
>   	if [ "$(QEMU_TAG)" ]; then \
> -		cd ioemu-remote; \
> +		cd ioemu-dir-remote; \
>   		$(GIT) fetch origin; \
>   		$(GIT) reset --hard $(QEMU_TAG); \
>   	fi


-- 
---to satisfy European Law for business letters:
Advanced Micro Devices GmbH
Einsteinring 24, 85689 Dornach b. Muenchen
Geschaeftsfuehrer: Alberto Bozzo, Andrew Bowd
Sitz: Dornach, Gemeinde Aschheim, Landkreis Muenchen
Registergericht Muenchen, HRB Nr. 43632

  reply	other threads:[~2011-11-23 13:58 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-11-23 13:50 [PATCH v9 0/6] build upstream qemu and seabios by default Stefano Stabellini
2011-11-23 13:51 ` [PATCH v9 1/6] Introduce git-checkout.sh stefano.stabellini
2011-11-23 13:58   ` Christoph Egger [this message]
2011-11-24 18:53     ` Ian Jackson
2011-11-23 13:51 ` [PATCH v9 2/6] Rename ioemu-dir as qemu-xen-traditional-dir stefano.stabellini
2011-11-23 13:51 ` [PATCH v9 3/6] move the call to xen-setup after libxc and xenstore are built stefano.stabellini
2011-11-23 13:51 ` [PATCH v9 4/6] Clone and build upstream Qemu by default stefano.stabellini
2011-11-23 13:51 ` [PATCH v9 5/6] Clone and build Seabios " stefano.stabellini
2011-12-12 17:39   ` Ian Jackson
2011-12-12 17:46     ` Ian Campbell
2011-12-12 19:26       ` Stefano Stabellini
2011-12-13 14:16         ` Ian Jackson
2011-12-13 17:24           ` Stefano Stabellini
2011-12-13 17:53             ` Ian Jackson
2011-12-13 18:22               ` Stefano Stabellini
2011-12-14  9:42                 ` Ian Campbell
2011-12-14 11:55                   ` Ian Jackson
2011-12-14 16:59                     ` Stefano Stabellini
2011-12-15  9:24                       ` Ian Campbell
2011-12-15 11:13                         ` Stefano Stabellini
2011-11-23 13:52 ` [PATCH v9 6/6] libxl: use new qemu at the location where xen-unstable installs it stefano.stabellini

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=4ECCFC01.9000700@amd.com \
    --to=christoph.egger@amd.com \
    --cc=Ian.Campbell@citrix.com \
    --cc=Ian.Jackson@eu.citrix.com \
    --cc=keir@xen.org \
    --cc=stefano.stabellini@eu.citrix.com \
    --cc=xen-devel@lists.xensource.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.