mirror of
git://git.yoctoproject.org/meta-intel.git
synced 2025-07-19 21:09:03 +02:00
ia32-base.inc: Use a weak default assignment for kernel provider and version
Using the default assignment operator (?=) requires the including recipes to ensure to assign the Linux kernel provider and version prior to including ia32-base.inc. By use the weak default assignment operator (??=), the assignment can come after the inclusion, which avoids confusion and can lead to a more natural recipe structure. Signed-off-by: Darren Hart <dvhart@linux.intel.com> Acked-by: Tom Zanussi <tom.zanussi@intel.com>
This commit is contained in:
parent
99c85accb8
commit
0a73be8fb1
|
@ -26,8 +26,8 @@ GLIBC_EXTRA_OECONF += "--with-tls"
|
|||
#
|
||||
# kernel-related variables
|
||||
#
|
||||
PREFERRED_PROVIDER_virtual/kernel ?= "linux-yocto"
|
||||
PREFERRED_VERSION_linux-yocto ?= "3.0%"
|
||||
PREFERRED_PROVIDER_virtual/kernel ??= "linux-yocto"
|
||||
PREFERRED_VERSION_linux-yocto ??= "3.0%"
|
||||
|
||||
#
|
||||
# XSERVER subcomponents, used to build the XSERVER variable
|
||||
|
|
Loading…
Reference in New Issue
Block a user