diff options
Diffstat (limited to 'meta-xilinx-standalone/conf/distro/xilinx-standalone.inc')
-rw-r--r-- | meta-xilinx-standalone/conf/distro/xilinx-standalone.inc | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/meta-xilinx-standalone/conf/distro/xilinx-standalone.inc b/meta-xilinx-standalone/conf/distro/xilinx-standalone.inc index 4d591707..17b9430d 100644 --- a/meta-xilinx-standalone/conf/distro/xilinx-standalone.inc +++ b/meta-xilinx-standalone/conf/distro/xilinx-standalone.inc | |||
@@ -49,3 +49,19 @@ BB_SIGNATURE_HANDLER ?= "OEEquivHash" | |||
49 | BB_HASHSERVE ??= "auto" | 49 | BB_HASHSERVE ??= "auto" |
50 | 50 | ||
51 | MACHINE_FEATURES_BACKFILL_CONSIDERED += "rtc qemu-usermode" | 51 | MACHINE_FEATURES_BACKFILL_CONSIDERED += "rtc qemu-usermode" |
52 | |||
53 | # Prevent warnings about 'buildpaths' | ||
54 | # After investigation it appears a debuginfo directory path to the build | ||
55 | # directory is being inserted into the objects. This path is not actually | ||
56 | # being referred to by any components. Why this is happening is unknown, | ||
57 | # so we avoid the warning as we know this is not an actual issue. | ||
58 | WARN_QA:remove = "buildpaths" | ||
59 | |||
60 | # By default PetaLinux uses the own-mirror class to access cached version of | ||
61 | # the software. While this distribution configuration is not PetaLinux, nor | ||
62 | # should it require PetaLinux to operating properly, including the same mirror | ||
63 | # configuration will unify the Linux and non-Linux (baremetal) configurations. | ||
64 | # Do this via include so if meta-petalinux is not part of the build this will | ||
65 | # not error. This also allows the user to choose to handle the download | ||
66 | # mirroring in their own way for non-PetaLinux like configs. | ||
67 | include conf/distro/include/petalinux-mirrors.conf | ||