[15/15] generixx86: Use require instead of include
Submitted by Darren Hart on Jan. 21, 2014, 10:40 p.m.
|
Patch ID: 65407
Details
Commit Message
@@ -4,5 +4,5 @@
#@DESCRIPTION: Machine configuration for generic X86_64 (64-bit) PCs and servers. Supports a moderately wide range of drivers that should boot and be usable on "typical" hardware.
DEFAULTTUNE ?= "core2-64"
-include conf/machine/include/tune-core2.inc
-include conf/machine/include/genericx86-common.inc
+require conf/machine/include/tune-core2.inc
+require conf/machine/include/genericx86-common.inc
@@ -4,5 +4,5 @@
#@DESCRIPTION: Machine configuration for generic X86 (32-bit) PCs. Supports a moderately wide range of drivers that should boot and be usable on "typical" hardware.
DEFAULTTUNE ?= "core2-32"
-include conf/machine/include/tune-core2.inc
-include conf/machine/include/genericx86-common.inc
+require conf/machine/include/tune-core2.inc
+require conf/machine/include/genericx86-common.inc
Use require instead of include to avoid silent errors when the required tune files change name or are moved. It's going to fail anyway, it might as well fail with an error message that is immediately helpful. Signed-off-by: Darren Hart <dvhart@linux.intel.com> --- meta-yocto-bsp/conf/machine/genericx86-64.conf | 4 ++-- meta-yocto-bsp/conf/machine/genericx86.conf | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-)