summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChen Qi <Qi.Chen@windriver.com>2018-03-05 10:03:28 +0800
committerCalifornia Sullivan <california.l.sullivan@intel.com>2018-03-20 09:06:21 -0700
commit90d32d53cf2d0d7b0edc5e8eab734f620fb8c3ec (patch)
tree86fd7eb4affac498b5e6b9eae71c2b319b4d1855
parent11c2d33606669ab77467c040b5f45a6e3e188dd8 (diff)
downloadmeta-intel-90d32d53cf2d0d7b0edc5e8eab734f620fb8c3ec.tar.gz
systemd-boot: fix bbappend file to suit latest version
Fix the bbappend file to suit the latest systemd version. As systemd has now dropped autotools support, using ninja instead of make in do_compile. Signed-off-by: Chen Qi <Qi.Chen@windriver.com> Signed-off-by: California Sullivan <california.l.sullivan@intel.com>
-rw-r--r--recipes-bsp/systemd-boot/systemd-boot_%.bbappend4
1 files changed, 2 insertions, 2 deletions
diff --git a/recipes-bsp/systemd-boot/systemd-boot_%.bbappend b/recipes-bsp/systemd-boot/systemd-boot_%.bbappend
index 9e6cc161..46dd8a44 100644
--- a/recipes-bsp/systemd-boot/systemd-boot_%.bbappend
+++ b/recipes-bsp/systemd-boot/systemd-boot_%.bbappend
@@ -7,11 +7,11 @@ SRC_URI_append_intel-x86-common = " \
7PACKAGE_ARCH_intel-x86-common = "${INTEL_COMMON_PACKAGE_ARCH}" 7PACKAGE_ARCH_intel-x86-common = "${INTEL_COMMON_PACKAGE_ARCH}"
8 8
9do_compile_append_intel-x86-common() { 9do_compile_append_intel-x86-common() {
10 oe_runmake linux${SYSTEMD_BOOT_EFI_ARCH}.efi.stub 10 ninja src/boot/efi/linux${SYSTEMD_BOOT_EFI_ARCH}.efi.stub
11} 11}
12 12
13do_deploy_append_intel-x86-common() { 13do_deploy_append_intel-x86-common() {
14 install ${B}/linux*.efi.stub ${DEPLOYDIR} 14 install ${B}/src/boot/efi/linux*.efi.stub ${DEPLOYDIR}
15} 15}
16 16
17# includes rmc-boot.inc if rmc-boot is the EFI_PROVIDER 17# includes rmc-boot.inc if rmc-boot is the EFI_PROVIDER