diff options
Diffstat (limited to 'meta/conf')
-rw-r--r-- | meta/conf/bitbake.conf | 4 | ||||
-rw-r--r-- | meta/conf/distro/include/default-distrovars.inc | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf index d7b7a4b46f..ea313adca5 100644 --- a/meta/conf/bitbake.conf +++ b/meta/conf/bitbake.conf | |||
@@ -656,6 +656,10 @@ AUTO_LIBNAME_PKGS = "${PACKAGES}" | |||
656 | ### Config file processing | 656 | ### Config file processing |
657 | ### | 657 | ### |
658 | 658 | ||
659 | # An empty distro leads to :: entries in OVERRIDES and FILEOVERRIDES which | ||
660 | # is a bad idea. Setting a dummy value is better than a ton of anonymous python. | ||
661 | DISTRO ??= "nodistro" | ||
662 | |||
659 | # Overrides are processed left to right, so the ones that are named later take precedence. | 663 | # Overrides are processed left to right, so the ones that are named later take precedence. |
660 | # You generally want them to go from least to most specific. | 664 | # You generally want them to go from least to most specific. |
661 | # | 665 | # |
diff --git a/meta/conf/distro/include/default-distrovars.inc b/meta/conf/distro/include/default-distrovars.inc index d275525000..5ef9c32c39 100644 --- a/meta/conf/distro/include/default-distrovars.inc +++ b/meta/conf/distro/include/default-distrovars.inc | |||
@@ -43,8 +43,8 @@ NO32LIBS ??= "1" | |||
43 | 43 | ||
44 | # Default to emitting logfiles if a build fails. | 44 | # Default to emitting logfiles if a build fails. |
45 | BBINCLUDELOGS ??= "yes" | 45 | BBINCLUDELOGS ??= "yes" |
46 | SDK_VERSION ??= "oe-core.0" | 46 | SDK_VERSION ??= "nodistro.0" |
47 | DISTRO_VERSION ??= "oe-core.0" | 47 | DISTRO_VERSION ??= "nodistro.0" |
48 | 48 | ||
49 | # Missing checksums should raise an error | 49 | # Missing checksums should raise an error |
50 | BB_STRICT_CHECKSUM = "1" | 50 | BB_STRICT_CHECKSUM = "1" |