From bb789d5694b3696a9aa81d2cd37a1c7f39908ed8 Mon Sep 17 00:00:00 2001 From: Patrick Williams Date: Fri, 9 Sep 2022 09:47:35 -0500 Subject: treewide: handle upstream TEMPLATECONF move The latest poky commit is requiring us to have all of our template configs in a subdirectory instead of directly in the `conf` directory. Without this we end up with errors during setup like: ``` Error: TEMPLATECONF value (which is .../openbmc/meta-facebook/meta-bletchley/conf) must point to meta-some-layer/conf/templates/template-name ``` Fix this by moving all of our template files into the 'default' template subdirectory (following the pattern of poky) and modifying `setup` as necessary to follow. Signed-off-by: Patrick Williams Change-Id: Iecefde73d55acbb6bc63ae3d68c4311adaf327ae --- .../conf/templates/default/local.conf.sample | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 meta-inspur/meta-fp5280g2/conf/templates/default/local.conf.sample (limited to 'meta-inspur/meta-fp5280g2/conf/templates/default/local.conf.sample') diff --git a/meta-inspur/meta-fp5280g2/conf/templates/default/local.conf.sample b/meta-inspur/meta-fp5280g2/conf/templates/default/local.conf.sample new file mode 100644 index 0000000000..6558d8b911 --- /dev/null +++ b/meta-inspur/meta-fp5280g2/conf/templates/default/local.conf.sample @@ -0,0 +1,17 @@ +MACHINE ??= "fp5280g2" +DISTRO ?= "openbmc-fp5280g2" +PACKAGE_CLASSES ?= "package_ipk" +SANITY_TESTED_DISTROS:append ?= " *" +EXTRA_IMAGE_FEATURES ?= "debug-tweaks" +USER_CLASSES ?= "buildstats" +PATCHRESOLVE = "noop" +BB_DISKMON_DIRS ??= "\ + STOPTASKS,${TMPDIR},1G,100K \ + STOPTASKS,${DL_DIR},1G,100K \ + STOPTASKS,${SSTATE_DIR},1G,100K \ + STOPTASKS,/tmp,100M,100K \ + HALT,${TMPDIR},100M,1K \ + HALT,${DL_DIR},100M,1K \ + HALT,${SSTATE_DIR},100M,1K \ + HALT,/tmp,10M,1K" +CONF_VERSION = "2" -- cgit v1.2.3