All of lore.kernel.org
 help / color / mirror / Atom feed
From: Arnout Vandecappelle <arnout@mind.be>
To: Gleb Mazovetskiy <glex.spb@gmail.com>, buildroot@buildroot.org
Subject: Re: [Buildroot] [PATCH] relocate-sdk: Allow relocating to any location
Date: Thu, 6 Jan 2022 22:28:56 +0100	[thread overview]
Message-ID: <7a3b641c-93a1-4d20-b32e-8ff88bae8fef@mind.be> (raw)
In-Reply-To: <20200328234945.12552-1-glex.spb@gmail.com>



On 29/03/2020 00:49, Gleb Mazovetskiy wrote:
> Previously, the script could only relocate to the current location.
> 
> This caused issues for SDK maintainers, as the default target location
> (e.g. /opt/my-sdk) would need to be created and the content copied
> to it during the build process, which is error-prone.
> 
> With this change you can now pass a target location argument to
> ./relocate-sdk.sh (this does not move the directory).

  Even though, as Yann indicated, the use case is a bit iffy, the patch is 
simple enough. So I applied to master, thanks.

  Your Signed-off-by was missing, so I added that.

  Regards,
  Arnout

> ---
>   support/misc/relocate-sdk.sh | 19 ++++++++++++-------
>   1 file changed, 12 insertions(+), 7 deletions(-)
> 
> diff --git a/support/misc/relocate-sdk.sh b/support/misc/relocate-sdk.sh
> index caabeaa6f6..981d272425 100755
> --- a/support/misc/relocate-sdk.sh
> +++ b/support/misc/relocate-sdk.sh
> @@ -1,15 +1,20 @@
>   #!/bin/sh
> -#
> -if [ "$#" -ne 0 ]; then
> -    echo "Run this script to relocate the buildroot SDK at that location"
> +
> +if [ "$#" -gt 1 ]; then
> +    echo "Usage: $0 [path]"
> +    echo "Run this script to relocate the buildroot SDK to the current location"
> +    echo "If [path] is given, sets the location to [path] (without moving it)"
>       exit 1
>   fi
>   
> -LOCFILE="share/buildroot/sdk-location"
> -FILEPATH="$(readlink -f "$0")"
> -NEWPATH="$(dirname "${FILEPATH}")"
> +cd "$(dirname "$(readlink -f "$0")")"
> +if [ "$#" -eq 1 ]; then
> +    NEWPATH="$1"
> +else
> +    NEWPATH="${PWD}"
> +fi
>   
> -cd "${NEWPATH}"
> +LOCFILE="share/buildroot/sdk-location"
>   if [ ! -r "${LOCFILE}" ]; then
>       echo "Previous location of the buildroot SDK not found!"
>       exit 1
> 
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

      parent reply	other threads:[~2022-01-06 21:29 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-03-28 23:49 [Buildroot] [PATCH] relocate-sdk: Allow relocating to any location Gleb Mazovetskiy
2021-07-17  9:39 ` Yann E. MORIN
2021-07-17 10:08   ` Gleb Mazovetskiy
2021-07-17 10:08     ` Gleb Mazovetskiy
2021-07-17 10:26     ` Yann E. MORIN
2021-07-17 10:33       ` Gleb Mazovetskiy
2021-07-17 10:33         ` Gleb Mazovetskiy
2022-01-06 21:28 ` Arnout Vandecappelle [this message]

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=7a3b641c-93a1-4d20-b32e-8ff88bae8fef@mind.be \
    --to=arnout@mind.be \
    --cc=buildroot@buildroot.org \
    --cc=glex.spb@gmail.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.