yocto_os_template/sample-files/local.conf.sample
2022-02-10 11:39:18 +01:00

43 lines
953 B
Text

################
# BUILD SETTINGS
################
DISTRO = "mypios"
MACHINE = "raspberrypi3"
# This sets the default machine to be qemuarm if no other machine is selected:
MACHINE ??= "qemuarm"
# BUILDFILE_DIR = "/buildfiles"
BUILDFILE_DIR ??= "${TOPDIR}"
DL_DIR = "${BUILDFILE_DIR}/downloads"
SSTATE_DIR = "${BUILDFILE_DIR}/sstate-cache"
TMPDIR = "${BUILDFILE_DIR}/tmp"
###############
# DEVICE CONFIG
###############
# OPKG package source for development
DEVELOPMENT_HOST = "http://thetabook.local"
DEFAULT_TIMEZONE = "Europe/Berlin"
ROOT_PASSWORD = "mypios"
###################
# BITBAKE INTERNALS
###################
USER_CLASSES = "buildstats buildstats-summary image-mklibs image-prelink"
PATCHRESOLVE = "noop"
# Don't generate the mirror tarball for SCM repos, the snapshot is enough
BB_GENERATE_MIRROR_TARBALLS = "0"
INHERIT += "rm_work"
# CONF_VERSION is increased each time build/conf/ changes incompatibly
CONF_VERSION = "1"