From: Ahmad Fatoum <a.fatoum@pengutronix.de>
To: Denis Osterland-Heim <denis.osterland@diehl.com>,
"s.hauer@pengutronix.de" <s.hauer@pengutronix.de>
Cc: "barebox@lists.infradead.org" <barebox@lists.infradead.org>
Subject: Re: Is it possible to pass extra device-tree include directory?
Date: Mon, 29 Jun 2020 10:26:33 +0200 [thread overview]
Message-ID: <253b2e57-d170-db1b-b294-5ca851743ab5@pengutronix.de> (raw)
In-Reply-To: <49f003eb1572d206373a34b2f3a6174cbe1be321.camel@diehl.com>
Hello,
On 6/26/20 9:12 AM, Denis Osterland-Heim wrote:
> Hi Sascha,
>
> which implementation variant would you prefer?
>
> 1) target specific flags
> diff --git a/scripts/Makefile.lib b/scripts/Makefile.lib
> index 9aa8be535f30..6f341a6e3e86 100644
> --- a/scripts/Makefile.lib
> +++ b/scripts/Makefile.lib
> @@ -164,6 +164,7 @@ dtc_cpp_flags = -Wp,-MD,$(depfile).pre -nostdinc \
> -I$(srctree)/dts/include \
> -I$(srctree)/include \
> -I$(srctree)/dts/src/ \
> + $(DTC_CPP_FLAGS_$(basetarget).dtb) \
> -undef -D__DTS__
>
> ifdef CONFIG_BOOTM_FITIMAGE_PUBKEY
>
> with something like this in arch/arm/dts/Makefile:
> DTC_CPP_FLAGS_my-board-name.dtb := -I${PTXDIST_PLATFORMCONFIGDIR}/dts
> lwl-dtb-$(CONFIG_MACH_MY_BOARD_NAME) += my-board-name.dtb.o
>
> So we can clearly state that the device-tree is out of barebox tree.
Do you really want to modify your bootloader every time you touch the kernel
device tree? Projects I am involved in, have a local patch to dts/ that imports
the BSP device trees and then extends then in arch/$ARCH/dts. The dts/ device
trees are updated along with bootloader update, when I can retest that the
kernel modifications didn't break something unexpected. The kernel device tree
changes more often than that.
I don't think passing arbitrary options to dtc is something we should encourage.
Cheers
Ahmad
>
>
> 2) add EXTRA_DTC_CPP_FLAGS to Makefile.lib, to pass it to make
>
>
> 3) add $(patsubst "%",%,$(CONFIG_DTC_CPP_FLAGS)) to Makefile.lib, and a Kconfig option
>
> diff --git a/common/Kconfig b/common/Kconfig
> index 02ef3631e04b..074f25aa6b7f 100644
> --- a/common/Kconfig
> +++ b/common/Kconfig
> @@ -1347,3 +1347,6 @@ config DDR_SPD
>
> config HAVE_ARCH_KASAN
> bool
> +
> +config DTC_CPP_FLAGS
> + string "extra dtc-cpp flags"
>
>
> Regards Denis
>
> Am Freitag, den 26.06.2020, 06:49 +0200 schrieb Sascha Hauer:
>> Hi Denis,
>>
>> On Mon, Jun 22, 2020 at 07:42:11AM +0000, Denis Osterland-Heim wrote:
>>> Hi,
>>>
>>> is it possible to pass extra device-tree include directory?
>>> For instance "${PTXDIST_PLATFORMCONFIGDIR}/dts" to have a out-of-tree dts only in one place?
>>
>> I am not aware of any possibility doing this currently.
>>
>> Regards,
>> Sascha
>>
>
>
> Diehl Connectivity Solutions GmbH
> Geschäftsführung: Horst Leonberger
> Sitz der Gesellschaft: Nürnberg - Registergericht: Amtsgericht
> Nürnberg: HRB 32315
> ___________________________________________________________________________________________________
>
> Der Inhalt der vorstehenden E-Mail ist nicht rechtlich bindend. Diese E-Mail enthaelt vertrauliche und/oder rechtlich geschuetzte Informationen.
> Informieren Sie uns bitte, wenn Sie diese E-Mail faelschlicherweise erhalten haben. Bitte loeschen Sie in diesem Fall die Nachricht.
> Jede unerlaubte Form der Reproduktion, Bekanntgabe, Aenderung, Verteilung und/oder Publikation dieser E-Mail ist strengstens untersagt.
> - Informationen zum Datenschutz, insbesondere zu Ihren Rechten, erhalten Sie unter https://www.diehl.com/group/de/transparenz-und-informationspflichten/
>
> The contents of the above mentioned e-mail is not legally binding. This e-mail contains confidential and/or legally protected information. Please inform us if you have received this e-mail by
> mistake and delete it in such a case. Each unauthorized reproduction, disclosure, alteration, distribution and/or publication of this e-mail is strictly prohibited.
> - For general information on data protection and your respective rights please visit https://www.diehl.com/group/en/transparency-and-information-obligations/
> _______________________________________________
> barebox mailing list
> barebox@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/barebox
>
--
Pengutronix e.K. | |
Steuerwalder Str. 21 | http://www.pengutronix.de/ |
31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
next prev parent reply other threads:[~2020-06-29 8:26 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-06-22 7:42 Denis Osterland-Heim
2020-06-26 4:49 ` Sascha Hauer
2020-06-26 7:12 ` Denis Osterland-Heim
2020-06-29 8:26 ` Ahmad Fatoum [this message]
2020-07-01 8:49 ` Denis Osterland-Heim
2020-07-02 9:21 ` Ahmad Fatoum
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=253b2e57-d170-db1b-b294-5ca851743ab5@pengutronix.de \
--to=a.fatoum@pengutronix.de \
--cc=barebox@lists.infradead.org \
--cc=denis.osterland@diehl.com \
--cc=s.hauer@pengutronix.de \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox