summaryrefslogtreecommitdiffstats
path: root/meta-yocto-bsp
diff options
context:
space:
mode:
authorChee Yang Lee <chee.yang.lee@intel.com>2019-12-03 13:35:58 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-12-15 09:08:43 +0000
commit3925515d989993146a72214db6796dde4b18ecd7 (patch)
tree860f93c1e1ac5ef8ace20cce54f695352ea0f1df /meta-yocto-bsp
parent766dfbdfb8fe727013cc66032475462b326691e8 (diff)
downloadpoky-3925515d989993146a72214db6796dde4b18ecd7.tar.gz
genericx86: wic wks do not hardcode loader
replace .wks with .wks.in and refer loader to EFI_PROVIDER to enable different bootloader. soft assign default EFI_PROVIDER "grub-efi" for genericx86. (From meta-yocto rev: 11ecd2febed95e923c8cc68e2c438cd846a88d02) Signed-off-by: Chee Yang Lee <chee.yang.lee@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta-yocto-bsp')
-rw-r--r--meta-yocto-bsp/conf/machine/include/genericx86-common.inc3
-rw-r--r--meta-yocto-bsp/wic/genericx86.wks.in (renamed from meta-yocto-bsp/wic/genericx86.wks)2
2 files changed, 3 insertions, 2 deletions
diff --git a/meta-yocto-bsp/conf/machine/include/genericx86-common.inc b/meta-yocto-bsp/conf/machine/include/genericx86-common.inc
index f83ce5c594..a6c396c79e 100644
--- a/meta-yocto-bsp/conf/machine/include/genericx86-common.inc
+++ b/meta-yocto-bsp/conf/machine/include/genericx86-common.inc
@@ -20,6 +20,7 @@ GLIBC_ADDONS = "nptl"
20EXTRA_OECONF_append_pn-matchbox-panel-2 = " --with-battery=acpi" 20EXTRA_OECONF_append_pn-matchbox-panel-2 = " --with-battery=acpi"
21 21
22IMAGE_FSTYPES += "wic wic.bmap" 22IMAGE_FSTYPES += "wic wic.bmap"
23WKS_FILE ?= "genericx86.wks" 23WKS_FILE ?= "genericx86.wks.in"
24EFI_PROVIDER ??= "grub-efi"
24do_image_wic[depends] += "gptfdisk-native:do_populate_sysroot" 25do_image_wic[depends] += "gptfdisk-native:do_populate_sysroot"
25do_image_wic[recrdeptask] += "do_bootimg" 26do_image_wic[recrdeptask] += "do_bootimg"
diff --git a/meta-yocto-bsp/wic/genericx86.wks b/meta-yocto-bsp/wic/genericx86.wks.in
index dab719c584..7c09ad00a1 100644
--- a/meta-yocto-bsp/wic/genericx86.wks
+++ b/meta-yocto-bsp/wic/genericx86.wks.in
@@ -1,6 +1,6 @@
1# short-description: Create an EFI disk image for genericx86* 1# short-description: Create an EFI disk image for genericx86*
2# long-description: Creates a partitioned EFI disk image for genericx86* machines 2# long-description: Creates a partitioned EFI disk image for genericx86* machines
3part /boot --source bootimg-efi --sourceparams="loader=grub-efi" --ondisk sda --label msdos --active --align 1024 3part /boot --source bootimg-efi --sourceparams="loader=${EFI_PROVIDER}" --ondisk sda --label msdos --active --align 1024
4part / --source rootfs --ondisk sda --fstype=ext4 --label platform --align 1024 --use-uuid 4part / --source rootfs --ondisk sda --fstype=ext4 --label platform --align 1024 --use-uuid
5part swap --ondisk sda --size 44 --label swap1 --fstype=swap 5part swap --ondisk sda --size 44 --label swap1 --fstype=swap
6 6