All of lore.kernel.org
 help / color / mirror / Atom feed
From: Arnout Vandecappelle <arnout@mind.be>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH] linux: provide symlink dtc->linux-dtc is there is no dtc yet
Date: Sat, 9 Jan 2016 01:52:23 +0100	[thread overview]
Message-ID: <569059C7.8090901@mind.be> (raw)
In-Reply-To: <1452252619-13802-1-git-send-email-patrickdepinguin@gmail.com>

 Hi Thomas,

 In the subject: is -> if

On 08-01-16 12:30, Thomas De Schampheleire wrote:
> From: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
> 
> Commit ab74e09eb4e28dab8bed8d783c5f0464d39a32e7 renamed the dtc host tool
> provided by linux to linux-dtc to avoid clashes with the dtc host tool
> provided by host-dtc.
> 
> However, external scripting may well rely on the existence of a device tree
> compiler as $(HOST_DIR)/usr/bin/dtc, regardless of its source. Changing
> these external scripts to use linux-dtc means that the scripts need to be
> aware of the buildroot release they are working with, which is not very
> nice.
> 
> Add a symlink dtc->linux-dtc when no $(HOST_DIR)/usr/bin/dtc is present.
> When host-dtc is not enabled, the end result will be dtc and
> linux-dtc representing the same thing.
> When host-dtc is enabled, either it is build before linux and no symlink
> is created at any time, or it is build after linux, and the 'install'
> command in host-dtc will overwrite the symlink with a proper dtc. In both
> cases, the end result will be dtc and linux-dtc representing a different
> thing.

 Or, when we eventually enable top-level parallel build, dtc and linux-dtc may
be installed in parallel...

 Why do you always have these controversial patches, Thomas :-)

 How about a simple:

	ln -s linux-dtc $(HOST_DIR)/usr/bin/dtc 2>/dev/null

 i.e. just try to create the symlink and ignore errors. Creating a symlink is
atomic.

 Argh, no, that leaves another race condition: the install of the dtc package
will do stat, (unlink), open, so between the stat or unlink and the open there
is a window in which the symlink will succeed. Then the version from host-dtc
will overwrite linux-dtc, which is not what we want...

 I just love race conditions :-)


 Perhaps a better solution is to revisit ab74e09e completely. The intention of
that commit was to have the linux version of dtc available for scripts. But is
there ever any reason for a script _not_ to use the linux version? So what we
would actually like is to keep a single dtc: the linux one if it is available,
that one will be used, and host-dtc is a NOP. If not, then host-dtc kicks into
action.

 So we'd add a dependency from host-dtc to linux if BR2_LINUX_KERNEL=y, and in
the build and install commands test if dtc is available in the kernel (testing
$(HOST_DIR)/usr/bin/dtc isn't sufficient, because it's possible that we rebuilt
host-dtc and then we do want to overwrite it). It's a bit kludgy but it would
work I think.

 PeterS, PeterK, what do you think?


 That said, we don't have parallel build at the moment, and my proposed
alternative is definitely going to be controversial, so we should probably
accept this one as is and revisit later. So:

Reviewed-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>


 Regards,
 Arnout

> 
> Cc: Peter Korsgaard <peter@korsgaard.com>
> Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
> ---
>  linux/linux.mk | 3 +++
>  1 file changed, 3 insertions(+)
> 
> diff --git a/linux/linux.mk b/linux/linux.mk
> index 045294b..f5c629c 100644
> --- a/linux/linux.mk
> +++ b/linux/linux.mk
> @@ -339,6 +339,9 @@ define LINUX_INSTALL_HOST_TOOLS
>  	# Installing dtc (device tree compiler) as host tool, if selected
>  	if grep -q "CONFIG_DTC=y" $(@D)/.config; then 	\
>  		$(INSTALL) -D -m 0755 $(@D)/scripts/dtc/dtc $(HOST_DIR)/usr/bin/linux-dtc ;	\
> +		if [ ! -e $(HOST_DIR)/usr/bin/dtc ]; then	\
> +			ln -sf linux-dtc $(HOST_DIR)/usr/bin/dtc ;	\
> +		fi	\
>  	fi
>  endef
>  
> 


-- 
Arnout Vandecappelle                          arnout at mind be
Senior Embedded Software Architect            +32-16-286500
Essensium/Mind                                http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium           BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint:  7493 020B C7E3 8618 8DEC 222C 82EB F404 F9AC 0DDF

  reply	other threads:[~2016-01-09  0:52 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-01-08 11:30 [Buildroot] [PATCH] linux: provide symlink dtc->linux-dtc is there is no dtc yet Thomas De Schampheleire
2016-01-09  0:52 ` Arnout Vandecappelle [this message]
2016-01-11  9:07   ` Thomas De Schampheleire
2016-05-31 20:50 ` Thomas Petazzoni
2016-06-01 14:41   ` Arnout Vandecappelle
2016-06-01 14:49     ` Thomas Petazzoni

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=569059C7.8090901@mind.be \
    --to=arnout@mind.be \
    --cc=buildroot@busybox.net \
    /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.