From: Simon Glass Date: Tue, 29 Aug 2017 20:16:01 +0000 (-0600) Subject: dtoc: Add a header to the generated files X-Git-Tag: v2017.11-rc1~90^2~14 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=d503114c66a76b5ceb9d72da2c9b5231eb6743b8;p=u-boot dtoc: Add a header to the generated files Add a header that indicates that the files generated by dtoc should not be modified. Signed-off-by: Simon Glass Tested-by: Kever Yang --- diff --git a/tools/dtoc/dtb_platdata.py b/tools/dtoc/dtb_platdata.py index cfca45b0ac..dc9c0d9f45 100644 --- a/tools/dtoc/dtb_platdata.py +++ b/tools/dtoc/dtb_platdata.py @@ -190,6 +190,16 @@ class DtbPlatdata(object): self._lines = [] return lines + def out_header(self): + """Output a message indicating that this is an auto-generated file""" + self.out('''/* + * DO NOT MODIFY + * + * This file was generated by dtoc from a .dtb (device tree binary) file. + */ + +''') + def get_phandle_argc(self, prop, node_name): """Check if a node contains phandles @@ -410,6 +420,7 @@ class DtbPlatdata(object): definitions for node in self._valid_nodes. See the documentation in README.of-plat for more information. """ + self.out_header() self.out('#include \n') self.out('#include \n') @@ -512,6 +523,7 @@ class DtbPlatdata(object): See the documentation in doc/driver-model/of-plat.txt for more information. """ + self.out_header() self.out('#include \n') self.out('#include \n') self.out('#include \n')