Skip to content

Commit

Permalink
move config from local.conf to distro yoe.conf
Browse files Browse the repository at this point in the history
  • Loading branch information
cbrake committed Oct 16, 2018
1 parent c46a694 commit d31cffb
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 39 deletions.
42 changes: 3 additions & 39 deletions conf/local.conf
Original file line number Diff line number Diff line change
Expand Up @@ -3,39 +3,13 @@
# template -- see locallocal.conf.sample
include locallocal.conf

# CONF_VERSION is increased each time build/conf/ changes incompatibly
CONF_VERSION = "1"

# Modify the following if you need to change the types of images generated
# most of the time, this is set by the machine conf or in a custom image
# recipe.
IMAGE_FSTYPES_append = " tar.gz wic.xz"

# Make use of SMP:
# PARALLEL_MAKE specifies how many concurrent compiler threads are spawned per bitbake process
# BB_NUMBER_THREADS specifies how many concurrent bitbake tasks will be run

PREFERRED_PROVIDER_virtual/libgl ??= "mesa"
PREFERRED_PROVIDER_virtual/psplash ??= "psplash"
PREFERRED_PROVIDER_psplash-support ??= "psplash"
PREFERRED_PROVIDER_jpeg ??= "libjpeg-turbo"
PREFERRED_PROVIDER_jpeg-native ??= "libjpeg-turbo-native"
PREFERRED_PROVIDER_grub-efi-native ??= "grub-efi-native"
PREFERRED_PROVIDER_u-boot-fw-utils ??= "u-boot-fw-utils"


# Don't generate the mirror tarball for SCM repos, the snapshot is enough
BB_GENERATE_MIRROR_TARBALLS = "0"

# By default disable interactive patch resolution (tasks will just fail instead):
PATCHRESOLVE = "noop"

DISTRO = "yoe"

# the following is required because some BSP layers (fsl) don't set this, and then
# other BSP layers fail bitbake parsing (ti).
MACHINE_KERNEL_PR = "0"

# Dont package kernel into image
RDEPENDS_${KERNEL_PACKAGE_NAME}-base = ""

Expand All @@ -47,16 +21,6 @@ PACKAGE_FEED_URIS ??= "http://<FEEDSERVER>"
# Enable serial console on Raspberry PI systems
ENABLE_UART = "1"

# Uncomment the following to enable systemd
#DISTRO_FEATURES_append = " systemd"
#VIRTUAL-RUNTIME_init_manager = "systemd"
#DISTRO_FEATURES_BACKFILL_CONSIDERED = "sysvinit"
#VIRTUAL-RUNTIME_initscripts = ""

# Uncomment the following to enable busybox init/dev/login
#VIRTUAL-RUNTIME_init_manager = "busybox"
#VIRTUAL-RUNTIME_dev_manager = "busybox-mdev"
#VIRTUAL-RUNTIME_login_manager = "busybox"

# Uncomment the following to enable musl libc
#TCLIBC = "musl"
#####################################################################
# add project specific configuration below this line
#####################################################################
13 changes: 13 additions & 0 deletions conf/local.conf.sample
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Uncomment the following to enable systemd
#DISTRO_FEATURES_append = " systemd"
#VIRTUAL-RUNTIME_init_manager = "systemd"
#DISTRO_FEATURES_BACKFILL_CONSIDERED = "sysvinit"
#VIRTUAL-RUNTIME_initscripts = ""

# Uncomment the following to enable busybox init/dev/login
#VIRTUAL-RUNTIME_init_manager = "busybox"
#VIRTUAL-RUNTIME_dev_manager = "busybox-mdev"
#VIRTUAL-RUNTIME_login_manager = "busybox"

# Uncomment the following to enable musl libc
#TCLIBC = "musl"

0 comments on commit d31cffb

Please sign in to comment.