diff options
author | Mark Hatle <mark.hatle@xilinx.com> | 2021-12-15 13:52:16 -0800 |
---|---|---|
committer | Mark Hatle <mark.hatle@xilinx.com> | 2021-12-22 08:19:01 -0800 |
commit | 322e23dc213d51a12345ca705b3776f189dc413f (patch) | |
tree | e257ca97fa6d3eef83c845b67d711b2d8ecba5ba /meta-xilinx-core/classes/xilinx-testimage.bbclass | |
parent | dd95dde009dc7968f6e6e4c0609e7b443c55c627 (diff) | |
download | meta-xilinx-322e23dc213d51a12345ca705b3776f189dc413f.tar.gz |
Initial restructure/split of meta-xilinx-bsp
Create a new meta-xilinx-core, move core functionality to the core, keeping
board specific files in the bsp layer.
zynqmp-generic changed from require <board> to include, so if meta-xilinx-bsp
is not available it will not fail.
Signed-off-by: Mark Hatle <mark.hatle@xilinx.com>
Diffstat (limited to 'meta-xilinx-core/classes/xilinx-testimage.bbclass')
-rw-r--r-- | meta-xilinx-core/classes/xilinx-testimage.bbclass | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/meta-xilinx-core/classes/xilinx-testimage.bbclass b/meta-xilinx-core/classes/xilinx-testimage.bbclass new file mode 100644 index 00000000..99519637 --- /dev/null +++ b/meta-xilinx-core/classes/xilinx-testimage.bbclass | |||
@@ -0,0 +1,11 @@ | |||
1 | inherit testimage | ||
2 | |||
3 | HOSTTOOLS += 'ip ping ps scp ssh stty' | ||
4 | |||
5 | python do_testimage:prepend () { | ||
6 | from oeqa.core.target.qemu import supported_fstypes | ||
7 | supported_fstypes.append('wic.qemu-sd') | ||
8 | } | ||
9 | |||
10 | IMAGE_AUTOLOGIN = "0" | ||
11 | IMAGE_FSTYPES = "wic.qemu-sd" | ||