From patchwork Fri Feb 21 16:14:15 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Alexandre TORGUE X-Patchwork-Id: 11396817 Return-Path: Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id AE21613A4 for ; Fri, 21 Feb 2020 16:15:01 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 8B1802073A for ; Fri, 21 Feb 2020 16:15:01 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (2048-bit key) header.d=st.com header.i=@st.com header.b="iy9fYeyD" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728910AbgBUQOl (ORCPT ); Fri, 21 Feb 2020 11:14:41 -0500 Received: from mx07-00178001.pphosted.com ([62.209.51.94]:54935 "EHLO mx07-00178001.pphosted.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727095AbgBUQOk (ORCPT ); Fri, 21 Feb 2020 11:14:40 -0500 Received: from pps.filterd (m0046037.ppops.net [127.0.0.1]) by mx07-00178001.pphosted.com (8.16.0.42/8.16.0.42) with SMTP id 01LGEEKH013470; Fri, 21 Feb 2020 17:14:26 +0100 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=st.com; h=from : to : cc : subject : date : message-id : in-reply-to : references : mime-version : content-type; s=STMicroelectronics; bh=84l2b91e/di7VUflYudfHEI8dwDeDuErqQcawADT30M=; b=iy9fYeyD4J84NGAZwItOo4iPy9fHwru5Mzt1bG1ActChIhT78uBE1aX9PDjpjpPqb7Di sixhgAeW+WQM6ewcozXc7Yh6mt54AQ/oDO3cF64Ic6CZLagfy84PTOmum0bzbrDtxJak SErQh6iZNMm/arKDTwrcWFDg4RKhaXu9fqHCnp/wYbYdsJ14fUgdkweApX9SuDu/RcLH LchG2ggrKAHxjhtF2L4p4ZW6jtym6WjyD7XOZ3mSz17qcMV5D1KkqO4eg/nX5S205W0O I/87+kcBjeyxVKp+ffdutE7qDuwbAeVw5hwT7l+lxuLacXdbC6GYUyuqnHne6KPCXqID 1Q== Received: from beta.dmz-eu.st.com (beta.dmz-eu.st.com [164.129.1.35]) by mx07-00178001.pphosted.com with ESMTP id 2y8ub1r6du-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT); Fri, 21 Feb 2020 17:14:26 +0100 Received: from euls16034.sgp.st.com (euls16034.sgp.st.com [10.75.44.20]) by beta.dmz-eu.st.com (STMicroelectronics) with ESMTP id 768D0100034; Fri, 21 Feb 2020 17:14:21 +0100 (CET) Received: from Webmail-eu.st.com (sfhdag3node2.st.com [10.75.127.8]) by euls16034.sgp.st.com (STMicroelectronics) with ESMTP id 5FE552BE259; Fri, 21 Feb 2020 17:14:21 +0100 (CET) Received: from localhost (10.75.127.50) by SFHDAG3NODE2.st.com (10.75.127.8) with Microsoft SMTP Server (TLS) id 15.0.1347.2; Fri, 21 Feb 2020 17:14:20 +0100 From: Alexandre Torgue To: , Frank Rowand , Masahiro Yamada , Michal Marek , , CC: , Alexandre Torgue , , , , Ian Lepore Subject: [RFC PATCH v2 1/4] scripts: Add script to generate dtb build information Date: Fri, 21 Feb 2020 17:14:15 +0100 Message-ID: <20200221161418.20225-2-alexandre.torgue@st.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20200221161418.20225-1-alexandre.torgue@st.com> References: <20200221161418.20225-1-alexandre.torgue@st.com> MIME-Version: 1.0 X-Originating-IP: [10.75.127.50] X-ClientProxiedBy: SFHDAG7NODE2.st.com (10.75.127.20) To SFHDAG3NODE2.st.com (10.75.127.8) X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10434:6.0.138,18.0.572 definitions=2020-02-21_05:2020-02-21,2020-02-21 signatures=0 Sender: linux-kbuild-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kbuild@vger.kernel.org This commit adds a new script to create a file (in dts file directory) with some information (date, Linux version, user). This file could then be used to populate "build-info" property in every dts file that would use this build information: Example: / { ... build-info = /incbin/("dtb-build.txt"); ... }; Signed-off-by: Alexandre Torgue diff --git a/scripts/Makefile.lib b/scripts/Makefile.lib index bae62549e3d2..a5af84ef4ffc 100644 --- a/scripts/Makefile.lib +++ b/scripts/Makefile.lib @@ -246,6 +246,7 @@ quiet_cmd_gzip = GZIP $@ # DTC # --------------------------------------------------------------------------- DTC ?= $(objtree)/scripts/dtc/dtc +DTB_GEN_INFO ?= $(objtree)/scripts/gen_dtb_build_info.sh # Disable noisy checks by default ifeq ($(findstring 1,$(KBUILD_EXTRA_WARN)),) @@ -286,6 +287,7 @@ $(obj)/%.dtb.S: $(obj)/%.dtb FORCE quiet_cmd_dtc = DTC $@ cmd_dtc = mkdir -p $(dir ${dtc-tmp}) ; \ + $(DTB_GEN_INFO) $(src) ; \ $(HOSTCC) -E $(dtc_cpp_flags) -x assembler-with-cpp -o $(dtc-tmp) $< ; \ $(DTC) -O $(2) -o $@ -b 0 \ $(addprefix -i,$(dir $<) $(DTC_INCLUDE)) $(DTC_FLAGS) \ diff --git a/scripts/gen_dtb_build_info.sh b/scripts/gen_dtb_build_info.sh new file mode 100755 index 000000000000..0cd8bd98e410 --- /dev/null +++ b/scripts/gen_dtb_build_info.sh @@ -0,0 +1,10 @@ +#!/bin/bash +# SPDX-License-Identifier: GPL-2.0 + +set -o nounset + +DTB_DIR=$1 +DTB_COMPILE_BY=$(whoami | sed 's/\\/\\\\/') +DTB_INFO="From Linux $KERNELRELEASE by $DTB_COMPILE_BY the $(date).\0" + +printf "$DTB_INFO" > "$DTB_DIR/dtb-build.txt" From patchwork Fri Feb 21 16:14:16 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Alexandre TORGUE X-Patchwork-Id: 11396809 Return-Path: Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 6D31B138D for ; Fri, 21 Feb 2020 16:14:47 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 4B3F82073A for ; Fri, 21 Feb 2020 16:14:47 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (2048-bit key) header.d=st.com header.i=@st.com header.b="bmhKR4Jj" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1729427AbgBUQOo (ORCPT ); Fri, 21 Feb 2020 11:14:44 -0500 Received: from mx07-00178001.pphosted.com ([62.209.51.94]:54919 "EHLO mx07-00178001.pphosted.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727095AbgBUQOn (ORCPT ); Fri, 21 Feb 2020 11:14:43 -0500 Received: from pps.filterd (m0046037.ppops.net [127.0.0.1]) by mx07-00178001.pphosted.com (8.16.0.42/8.16.0.42) with SMTP id 01LGEEAB013474; Fri, 21 Feb 2020 17:14:26 +0100 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=st.com; h=from : to : cc : subject : date : message-id : in-reply-to : references : mime-version : content-type; s=STMicroelectronics; bh=2k+VXll0ozFYAI5ID9m7C2U0U8scssOA0fcMpcXtXIM=; b=bmhKR4Jj2v4OBlocrm1fUnIqFZz6PDmU/lALGE8c/S1Dj2kVFDH/OkRqbjUaGi/V3Tlr K77vwuIaiqGVoqS5DBpCnenFIKPYDi4NFDdJmNclLpvOXHnxJmO2aBTI2KByDUNZWL2o F7B/3m8EP3WB6dnAbZVr6K4kPn3HLdGFvgrQPn/2fhCoI8Ip4GHVF3pz0LIjNIjf93jh QjQELb05eRu1BPqSul0VyjuZRMGWSpzmXVxGCJ4MOFLnFRdJjbP/ZZulWslmUISV/8ZH GlrMSEfOyOe4t3e2o2RgGiWpzlFI55wqk6Iftd0O/ulSgZOFDxwrdRmVcopnkuhCNegL KQ== Received: from beta.dmz-eu.st.com (beta.dmz-eu.st.com [164.129.1.35]) by mx07-00178001.pphosted.com with ESMTP id 2y8ub1r6dt-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT); Fri, 21 Feb 2020 17:14:26 +0100 Received: from euls16034.sgp.st.com (euls16034.sgp.st.com [10.75.44.20]) by beta.dmz-eu.st.com (STMicroelectronics) with ESMTP id 0B190100038; Fri, 21 Feb 2020 17:14:22 +0100 (CET) Received: from Webmail-eu.st.com (sfhdag3node2.st.com [10.75.127.8]) by euls16034.sgp.st.com (STMicroelectronics) with ESMTP id F042E2BE258; Fri, 21 Feb 2020 17:14:21 +0100 (CET) Received: from localhost (10.75.127.50) by SFHDAG3NODE2.st.com (10.75.127.8) with Microsoft SMTP Server (TLS) id 15.0.1347.2; Fri, 21 Feb 2020 17:14:21 +0100 From: Alexandre Torgue To: , Frank Rowand , Masahiro Yamada , Michal Marek , , CC: , Alexandre Torgue , , , , Ian Lepore Subject: [RFC PATCH v2 2/4] of: fdt: print dtb build information Date: Fri, 21 Feb 2020 17:14:16 +0100 Message-ID: <20200221161418.20225-3-alexandre.torgue@st.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20200221161418.20225-1-alexandre.torgue@st.com> References: <20200221161418.20225-1-alexandre.torgue@st.com> MIME-Version: 1.0 X-Originating-IP: [10.75.127.50] X-ClientProxiedBy: SFHDAG6NODE3.st.com (10.75.127.18) To SFHDAG3NODE2.st.com (10.75.127.8) X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10434:6.0.138,18.0.572 definitions=2020-02-21_05:2020-02-21,2020-02-21 signatures=0 Sender: linux-kbuild-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kbuild@vger.kernel.org This commit prints out DTB build information (build time, dts source version used, ...) if "Build-info" property exists in DTB root node. Signed-off-by: Alexandre Torgue diff --git a/drivers/of/fdt.c b/drivers/of/fdt.c index 2cdf64d2456f..aa5989039746 100644 --- a/drivers/of/fdt.c +++ b/drivers/of/fdt.c @@ -1224,9 +1224,18 @@ bool __init early_init_dt_scan(void *params) */ void __init unflatten_device_tree(void) { + const char *build_info; + unsigned long dt_root; + __unflatten_device_tree(initial_boot_params, NULL, &of_root, early_init_dt_alloc_memory_arch, false); + /* If available, provide dtb build information */ + dt_root = of_get_flat_dt_root(); + build_info = of_get_flat_dt_prop(dt_root, "build-info", NULL); + if (build_info) + pr_info("%s\n", build_info); + /* Get pointer to "/chosen" and "/aliases" nodes for use everywhere */ of_alias_scan(early_init_dt_alloc_memory_arch); From patchwork Fri Feb 21 16:14:17 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Alexandre TORGUE X-Patchwork-Id: 11396811 Return-Path: Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id D00E813A4 for ; Fri, 21 Feb 2020 16:14:50 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id AF51524653 for ; Fri, 21 Feb 2020 16:14:50 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (2048-bit key) header.d=st.com header.i=@st.com header.b="cor2Oqa4" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1729363AbgBUQOm (ORCPT ); Fri, 21 Feb 2020 11:14:42 -0500 Received: from mx07-00178001.pphosted.com ([62.209.51.94]:9660 "EHLO mx07-00178001.pphosted.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728690AbgBUQOl (ORCPT ); Fri, 21 Feb 2020 11:14:41 -0500 Received: from pps.filterd (m0046668.ppops.net [127.0.0.1]) by mx07-00178001.pphosted.com (8.16.0.42/8.16.0.42) with SMTP id 01LGE84i009869; Fri, 21 Feb 2020 17:14:27 +0100 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=st.com; h=from : to : cc : subject : date : message-id : in-reply-to : references : mime-version : content-type; s=STMicroelectronics; bh=jpGwlIt47yPIpufPaalWQk8BJYpMwbVfmtKu9t8gwX0=; b=cor2Oqa4ltmaZl03XBXb8L+HZ9hrqUyyxN1KHuPJS8hGisZUrbVyUzRbofyTNWCPf7SI 4qwhUCi95v1oK4M4REnYYpQ4SWaE7wMU0UE6gUyKr6fKEmaOjC3b4JRYfJkvTEDzFmLP 9VwM/SvthDuQEv/U9U+rt46bK7CFBVUymM0BiivfCiE4YcEZZgPcj+OuadqEjop3rOvH GUkqnYS9cifBYZM3CLYMEvHkMfh5mrYZXKJmy3Gd7IEa2vMUirwdLP+fXS5GSQVAiufF jhYrvPIyK6YOieSCWapxGy0Vm2B/ICCNlYBGu65rnLCSRnZLvXo/eRbQcEqy5dEsit2y RQ== Received: from beta.dmz-eu.st.com (beta.dmz-eu.st.com [164.129.1.35]) by mx07-00178001.pphosted.com with ESMTP id 2y8ub0g6bq-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT); Fri, 21 Feb 2020 17:14:27 +0100 Received: from euls16034.sgp.st.com (euls16034.sgp.st.com [10.75.44.20]) by beta.dmz-eu.st.com (STMicroelectronics) with ESMTP id 9E87F100039; Fri, 21 Feb 2020 17:14:22 +0100 (CET) Received: from Webmail-eu.st.com (sfhdag3node2.st.com [10.75.127.8]) by euls16034.sgp.st.com (STMicroelectronics) with ESMTP id 8FF052BE258; Fri, 21 Feb 2020 17:14:22 +0100 (CET) Received: from localhost (10.75.127.49) by SFHDAG3NODE2.st.com (10.75.127.8) with Microsoft SMTP Server (TLS) id 15.0.1347.2; Fri, 21 Feb 2020 17:14:21 +0100 From: Alexandre Torgue To: , Frank Rowand , Masahiro Yamada , Michal Marek , , CC: , Alexandre Torgue , , , , Ian Lepore Subject: [RFC PATCH v2 3/4] ARM: dts: stm32: Add dtb build information entry for stm32mp157c-dk2 Date: Fri, 21 Feb 2020 17:14:17 +0100 Message-ID: <20200221161418.20225-4-alexandre.torgue@st.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20200221161418.20225-1-alexandre.torgue@st.com> References: <20200221161418.20225-1-alexandre.torgue@st.com> MIME-Version: 1.0 X-Originating-IP: [10.75.127.49] X-ClientProxiedBy: SFHDAG8NODE3.st.com (10.75.127.24) To SFHDAG3NODE2.st.com (10.75.127.8) X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10434:6.0.138,18.0.572 definitions=2020-02-21_05:2020-02-21,2020-02-21 signatures=0 Sender: linux-kbuild-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kbuild@vger.kernel.org dtb-build.txt is a file containing device tree build information (date, source version ...). This file is used to fill "build-info" entry which will be displayed during kernel boot. Signed-off-by: Alexandre Torgue diff --git a/arch/arm/boot/dts/stm32mp157c-dk2.dts b/arch/arm/boot/dts/stm32mp157c-dk2.dts index 7985b80967ca..387d3bcf5fa3 100644 --- a/arch/arm/boot/dts/stm32mp157c-dk2.dts +++ b/arch/arm/boot/dts/stm32mp157c-dk2.dts @@ -15,6 +15,7 @@ / { model = "STMicroelectronics STM32MP157C-DK2 Discovery Board"; compatible = "st,stm32mp157c-dk2", "st,stm32mp157"; + build-info = /incbin/("dtb-build.txt"); aliases { ethernet0 = ðernet0; From patchwork Fri Feb 21 16:14:18 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Alexandre TORGUE X-Patchwork-Id: 11396815 Return-Path: Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 216A7138D for ; Fri, 21 Feb 2020 16:14:53 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 009B22073A for ; Fri, 21 Feb 2020 16:14:53 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (2048-bit key) header.d=st.com header.i=@st.com header.b="Y2zDz/hs" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1729488AbgBUQOu (ORCPT ); Fri, 21 Feb 2020 11:14:50 -0500 Received: from mx07-00178001.pphosted.com ([62.209.51.94]:9560 "EHLO mx07-00178001.pphosted.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1729454AbgBUQOu (ORCPT ); Fri, 21 Feb 2020 11:14:50 -0500 Received: from pps.filterd (m0046668.ppops.net [127.0.0.1]) by mx07-00178001.pphosted.com (8.16.0.42/8.16.0.42) with SMTP id 01LGE9ZJ009872; Fri, 21 Feb 2020 17:14:27 +0100 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=st.com; h=from : to : cc : subject : date : message-id : in-reply-to : references : mime-version : content-type; s=STMicroelectronics; bh=j0cy0mKA7cM8Tk6Z9M9zdWvIoHNs4Pm0R3aUHtmCHIs=; b=Y2zDz/hsRrUDG815gVDc1oEZ8UmjKwq9y+nocwidSm+jGXAmlrXRPQKP3u5Fqz0eKtZ1 kFSmzIASg8pgLFehDf2/NpiSxvIh8K95JsjR7xRA/Uu1RPtgVH4VRSNtigVVE0c+Zkqa v0XPiPVVvfLqUI/kv8Ikm4illMval7rbA+qi8vndSUi2riaIjAoZAdytnwUPRVnhu2sK 5Vci8VOIPZS8vjVyWW9VoQijdzNtk9JKfZQHxKgz+/fy2W1Qy3rtxQfxVlj3ZS9BOvID oRfoO/pPLH7pJQafI22gjJKq6gYoqlBMaexIhwWyachx4E0XCZCGVEP0hlDFgEJlQZgg aA== Received: from beta.dmz-eu.st.com (beta.dmz-eu.st.com [164.129.1.35]) by mx07-00178001.pphosted.com with ESMTP id 2y8ub0g6bu-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT); Fri, 21 Feb 2020 17:14:27 +0100 Received: from euls16034.sgp.st.com (euls16034.sgp.st.com [10.75.44.20]) by beta.dmz-eu.st.com (STMicroelectronics) with ESMTP id 5570710003A; Fri, 21 Feb 2020 17:14:23 +0100 (CET) Received: from Webmail-eu.st.com (sfhdag3node2.st.com [10.75.127.8]) by euls16034.sgp.st.com (STMicroelectronics) with ESMTP id 477C62BE258; Fri, 21 Feb 2020 17:14:23 +0100 (CET) Received: from localhost (10.75.127.49) by SFHDAG3NODE2.st.com (10.75.127.8) with Microsoft SMTP Server (TLS) id 15.0.1347.2; Fri, 21 Feb 2020 17:14:22 +0100 From: Alexandre Torgue To: , Frank Rowand , Masahiro Yamada , Michal Marek , , CC: , Alexandre Torgue , , , , Ian Lepore Subject: [RFC PATCH v2 4/4] script: make automatic dtb build info generation Date: Fri, 21 Feb 2020 17:14:18 +0100 Message-ID: <20200221161418.20225-5-alexandre.torgue@st.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20200221161418.20225-1-alexandre.torgue@st.com> References: <20200221161418.20225-1-alexandre.torgue@st.com> MIME-Version: 1.0 X-Originating-IP: [10.75.127.49] X-ClientProxiedBy: SFHDAG2NODE1.st.com (10.75.127.4) To SFHDAG3NODE2.st.com (10.75.127.8) X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10434:6.0.138,18.0.572 definitions=2020-02-21_05:2020-02-21,2020-02-21 signatures=0 Sender: linux-kbuild-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kbuild@vger.kernel.org Append each "xxx.dtb.dts.tmp" file with "build-info" entry during dtb build. It allows to get build information (date, source version, ...) for each device tree without modify them manually. Signed-off-by: Alexandre Torgue diff --git a/scripts/Makefile.lib b/scripts/Makefile.lib index a5af84ef4ffc..f084e78267b2 100644 --- a/scripts/Makefile.lib +++ b/scripts/Makefile.lib @@ -289,6 +289,7 @@ quiet_cmd_dtc = DTC $@ cmd_dtc = mkdir -p $(dir ${dtc-tmp}) ; \ $(DTB_GEN_INFO) $(src) ; \ $(HOSTCC) -E $(dtc_cpp_flags) -x assembler-with-cpp -o $(dtc-tmp) $< ; \ + $(DTB_GEN_INFO) $(src) $(dtc-tmp) ; \ $(DTC) -O $(2) -o $@ -b 0 \ $(addprefix -i,$(dir $<) $(DTC_INCLUDE)) $(DTC_FLAGS) \ -d $(depfile).dtc.tmp $(dtc-tmp) ; \ diff --git a/scripts/gen_dtb_build_info.sh b/scripts/gen_dtb_build_info.sh index 0cd8bd98e410..72f31e386787 100755 --- a/scripts/gen_dtb_build_info.sh +++ b/scripts/gen_dtb_build_info.sh @@ -6,5 +6,7 @@ set -o nounset DTB_DIR=$1 DTB_COMPILE_BY=$(whoami | sed 's/\\/\\\\/') DTB_INFO="From Linux $KERNELRELEASE by $DTB_COMPILE_BY the $(date).\0" +DTS_FILE=$2 -printf "$DTB_INFO" > "$DTB_DIR/dtb-build.txt" +printf "$DTB_INFO" > "arch/arm/boot/dts/dtb-build.txt" +echo "&{/} {build-info = /incbin/(\"dtb-build.txt\");};" >> $DTS_FILE