From 5f9d56bd64997b93ed7e46c117851002a0556654 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Fri, 22 Jul 2011 17:32:21 +0100 Subject: conf/machine/include: Start to fill out architecture specific tune include files and tune features These changes revolve around the idea of tune features. These are represented by 'flag' strings that are included in the TUNE_FEATURES variable. Any string included in TUNE_FEATURES should also add a TUNEVALID[] entry so we can know which flags are available in TUNE_FEATURES and have documentation about what the flags do. We will add sanity code to error if flags are listed in TUNE_FEATURES but are not documented in TUNEVALID. A given tune configuration will want to define one or more predetermined sets of _FEATURE flag lists. These are defined in the form TUNE_FEATURES_tune-. For defined tune configuation, should be added to the AVAILTUNE list so that we can determine what tune configurations are available. Flags cannot be used in this case as with TUNEVALID since its useful to be able to build up tune lists from other TUNE_FEATURES_tune-yyy options. A given tune configuration may also define PACKAGE_EXTRA_ARCHS_tune- and BASE_LIB_tune- to control the multilib location. All options can be overridden by the distro or local user configuration. Signed-off-by: Richard Purdie --- meta/conf/machine/include/arm/arch-arm.inc | 1 + 1 file changed, 1 insertion(+) create mode 100644 meta/conf/machine/include/arm/arch-arm.inc (limited to 'meta/conf/machine/include/arm') diff --git a/meta/conf/machine/include/arm/arch-arm.inc b/meta/conf/machine/include/arm/arch-arm.inc new file mode 100644 index 0000000000..e773d14c2a --- /dev/null +++ b/meta/conf/machine/include/arm/arch-arm.inc @@ -0,0 +1 @@ +TUNE_ARCH = "arm" -- cgit 1.2.3-korg