From d80fe97166347006fcfee2dae9bc80ec666174ae Mon Sep 17 00:00:00 2001 From: Kai Kang Date: Mon, 1 Feb 2021 11:40:37 +0800 Subject: [PATCH] meta-oe: add crash to NON_MULTILIB_RECIPES Crash has to be built as the same bitsize (32-bit/64-bit) as the kernel. So add it to NON_MULTILIB_RECIPES to make it keeps same bitsize with the kernel. For example, it is 'crash' rather than 'lib32-crash' which is installed to 32-bit rootfs with 64-bit kernel. Signed-off-by: Kai Kang Signed-off-by: Khem Raj --- meta-oe/conf/layer.conf | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta-oe/conf/layer.conf b/meta-oe/conf/layer.conf index 1f60861649..3de3015509 100644 --- a/meta-oe/conf/layer.conf +++ b/meta-oe/conf/layer.conf @@ -98,3 +98,5 @@ SIGGEN_EXCLUDE_SAFE_RECIPE_DEPS += " \ " DEFAULT_TEST_SUITES_pn-meta-oe-ptest-image = " ${PTESTTESTSUITE}" + +NON_MULTILIB_RECIPES_append = " crash"