mirror of
git://git.yoctoproject.org/meta-intel.git
synced 2025-07-19 21:09:03 +02:00
core-image-tiny-initramfs: Fixes WKS_FILE for Intel MACHINES
Since there could be a case on which meta-intel is parsed but no Intel MACHINE is selected which would turn out in an error where no value is assigned to WKS_FILE. We set WKS_FILE directly and specifically for any of the available Intel MACHINES, and otherwise we leave it as it is. Signed-off-by: Alejandro Hernandez <alejandro.hernandez@linux.intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com>
This commit is contained in:
parent
e88f7e629d
commit
d5a6d49a89
|
@ -1,10 +1,11 @@
|
||||||
# Set WKS file depending on the MACHINE picked by the user
|
# Set WKS file depending on the MACHINE picked by the user applies
|
||||||
def wks_intel(d):
|
# only when using an Intel MACHINE, otherwise leaves it as it is.
|
||||||
|
|
||||||
|
python (){
|
||||||
if d.getVar('MACHINE', True) == "intel-core2-32":
|
if d.getVar('MACHINE', True) == "intel-core2-32":
|
||||||
d.setVar('WKS_FILE', "systemd-bootdisk-tiny32.wks")
|
d.setVar('WKS_FILE', "systemd-bootdisk-tiny32.wks")
|
||||||
elif d.getVar('MACHINE', True) == "intel-corei7-64":
|
elif d.getVar('MACHINE', True) == "intel-corei7-64":
|
||||||
d.setVar('WKS_FILE', "systemd-bootdisk-tiny64.wks")
|
d.setVar('WKS_FILE', "systemd-bootdisk-tiny64.wks")
|
||||||
elif d.getVar('MACHINE', True) == "intel-quark":
|
elif d.getVar('MACHINE', True) == "intel-quark":
|
||||||
d.setVar('WKS_FILE', "mktinygalileodisk.wks")
|
d.setVar('WKS_FILE', "mktinygalileodisk.wks")
|
||||||
|
}
|
||||||
WKS_FILE_poky-tiny ?= "${@wks_intel(d)}"
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user