From e74401d79f04e794e77b3360143432c3151a2cc3 Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Tue, 21 Aug 2012 20:02:44 -0700 Subject: [PATCH] angstrom: Add weak definition for MACHINE_KERNEL_PR MACHINE_KERNEL_PR's use it not consistent across all machines. Angstrom supports all kind of machines and sometimes we would like to have multiple machines in which some may use it and some may not. Signed-off-by: Khem Raj Signed-off-by: Koen Kooi --- conf/distro/include/angstrom.inc | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/conf/distro/include/angstrom.inc b/conf/distro/include/angstrom.inc index c1f1cad..f0ab044 100644 --- a/conf/distro/include/angstrom.inc +++ b/conf/distro/include/angstrom.inc @@ -113,6 +113,16 @@ INHERIT += "sstate" ANGSTROM_PKG_FORMAT ?= "ipk" require conf/distro/include/angstrom-package-${ANGSTROM_PKG_FORMAT}.inc +# MACHINE_KERNEL_PR if not defined can cause parsing failures +# since MACHINE_KERNEL_PR is used in PR assignments in some recipes +# (meta-ti comes to mind) which means when creating FILESPATH +# it will try to evaluate it and if its undefined then python +# will except +# +# so for machines which do not define it lets define it to be empty + +MACHINE_KERNEL_PR ??= "" + # We don't want to keep OABI compat ARM_KEEP_OABI = "0" # Do keep OABI compat for om-gta01 to keep the gllin binary working