From: Simon Glass Date: Wed, 4 Nov 2020 16:57:17 +0000 (-0700) Subject: x86: Add support for private files X-Git-Tag: v2021.10~443^2~42 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=653554b40aa5c1d32e9a6281dc97f1b75eff724b;p=platform%2Fkernel%2Fu-boot.git x86: Add support for private files Some boards need to include binary data into the image for use during the boot process. Add a node for these. An example is the audio-codec configuration used by some audio drivers on Intel platforms. If no private files are provided, they will be omitted. Signed-off-by: Simon Glass Reviewed-by: Bin Meng --- diff --git a/arch/x86/dts/u-boot.dtsi b/arch/x86/dts/u-boot.dtsi index 90badcc..bf92f45 100644 --- a/arch/x86/dts/u-boot.dtsi +++ b/arch/x86/dts/u-boot.dtsi @@ -138,6 +138,10 @@ filename = CONFIG_FSP_FILE_S; }; #endif + private_files: private-files { + type = "files"; + pattern = "*.dat"; + }; #ifdef CONFIG_HAVE_CMC intel-cmc { filename = CONFIG_CMC_FILE;