summaryrefslogtreecommitdiffstats
path: root/meta-xilinx-core/classes
diff options
context:
space:
mode:
authorMark Hatle <mark.hatle@amd.com>2022-11-21 13:11:50 -0800
committerMark Hatle <mark.hatle@amd.com>2022-11-24 07:00:36 -0800
commit87054357b1c6a8c2adbbf01fb037c5e90beb98df (patch)
tree35e4837b884eff123dc80c454b92715dbd7f9df8 /meta-xilinx-core/classes
parentdb9994784a14ffd353fd0d4218a5a05fc3976b0d (diff)
downloadmeta-xilinx-87054357b1c6a8c2adbbf01fb037c5e90beb98df.tar.gz
qemu-xilinx-helper-native: Remove, replace with standard upstream version
qemu-system-helper contains support for general system items, there is no reason for us to provide our own version. We can then add a dependency for the specific xilinx multiarch component as needed to the system-native versions. Signed-off-by: Mark Hatle <mark.hatle@amd.com>
Diffstat (limited to 'meta-xilinx-core/classes')
-rw-r--r--meta-xilinx-core/classes/qemuboot-xilinx.bbclass10
1 files changed, 0 insertions, 10 deletions
diff --git a/meta-xilinx-core/classes/qemuboot-xilinx.bbclass b/meta-xilinx-core/classes/qemuboot-xilinx.bbclass
index 58ade1b9..3835591d 100644
--- a/meta-xilinx-core/classes/qemuboot-xilinx.bbclass
+++ b/meta-xilinx-core/classes/qemuboot-xilinx.bbclass
@@ -136,13 +136,3 @@ def qemu_zynqmp_unhalt(data, multiarch):
136 if multiarch: 136 if multiarch:
137 return "-global xlnx,zynqmp-boot.cpu-num=0 -global xlnx,zynqmp-boot.use-pmufw=true" 137 return "-global xlnx,zynqmp-boot.cpu-num=0 -global xlnx,zynqmp-boot.use-pmufw=true"
138 return "-device loader,addr=0xfd1a0104,data=0x8000000e,data-len=4 -device loader,addr=0xfd1a0104,data=0x8000000e,data-len=4" 138 return "-device loader,addr=0xfd1a0104,data=0x8000000e,data-len=4 -device loader,addr=0xfd1a0104,data=0x8000000e,data-len=4"
139
140# rewrite the qemuboot with the custom sysroot bindir
141python do_write_qemuboot_conf:append() {
142 val = os.path.join(d.getVar('BASE_WORKDIR'), d.getVar('BUILD_SYS'), 'qemu-xilinx-helper-native/1.0-r1/recipe-sysroot-native/usr/bin/')
143 cf.set('config_bsp', 'STAGING_BINDIR_NATIVE', '%s' % val)
144
145 # write out the updated version from this append
146 with open(qemuboot, 'w') as f:
147 cf.write(f)
148}