diff options
author | Sandeep Gundlupet Raju <sandeep.gundlupet-raju@amd.com> | 2025-01-27 16:39:52 -0700 |
---|---|---|
committer | Mark Hatle <mark.hatle@amd.com> | 2025-03-30 14:16:15 -0600 |
commit | 9efbabf63a43e321b30658a2f6d9c535f3896cac (patch) | |
tree | 101beff18debe17f8e9c5b6e7b19ea3d79bca2d4 | |
parent | d6aa0a2230a77ec6ebb7ec4517f5457300c1d30c (diff) | |
download | meta-xilinx-9efbabf63a43e321b30658a2f6d9c535f3896cac.tar.gz |
xilinx-bootbin: Add apu subsystem attribute to bif
Add apu_ss attibute name to versal bif files as this is required linux
power management which is enabled by default in kernel defconfig.
Signed-off-by: Sandeep Gundlupet Raju <sandeep.gundlupet-raju@amd.com>
Signed-off-by: Mark Hatle <mark.hatle@amd.com>
-rw-r--r-- | meta-xilinx-core/recipes-bsp/bootbin/xilinx-bootbin_1.0.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-xilinx-core/recipes-bsp/bootbin/xilinx-bootbin_1.0.bb b/meta-xilinx-core/recipes-bsp/bootbin/xilinx-bootbin_1.0.bb index 4bfbcda0..40db7b32 100644 --- a/meta-xilinx-core/recipes-bsp/bootbin/xilinx-bootbin_1.0.bb +++ b/meta-xilinx-core/recipes-bsp/bootbin/xilinx-bootbin_1.0.bb | |||
@@ -129,7 +129,7 @@ def create_versal_bif(config, attrflags, attrimage, ids, common_attr, biffd, d): | |||
129 | for id, string in id_dict.items(): | 129 | for id, string in id_dict.items(): |
130 | biffd.write("\timage {\n") | 130 | biffd.write("\timage {\n") |
131 | if id != '0': | 131 | if id != '0': |
132 | biffd.write("\t id = " + id + "\n") | 132 | biffd.write("\t id = " + id + ", name=apu_ss\n") |
133 | biffd.write(string) | 133 | biffd.write(string) |
134 | biffd.write("\t}\n") | 134 | biffd.write("\t}\n") |
135 | return | 135 | return |